public static enum ComponentUtils.Comparison extends Enum<ComponentUtils.Comparison>
Enum Constant and Description |
---|
GREATER_OR_EQUAL |
GREATER_THAN |
LESS_OR_EQUAL |
LESS_THAN |
Modifier and Type | Method and Description |
---|---|
static ComponentUtils.Comparison |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ComponentUtils.Comparison[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ComponentUtils.Comparison LESS_THAN
public static final ComponentUtils.Comparison LESS_OR_EQUAL
public static final ComponentUtils.Comparison GREATER_THAN
public static final ComponentUtils.Comparison GREATER_OR_EQUAL
public static ComponentUtils.Comparison[] values()
for (ComponentUtils.Comparison c : ComponentUtils.Comparison.values()) System.out.println(c);
public static ComponentUtils.Comparison 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 © 2004–2020 Ideaconsult Ltd.. All rights reserved.