public enum TTProductInfo extends Enum<TTProductInfo>
| Enum Constant and Description |
|---|
DATA_FORMATS |
DATA_VENDOR_NAME |
DELIVERY_TYPE |
FAMILY |
ITERATION_TYPE |
| Modifier and Type | Method and Description |
|---|---|
String |
getValue() |
static TTProductInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TTProductInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TTProductInfo DATA_VENDOR_NAME
public static final TTProductInfo DATA_FORMATS
public static final TTProductInfo FAMILY
public static final TTProductInfo ITERATION_TYPE
public static final TTProductInfo DELIVERY_TYPE
public static TTProductInfo[] values()
for (TTProductInfo c : TTProductInfo.values()) System.out.println(c);
public static TTProductInfo 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 getValue()