Enum Class TimelineFilterList.Operator
java.lang.Object
java.lang.Enum<TimelineFilterList.Operator>
org.apache.hadoop.yarn.server.timelineservice.reader.filter.TimelineFilterList.Operator
- All Implemented Interfaces:
Serializable,Comparable<TimelineFilterList.Operator>,Constable
- Enclosing class:
- TimelineFilterList
@Private
@Unstable
public static enum TimelineFilterList.Operator
extends Enum<TimelineFilterList.Operator>
Specifies how filters in the filter list will be evaluated. AND means all
the filters should match and OR means atleast one should match.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionstatic TimelineFilterList.OperatorReturns the enum constant of this class with the specified name.static TimelineFilterList.Operator[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
AND
-
OR
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-