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