public static enum IgnoredChar.IgnoredCharKind extends java.lang.Enum<IgnoredChar.IgnoredCharKind>
Modifier and Type | Method and Description |
---|---|
static IgnoredChar.IgnoredCharKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IgnoredChar.IgnoredCharKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IgnoredChar.IgnoredCharKind SPACE
public static final IgnoredChar.IgnoredCharKind COMMA
public static final IgnoredChar.IgnoredCharKind TAB
public static final IgnoredChar.IgnoredCharKind CR
public static final IgnoredChar.IgnoredCharKind LF
public static final IgnoredChar.IgnoredCharKind OTHER
public static IgnoredChar.IgnoredCharKind[] values()
for (IgnoredChar.IgnoredCharKind c : IgnoredChar.IgnoredCharKind.values()) System.out.println(c);
public static IgnoredChar.IgnoredCharKind 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