public static enum Selector.Combinator extends java.lang.Enum<Selector.Combinator>
| Enum Constant and Description |
|---|
ADJACENT_SIBLING |
CHILD |
DESCENDANT |
GENERAL_SIBLING |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
toString() |
static Selector.Combinator |
valueOf(java.lang.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 CHILD
public static final Selector.Combinator ADJACENT_SIBLING
public static final Selector.Combinator GENERAL_SIBLING
public static Selector.Combinator[] values()
for (Selector.Combinator c : Selector.Combinator.values()) System.out.println(c);
public static Selector.Combinator valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<Selector.Combinator>Copyright © 2005-2022 Potix Corporation. All Rights Reserved.