public enum CssTokenType extends Enum<CssTokenType>
| Enum Constant and Description |
|---|
ACCESSOR
Accessor begin
|
AT_RULE
At-rule keyword
|
BLOCK_BEGIN
Block begin
|
BLOCK_END
Block end
|
COLOR
Color value
|
COMMENT
Comment block
|
END
End of file
|
ERROR
Error state
|
FUNCTION
Function begin
|
IMPORTANT
Priority flag
|
NUMERIC
Numeric value
|
OPERATOR
Operator
|
RULE_DELIM
Rule delimiter
|
STRING
String value
|
VALUE
General value
|
| Modifier and Type | Method and Description |
|---|---|
static CssTokenType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CssTokenType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CssTokenType AT_RULE
public static final CssTokenType BLOCK_BEGIN
public static final CssTokenType BLOCK_END
public static final CssTokenType RULE_DELIM
public static final CssTokenType FUNCTION
public static final CssTokenType ACCESSOR
public static final CssTokenType OPERATOR
public static final CssTokenType VALUE
public static final CssTokenType STRING
public static final CssTokenType NUMERIC
public static final CssTokenType COLOR
public static final CssTokenType IMPORTANT
public static final CssTokenType COMMENT
public static final CssTokenType ERROR
public static final CssTokenType END
public static CssTokenType[] values()
for (CssTokenType c : CssTokenType.values()) System.out.println(c);
public static CssTokenType 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.