public static enum Marker.MarkerLevel extends Enum<Marker.MarkerLevel>
| Enum Constant and Description | 
|---|
Error
Indicates that related marker is an error marker. 
 | 
Info
Indicates that related marker is an information marker. 
 | 
Warning
Indicates that related marker is a warning marker. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static Marker.MarkerLevel | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static Marker.MarkerLevel[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final Marker.MarkerLevel Error
public static final Marker.MarkerLevel Info
public static final Marker.MarkerLevel Warning
public static Marker.MarkerLevel 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 nullpublic static Marker.MarkerLevel[] values()
for (Marker.MarkerLevel c : Marker.MarkerLevel.values()) System.out.println(c);