public enum ComputedType extends Enum<ComputedType>
Enum Constant and Description |
---|
ALL
Deprecated.
|
EQUAL
Deprecated.
|
NULL
Deprecated.
|
PERCENT
Deprecated.
|
Modifier and Type | Method and Description |
---|---|
Object |
compute(Object val,
Condition c)
Deprecated.
|
String |
match(String val)
Deprecated.
|
static ComputedType |
valueOf(String name)
Deprecated.
Returns the enum constant of this type with the specified name.
|
static ComputedType[] |
values()
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
|
String |
wrap(String value)
Deprecated.
|
public static final ComputedType NULL
public static final ComputedType EQUAL
public static final ComputedType ALL
public static final ComputedType PERCENT
public static ComputedType[] values()
for (ComputedType c : ComputedType.values()) System.out.println(c);
public static ComputedType 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 © 2000-2021 Apache Software Foundation. All Rights Reserved.