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