public enum MinMaxTypeEnum extends Enum<MinMaxTypeEnum>
Modifier and Type | Class and Description |
---|---|
static interface |
MinMaxTypeEnum.Computer
Executes child expression nodes and compares results.
|
static class |
MinMaxTypeEnum.ComputerBigDecCoerce
Determines minimum/maximum using BigDecimal.compareTo.
|
static class |
MinMaxTypeEnum.ComputerBigIntCoerce
Determines minimum/maximum using BigInteger.compareTo.
|
static class |
MinMaxTypeEnum.MaxComputerDoubleCoerce
Determines maximum using Number.doubleValue().
|
static class |
MinMaxTypeEnum.MinComputerDoubleCoerce
Determines minimum using Number.doubleValue().
|
Modifier and Type | Method and Description |
---|---|
String |
getExpressionText()
Returns textual representation of enum.
|
static MinMaxTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MinMaxTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MinMaxTypeEnum MAX
public static final MinMaxTypeEnum MIN
public static MinMaxTypeEnum[] values()
for (MinMaxTypeEnum c : MinMaxTypeEnum.values()) System.out.println(c);
public static MinMaxTypeEnum 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 getExpressionText()