public enum StringSplitOptions extends java.lang.Enum<StringSplitOptions>
Enum Constant and Description |
---|
None
Normal
|
RemoveEmptyEntries
Empty entries are removed
|
Modifier and Type | Method and Description |
---|---|
static StringSplitOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StringSplitOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringSplitOptions None
public static final StringSplitOptions RemoveEmptyEntries
public static StringSplitOptions[] values()
for (StringSplitOptions c : StringSplitOptions.values()) System.out.println(c);
public static StringSplitOptions valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null