public static enum BinaryBooleanFunction.Strategy extends Enum<BinaryBooleanFunction.Strategy>
| Enum Constant and Description |
|---|
STRING_ENDS_WITH
Returns true if the string in the 1st parameter ends with the string received in the
2nd parameter
|
STRING_MATCHES
Returns true if the string in the 1st parameter matches the regular expression received
in the 2nd parameter
|
STRING_STARTS_WITH
Returns true if the string in the 1st parameter starts with the string received in the
2nd parameter
|
| Modifier and Type | Method and Description |
|---|---|
static BinaryBooleanFunction.Strategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryBooleanFunction.Strategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryBooleanFunction.Strategy STRING_STARTS_WITH
public static final BinaryBooleanFunction.Strategy STRING_ENDS_WITH
public static final BinaryBooleanFunction.Strategy STRING_MATCHES
public static BinaryBooleanFunction.Strategy[] values()
for (BinaryBooleanFunction.Strategy c : BinaryBooleanFunction.Strategy.values()) System.out.println(c);
public static BinaryBooleanFunction.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 © 2020. All rights reserved.