public enum FilteringPhase extends Enum<FilteringPhase>
| Enum Constant and Description |
|---|
PREPROCESSED
Filtering is applied on data that has already been pre-processed using
the configured
Processors |
RAW
Filtering is applied on raw data
|
RESOLVED
Filtering is applied on data that has been resolved using the configured
ValueResolvers |
| Modifier and Type | Method and Description |
|---|---|
static FilteringPhase |
fromTransferString(String transferStr)
Gets a suitable
FilteringPhase for the specified transfer
representation. |
String |
getTransferStr()
Gets the string representation used for data transfer.
|
static FilteringPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilteringPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilteringPhase RAW
public static final FilteringPhase PREPROCESSED
Processorspublic static final FilteringPhase RESOLVED
ValueResolverspublic static FilteringPhase[] values()
for (FilteringPhase c : FilteringPhase.values()) System.out.println(c);
public static FilteringPhase valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getTransferStr()
public static FilteringPhase fromTransferString(String transferStr)
FilteringPhase for the specified transfer
representation.transferStr - The transfer stringFilteringPhase for the specified transfer
representationCopyright © 2010 - 2020 Adobe. All Rights Reserved