public enum StopCharTesters extends Enum<StopCharTesters> implements StopCharTester
Enum Constant and Description |
---|
ALL |
COMMA_SPACE_STOP |
COMMA_STOP |
CONTROL_STOP |
CURLY_STOP |
EQUALS |
NON_ALPHA_DIGIT |
NON_NUL |
NUMBER_END |
QUOTES |
SINGLE_QUOTES |
SPACE_STOP |
Modifier and Type | Method and Description |
---|---|
static StopCharTesters |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StopCharTesters[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
escaping, isStopChar
public static final StopCharTesters COMMA_STOP
public static final StopCharTesters CURLY_STOP
public static final StopCharTesters COMMA_SPACE_STOP
public static final StopCharTesters CONTROL_STOP
public static final StopCharTesters SPACE_STOP
public static final StopCharTesters QUOTES
public static final StopCharTesters SINGLE_QUOTES
public static final StopCharTesters EQUALS
public static final StopCharTesters NUMBER_END
public static final StopCharTesters NON_ALPHA_DIGIT
public static final StopCharTesters NON_NUL
public static final StopCharTesters ALL
public static StopCharTesters[] values()
for (StopCharTesters c : StopCharTesters.values()) System.out.println(c);
public static StopCharTesters 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 © 2021. All rights reserved.