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