public static enum SelectorOperator.Operator extends Enum<SelectorOperator.Operator>
| Enum Constant and Description |
|---|
EQUALS |
INCLUDES |
NONE |
PREFIXMATCH |
SPECIAL_PREFIX |
SUBSTRINGMATCH |
SUFFIXMATCH |
| Modifier and Type | Method and Description |
|---|---|
String |
getSymbol() |
static SelectorOperator.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelectorOperator.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectorOperator.Operator NONE
public static final SelectorOperator.Operator EQUALS
public static final SelectorOperator.Operator INCLUDES
public static final SelectorOperator.Operator SPECIAL_PREFIX
public static final SelectorOperator.Operator PREFIXMATCH
public static final SelectorOperator.Operator SUFFIXMATCH
public static final SelectorOperator.Operator SUBSTRINGMATCH
public static SelectorOperator.Operator[] values()
for (SelectorOperator.Operator c : SelectorOperator.Operator.values()) System.out.println(c);
public static SelectorOperator.Operator 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 getSymbol()
Copyright © 2012-2014. All Rights Reserved.