public enum EmployeeAvailabilityState extends Enum<EmployeeAvailabilityState>
| Enum Constant and Description |
|---|
DESIRED |
UNAVAILABLE |
UNDESIRED |
| Modifier and Type | Method and Description |
|---|---|
static EmployeeAvailabilityState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmployeeAvailabilityState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmployeeAvailabilityState UNAVAILABLE
public static final EmployeeAvailabilityState UNDESIRED
public static final EmployeeAvailabilityState DESIRED
public static EmployeeAvailabilityState[] values()
for (EmployeeAvailabilityState c : EmployeeAvailabilityState.values()) System.out.println(c);
public static EmployeeAvailabilityState 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 © 2017–2019 JBoss by Red Hat. All rights reserved.