|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<Combinator>
com.guiseframework.platform.web.css.Combinator
public enum Combinator
A combinator separating sequences of simple selectors.
| Enum Constant Summary | |
|---|---|
ADJACENT_SIBLING
|
|
CHILD
|
|
DESCENDANT
|
|
GENERAL_SIBLING
|
|
| Method Summary | |
|---|---|
java.lang.String |
toString()
Returns a string representation of this combinator. |
static Combinator |
valueOf(char combinatorChar)
Determines the combinator represented by the given character. |
static Combinator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Combinator[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final Combinator DESCENDANT
public static final Combinator CHILD
public static final Combinator ADJACENT_SIBLING
public static final Combinator GENERAL_SIBLING
| Method Detail |
|---|
public static Combinator[] values()
for (Combinator c : Combinator.values()) System.out.println(c);
public static 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 name
java.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<Combinator>public static Combinator valueOf(char combinatorChar)
DESCENDANT.
combinatorChar - The character representing a combinator.
java.lang.IllegalArgumentException - if the given character does not represent a combinator.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||