public enum AttributeOperator extends java.lang.Enum<AttributeOperator>
Enum Constant and Description |
---|
CONTAINS |
EMPTY |
EQUALS |
NOT_CONTAINS |
NOT_EMPTY |
NOT_EQUALS |
Modifier and Type | Method and Description |
---|---|
static AttributeOperator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AttributeOperator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeOperator EQUALS
public static final AttributeOperator NOT_EQUALS
public static final AttributeOperator EMPTY
public static final AttributeOperator NOT_EMPTY
public static final AttributeOperator CONTAINS
public static final AttributeOperator NOT_CONTAINS
public static AttributeOperator[] values()
for (AttributeOperator c : AttributeOperator.values()) System.out.println(c);
public static AttributeOperator valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null