public enum IndicationEnum extends Enum<IndicationEnum>
| Enum Constant and Description |
|---|
ARBITRARY
Represents arbitrary.
|
STANDARD
Represents standard.
|
| Modifier and Type | Method and Description |
|---|---|
int |
indicationEnum()
Returns the attribute indicationEnum.
|
static IndicationEnum |
of(int value)
Returns the object of indicationEnum for.
|
static IndicationEnum |
of(String value)
Returns the object of indicationEnum for.
|
String |
toString() |
static IndicationEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IndicationEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IndicationEnum STANDARD
public static final IndicationEnum ARBITRARY
public static IndicationEnum[] values()
for (IndicationEnum c : IndicationEnum.values()) System.out.println(c);
public static IndicationEnum 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 static IndicationEnum of(int value)
value - value of indicationEnum forpublic static IndicationEnum of(String value)
value - value of indicationEnum forpublic int indicationEnum()
public String toString()
toString in class Enum<IndicationEnum>Copyright © 2017. All rights reserved.