Package com.day.cq.reporting
Enum FilteringPhase
- All Implemented Interfaces:
Serializable,Comparable<FilteringPhase>,java.lang.constant.Constable
This enumeration defines the phases of filtering,
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFiltering is applied on data that has already been pre-processed using the configuredProcessorsFiltering is applied on raw dataFiltering is applied on data that has been resolved using the configuredValueResolvers -
Method Summary
Modifier and TypeMethodDescriptionstatic FilteringPhasefromTransferString(String transferStr) Gets a suitableFilteringPhasefor the specified transfer representation.Gets the string representation used for data transfer.static FilteringPhaseReturns 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.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
RAW
Filtering is applied on raw data -
PREPROCESSED
Filtering is applied on data that has already been pre-processed using the configuredProcessors -
RESOLVED
Filtering is applied on data that has been resolved using the configuredValueResolvers
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getTransferStr
Gets the string representation used for data transfer.- Returns:
- The string representation used for data transfer
-
fromTransferString
Gets a suitableFilteringPhasefor the specified transfer representation.- Parameters:
transferStr- The transfer string- Returns:
- the matching
FilteringPhasefor the specified transfer representation
-