public static enum ServiceModel.DataType extends Enum<ServiceModel.DataType>
| Enum Constant and Description |
|---|
DROP_DOWN_LIST |
NUMBER |
TEXT |
| Modifier and Type | Method and Description |
|---|---|
static ServiceModel.DataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ServiceModel.DataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ServiceModel.DataType TEXT
public static final ServiceModel.DataType NUMBER
public static final ServiceModel.DataType DROP_DOWN_LIST
public static ServiceModel.DataType[] values()
for (ServiceModel.DataType c : ServiceModel.DataType.values()) System.out.println(c);
public static ServiceModel.DataType 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 © 2022. All rights reserved.