public enum AdministrativeStatus extends Enum<AdministrativeStatus>
| Modifier and Type | Method and Description |
|---|---|
static AdministrativeStatus |
forValue(int valueArg) |
int |
getIntValue() |
static AdministrativeStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AdministrativeStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AdministrativeStatus Active
public static final AdministrativeStatus Inactive
public static AdministrativeStatus[] values()
for (AdministrativeStatus c : AdministrativeStatus.values()) System.out.println(c);
public static AdministrativeStatus 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 int getIntValue()
public static AdministrativeStatus forValue(int valueArg)
valueArg - Copyright © 2014. All rights reserved.