public enum ValueTypeEnum extends Enum<ValueTypeEnum>
| Enum Constant and Description |
|---|
Boolean |
Double |
Float |
Int |
Long |
String |
| Modifier and Type | Method and Description |
|---|---|
static ValueTypeEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ValueTypeEnum Int
public static final ValueTypeEnum Float
public static final ValueTypeEnum String
public static final ValueTypeEnum Boolean
public static final ValueTypeEnum Long
public static final ValueTypeEnum Double
public static ValueTypeEnum[] values()
for (ValueTypeEnum c : ValueTypeEnum.values()) System.out.println(c);
public static ValueTypeEnum 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 © 2017 camunda services GmbH. All rights reserved.