public enum EmployeeTypeEnum extends Enum<EmployeeTypeEnum>
Java class for EmployeeTypeEnum.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="EmployeeTypeEnum"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Officer"/> <enumeration value="Owner"/> <enumeration value="Regular"/> <enumeration value="Statutory"/> </restriction> </simpleType>
Modifier and Type | Method and Description |
---|---|
static EmployeeTypeEnum |
fromValue(String v) |
String |
value() |
static EmployeeTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EmployeeTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EmployeeTypeEnum OFFICER
public static final EmployeeTypeEnum OWNER
public static final EmployeeTypeEnum REGULAR
public static final EmployeeTypeEnum STATUTORY
public static EmployeeTypeEnum[] values()
for (EmployeeTypeEnum c : EmployeeTypeEnum.values()) System.out.println(c);
public static EmployeeTypeEnum 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 String value()
public static EmployeeTypeEnum fromValue(String v)
Copyright © 2017. All rights reserved.