public enum StopCharTesters extends Enum<StopCharTesters> implements StopCharTester
StopCharTester implementations that define common stop character criteria.| Enum Constant and Description |
|---|
ALL
Stop character tester which considers all negative characters as stop characters.
|
COMMA_SPACE_STOP
Stop character tester which considers comma and spaces as stop characters.
|
COMMA_STOP
Stop character tester which considers a comma (',') as a stop character.
|
CONTROL_STOP
Stop character tester which considers control characters (ASCII less than 32) as stop characters.
|
CURLY_STOP
Stop character tester which considers a closing curly brace ('}') as a stop character.
|
EQUALS
Stop character tester which considers equals sign ('=') and null character as stop characters.
|
NON_ALPHA_DIGIT
Stop character tester which considers any non-alphabetic and non-digit character as a stop character.
|
NON_NUL
Stop character tester which considers null or less as stop characters.
|
NUMBER_END
Stop character tester which considers any non-numeric character as a stop character.
|
QUOTES
Stop character tester which considers quotes ('"') and null character as stop characters.
|
SINGLE_QUOTES
Stop character tester which considers single quotes ('\'') and null character as stop characters.
|
SPACE_STOP
Stop character tester which considers spaces and null character as stop characters.
|
| 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, valueOfescaping, isStopCharpublic 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 © 2024. All rights reserved.