@Status(stage=DEVELOPMENT, unitTests=COMPLETE) @Review(by="Kees Schotanus", at="2009-09-28") public enum SingleParamFunction extends Enum<SingleParamFunction>
| Enum Constant and Description |
|---|
LIKE
Like.
|
LOWER
Not equal.
|
UPPER
Upper.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Creates a String representation of this SingleParamFunction.
|
static SingleParamFunction |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SingleParamFunction[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SingleParamFunction UPPER
public static final SingleParamFunction LOWER
public static final SingleParamFunction LIKE
public static SingleParamFunction[] values()
for (SingleParamFunction c : SingleParamFunction.values()) System.out.println(c);
public static SingleParamFunction 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 String toString()
toString in class Enum<SingleParamFunction>Copyright © 2008–2017. All rights reserved.