public static enum Trivia.TriviaKind extends java.lang.Enum<Trivia.TriviaKind>
Enum Constant and Description |
---|
COMMENT |
PREPROCESSOR |
SKIPPED_TEXT |
Modifier and Type | Method and Description |
---|---|
static Trivia.TriviaKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Trivia.TriviaKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Trivia.TriviaKind COMMENT
public static final Trivia.TriviaKind PREPROCESSOR
public static final Trivia.TriviaKind SKIPPED_TEXT
public static Trivia.TriviaKind[] values()
for (Trivia.TriviaKind c : Trivia.TriviaKind.values()) System.out.println(c);
public static Trivia.TriviaKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 2012 SonarSource. All Rights Reserved.