public enum StringLikeOperation extends java.lang.Enum<StringLikeOperation> implements Operation
| Enum Constant and Description |
|---|
LIKE
String like operator.
|
| Modifier and Type | Method and Description |
|---|---|
abstract java.lang.Boolean |
execute(Namespace namespace,
java.lang.String operation,
java.lang.String str,
java.lang.String pattern) |
static StringLikeOperation |
valueOf(java.lang.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(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic abstract java.lang.Boolean execute(Namespace namespace, java.lang.String operation, java.lang.String str, java.lang.String pattern) throws ErrorException
ErrorExceptionCopyright © 2007-2020 Whitestein Technologies. All Rights Reserved.