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