public enum StopCharTesters extends Enum<StopCharTesters> implements StopCharTester
Enum Constant and Description |
---|
ALL |
COMMA_STOP |
CONTROL_STOP |
FIX_TEXT |
SPACE_STOP |
XML_TEXT |
Modifier and Type | Method and Description |
---|---|
static StopCharTester |
forChars(CharSequence sequence) |
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
isStopChar
public static final StopCharTesters COMMA_STOP
public static final StopCharTesters CONTROL_STOP
public static final StopCharTesters SPACE_STOP
public static final StopCharTesters XML_TEXT
public static final StopCharTesters FIX_TEXT
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 null@NotNull public static StopCharTester forChars(@NotNull CharSequence sequence)
Copyright © 2019. All rights reserved.