Enum EventFilterOperator
- java.lang.Object
-
- java.lang.Enum<EventFilterOperator>
-
- com.xebialabs.xlrelease.triggers.event_based.EventFilterOperator
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EventFilterOperator>
public enum EventFilterOperator extends java.lang.Enum<EventFilterOperator>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTERBEFORECONTAINS_ALLCONTAINS_ANYEQUALSGREATER_THANINCLUDESIS_DEFINEDLESS_THANNOT_CONTAINS_ALLNOT_CONTAINS_ANYNOT_EQUALSNOT_INCLUDES
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EventFilterOperatorvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EventFilterOperator[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INCLUDES
public static final EventFilterOperator INCLUDES
-
NOT_INCLUDES
public static final EventFilterOperator NOT_INCLUDES
-
EQUALS
public static final EventFilterOperator EQUALS
-
NOT_EQUALS
public static final EventFilterOperator NOT_EQUALS
-
CONTAINS_ANY
public static final EventFilterOperator CONTAINS_ANY
-
CONTAINS_ALL
public static final EventFilterOperator CONTAINS_ALL
-
NOT_CONTAINS_ANY
public static final EventFilterOperator NOT_CONTAINS_ANY
-
NOT_CONTAINS_ALL
public static final EventFilterOperator NOT_CONTAINS_ALL
-
LESS_THAN
public static final EventFilterOperator LESS_THAN
-
GREATER_THAN
public static final EventFilterOperator GREATER_THAN
-
BEFORE
public static final EventFilterOperator BEFORE
-
AFTER
public static final EventFilterOperator AFTER
-
IS_DEFINED
public static final EventFilterOperator IS_DEFINED
-
-
Method Detail
-
values
public static EventFilterOperator[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EventFilterOperator c : EventFilterOperator.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EventFilterOperator valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-