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