public static enum SkipCommentReader.State extends Enum<SkipCommentReader.State>
| Enum Constant and Description |
|---|
ENCOUNTING_ASTERIK |
ENCOUNTING_COMMENT_BLOCK_CLOSING_TAG |
ENCOUNTING_COMMENT_BLOCK_OPENING_TAG |
ENCOUNTING_FORWARD_SLASH |
ENCOUNTING_ORDINARY_CHARACTER |
| Modifier and Type | Method and Description |
|---|---|
static SkipCommentReader.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SkipCommentReader.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SkipCommentReader.State ENCOUNTING_FORWARD_SLASH
public static final SkipCommentReader.State ENCOUNTING_ASTERIK
public static final SkipCommentReader.State ENCOUNTING_COMMENT_BLOCK_OPENING_TAG
public static final SkipCommentReader.State ENCOUNTING_COMMENT_BLOCK_CLOSING_TAG
public static final SkipCommentReader.State ENCOUNTING_ORDINARY_CHARACTER
public static SkipCommentReader.State[] values()
for (SkipCommentReader.State c : SkipCommentReader.State.values()) System.out.println(c);
public static SkipCommentReader.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 © 2016 JBoss by Red Hat. All Rights Reserved.