public static enum Token.CommentType extends Enum<Token.CommentType>
| Enum Constant and Description |
|---|
BLOCK_COMMENT |
HTML |
JSDOC |
LINE |
| Modifier and Type | Method and Description |
|---|---|
static Token.CommentType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Token.CommentType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Token.CommentType LINE
public static final Token.CommentType BLOCK_COMMENT
public static final Token.CommentType JSDOC
public static final Token.CommentType HTML
public static Token.CommentType[] values()
for (Token.CommentType c : Token.CommentType.values()) System.out.println(c);
public static Token.CommentType 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 © 2010 - 2020 Adobe. All Rights Reserved