public static enum CSSScanner.State extends Enum<CSSScanner.State>
Enum Constant and Description |
---|
block |
initial |
media |
media_after_name |
media_before_name |
Modifier and Type | Method and Description |
---|---|
static CSSScanner.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CSSScanner.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CSSScanner.State initial
public static final CSSScanner.State media
public static final CSSScanner.State media_before_name
public static final CSSScanner.State media_after_name
public static final CSSScanner.State block
public static CSSScanner.State[] values()
for (CSSScanner.State c : CSSScanner.State.values()) System.out.println(c);
public static CSSScanner.State 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 JBoss by Red Hat. All rights reserved.