public static enum Trivia.TriviaKind extends Enum<Trivia.TriviaKind>
| Enum Constant and Description |
|---|
COMMENT |
PREPROCESSOR |
SKIPPED_TEXT |
| Modifier and Type | Method and Description |
|---|---|
static Trivia.TriviaKind |
valueOf(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(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 © 2009–2018 SonarSource. All rights reserved.