public enum StringLikeOperation extends Enum<StringLikeOperation> implements Operation
Enum Constant and Description |
---|
LIKE
String like operator.
|
Modifier and Type | Method and Description |
---|---|
abstract Boolean |
execute(Namespace namespace,
String operation,
String str,
String pattern) |
static StringLikeOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringLikeOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringLikeOperation LIKE
public static StringLikeOperation[] values()
for (StringLikeOperation c : StringLikeOperation.values()) System.out.println(c);
public static StringLikeOperation 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 nullpublic abstract Boolean execute(Namespace namespace, String operation, String str, String pattern) throws ErrorException
ErrorException
Copyright © 2007-2020 Whitestein Technologies. All Rights Reserved.