public static enum SelectorCombinator.CombinatorType extends Enum<SelectorCombinator.CombinatorType>
| Enum Constant and Description |
|---|
ADJACENT_SIBLING |
CAT |
CHILD |
DESCENDANT |
GENERAL_SIBLING |
HAT |
NAMED |
| Modifier and Type | Method and Description |
|---|---|
static SelectorCombinator.CombinatorType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SelectorCombinator.CombinatorType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SelectorCombinator.CombinatorType ADJACENT_SIBLING
public static final SelectorCombinator.CombinatorType CHILD
public static final SelectorCombinator.CombinatorType DESCENDANT
public static final SelectorCombinator.CombinatorType GENERAL_SIBLING
public static final SelectorCombinator.CombinatorType HAT
public static final SelectorCombinator.CombinatorType CAT
public static final SelectorCombinator.CombinatorType NAMED
public static SelectorCombinator.CombinatorType[] values()
for (SelectorCombinator.CombinatorType c : SelectorCombinator.CombinatorType.values()) System.out.println(c);
public static SelectorCombinator.CombinatorType 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 nullCopyright © 2012-2015. All Rights Reserved.