Enum Constant Summary
Enum Constants
Method Summary
All Methods Static Methods Instance Methods Concrete Methods
static boolean
boolean
static boolean
Parse an unquoted comma separated list of index keys.
static boolean
Parse an unquoted comma separated list of index keys.
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Method Details
values
Returns an array containing the constants of this enum class, in
the order they are declared.
Returns:
an array containing the constants of this enum class, in the order they are declared
valueOf
Returns the enum constant of this class with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this class. (Extraneous whitespace characters are
not permitted.)
Parameters:
name
- the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException
- if this enum class has no constant with the specified name
NullPointerException
- if the argument is null
parseCsvIndex
Parse an unquoted comma separated list of index keys.
Parameters:
value
- A string list of index keys, separated with commas and possible white space
found
- The function to call for all found index entries. If the function returns false parsing is halted.
Returns:
true if parsing completed normally and all found index items returned true from the found function.
parseCsvIndex
Parse an unquoted comma separated list of index keys.
Parameters:
value
- A string list of index keys, separated with commas and possible white space
found
- The function to call for all found index entries. If the function returns false parsing is halted.
unknown
- The function to call for foound unknown entries. If the function returns false parsing is halted.
Returns:
true if parsing completed normally and all found index items returned true from the found function.