public static enum Suggestion.Type extends Enum<Suggestion.Type>
Enum Constant and Description |
---|
improvement |
repair |
unresolved_violation |
violation |
Modifier and Type | Method and Description |
---|---|
static Suggestion.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Suggestion.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Suggestion.Type violation
public static final Suggestion.Type repair
public static final Suggestion.Type improvement
public static final Suggestion.Type unresolved_violation
public static Suggestion.Type[] values()
for (Suggestion.Type c : Suggestion.Type.values()) System.out.println(c);
public static Suggestion.Type 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 © 2000-2021 Apache Software Foundation. All Rights Reserved.