public enum FilterResult extends Enum<FilterResult>
Enum Constant and Description |
---|
FAILED
The line failed the filter, e.
|
FAILED_BUT_STORE
The line failed the filter, e.
|
PASSED
The line passed the filter.
|
Modifier and Type | Method and Description |
---|---|
static FilterResult |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FilterResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterResult PASSED
public static final FilterResult FAILED
public static final FilterResult FAILED_BUT_STORE
public static FilterResult[] values()
for (FilterResult c : FilterResult.values()) System.out.println(c);
public static FilterResult 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 © 2014. All rights reserved.