public static enum AlertSupport.Status extends Enum<AlertSupport.Status>
Enum Constant and Description |
---|
DROPPED_BELOW_MIN |
EXCEED_MAX |
WITHIN_BOUNDS |
Modifier and Type | Method and Description |
---|---|
static AlertSupport.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlertSupport.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertSupport.Status EXCEED_MAX
public static final AlertSupport.Status DROPPED_BELOW_MIN
public static final AlertSupport.Status WITHIN_BOUNDS
public static AlertSupport.Status[] values()
for (AlertSupport.Status c : AlertSupport.Status.values()) System.out.println(c);
public static AlertSupport.Status 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 © 2010–2016 AdroitLogic. All rights reserved.