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