public static enum Selector.Operator extends Enum<Selector.Operator>
| Enum Constant and Description |
|---|
CONTAINS |
DASHMATCH |
ENDSWITH |
EQUALS |
INCLUDES |
NO_OPERATOR |
STARTSWITH |
| Modifier and Type | Method and Description |
|---|---|
String |
value() |
static Selector.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Selector.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Selector.Operator EQUALS
public static final Selector.Operator INCLUDES
public static final Selector.Operator DASHMATCH
public static final Selector.Operator CONTAINS
public static final Selector.Operator STARTSWITH
public static final Selector.Operator ENDSWITH
public static final Selector.Operator NO_OPERATOR
public static Selector.Operator[] values()
for (Selector.Operator c : Selector.Operator.values()) System.out.println(c);
public static Selector.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 value()
Copyright © 2014. All rights reserved.