public enum GeolocationSeverity extends Enum<GeolocationSeverity>
| Enum Constant and Description | 
|---|
Critical  | 
Major  | 
Minor  | 
Normal  | 
Warning  | 
| Modifier and Type | Method and Description | 
|---|---|
int | 
getId()  | 
static GeolocationSeverity | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static GeolocationSeverity[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final GeolocationSeverity Normal
public static final GeolocationSeverity Warning
public static final GeolocationSeverity Minor
public static final GeolocationSeverity Major
public static final GeolocationSeverity Critical
public static GeolocationSeverity[] values()
for (GeolocationSeverity c : GeolocationSeverity.values()) System.out.println(c);
public static GeolocationSeverity 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 int getId()
Copyright © 2020. All rights reserved.