public enum CssNodeType extends Enum<CssNodeType>
| Enum Constant and Description |
|---|
ACCESSOR |
AT_RULE |
BLOCK |
COLOR |
COMBINATOR |
COMMENT |
CONTAINER |
CONTAINER_VALUE |
DECLARATION |
FUNCTION |
LESS_VARIABLE_DECLARATION |
LESS_VARIABLE_REFERENCE |
MULTI_VALUE |
NUMERIC |
OPERATOR |
RULE_SET |
SELECTOR |
STRING |
STYLESHEET |
VALUE |
| Modifier and Type | Method and Description |
|---|---|
static CssNodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CssNodeType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CssNodeType STYLESHEET
public static final CssNodeType CONTAINER
public static final CssNodeType AT_RULE
public static final CssNodeType BLOCK
public static final CssNodeType RULE_SET
public static final CssNodeType DECLARATION
public static final CssNodeType LESS_VARIABLE_DECLARATION
public static final CssNodeType SELECTOR
public static final CssNodeType VALUE
public static final CssNodeType COLOR
public static final CssNodeType COMBINATOR
public static final CssNodeType COMMENT
public static final CssNodeType CONTAINER_VALUE
public static final CssNodeType ACCESSOR
public static final CssNodeType FUNCTION
public static final CssNodeType MULTI_VALUE
public static final CssNodeType LESS_VARIABLE_REFERENCE
public static final CssNodeType NUMERIC
public static final CssNodeType OPERATOR
public static final CssNodeType STRING
public static CssNodeType[] values()
for (CssNodeType c : CssNodeType.values()) System.out.println(c);
public static CssNodeType 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 © 2014. All rights reserved.