public enum TypeVendor extends java.lang.Enum<TypeVendor> implements EnumConverter<TypeVendor>
| Enum Constant and Description |
|---|
PROOFREAD_BY_VENDOR |
TRANSLATE_BY_VENDOR |
| Modifier and Type | Method and Description |
|---|---|
static TypeVendor |
from(java.lang.String value) |
java.lang.Integer |
to(TypeVendor v) |
static TypeVendor |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TypeVendor[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TypeVendor TRANSLATE_BY_VENDOR
public static final TypeVendor PROOFREAD_BY_VENDOR
public static TypeVendor[] values()
for (TypeVendor c : TypeVendor.values()) System.out.println(c);
public static TypeVendor valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static TypeVendor from(java.lang.String value)
public java.lang.Integer to(TypeVendor v)
to in interface EnumConverter<TypeVendor>