public static enum FilterOptions.Level extends Enum<FilterOptions.Level>
| Modifier and Type | Method and Description |
|---|---|
static FilterOptions.Level |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterOptions.Level[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterOptions.Level DEBUG
public static final FilterOptions.Level INFO
public static final FilterOptions.Level WARN
public static final FilterOptions.Level ERROR
public static FilterOptions.Level[] values()
for (FilterOptions.Level c : FilterOptions.Level.values()) System.out.println(c);
public static FilterOptions.Level 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 nullApache CXF