public static enum BinaryStringFunction.Strategy extends Enum<BinaryStringFunction.Strategy>
BinaryStringFunction.| Enum Constant and Description |
|---|
ALL_MATCHES
Returns all matches found in a string
|
FIRST_MATCH
Returns the first match found in a string
|
SPLIT
Splits a string into a string array based on a separating string or regular expression
|
| Modifier and Type | Method and Description |
|---|---|
static BinaryStringFunction.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryStringFunction.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryStringFunction.Strategy ALL_MATCHES
public static final BinaryStringFunction.Strategy FIRST_MATCH
public static final BinaryStringFunction.Strategy SPLIT
public static BinaryStringFunction.Strategy[] values()
for (BinaryStringFunction.Strategy c : BinaryStringFunction.Strategy.values()) System.out.println(c);
public static BinaryStringFunction.Strategy 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 © 2023. All rights reserved.