public static enum CssBase.CharacterState extends Enum<CssBase.CharacterState>
| Enum Constant and Description |
|---|
COMMENT
Meaning that the character of the css string is inside a comment.
|
DATA
Meaning that the character of the css string is not inside a comment or string.
|
NONE
Meaning that the character state is not known, thus this value represents an invalid state.
|
SLASH
Meaning that the character of the css string is a slash.
|
STRING
Meaning that the character of the css string is inside a string.
|
| Modifier and Type | Method and Description |
|---|---|
static CssBase.CharacterState
|
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CssBase.CharacterState[]
|
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CssBase.CharacterState NONE
public static final CssBase.CharacterState DATA
public static final CssBase.CharacterState SLASH
public static final CssBase.CharacterState COMMENT
public static final CssBase.CharacterState STRING
public static CssBase.CharacterState[] values()
for (CssBase.CharacterState c : CssBase.CharacterState.values()) System.out.println(c);
public static CssBase.CharacterState valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified name
NullPointerException
- if the argument is null
Copyright © 2015 Saxonia Systems AG. All rights reserved.