public enum ParameterDataType extends Enum<ParameterDataType>
| Enum Constant and Description |
|---|
BOOLEAN |
INTEGER |
LOCAL_DATE_TIME |
NUMBER |
STRING |
ZONED_DATE_TIME |
| Modifier and Type | Method and Description |
|---|---|
static ParameterDataType |
forName(String name) |
String |
getName() |
static ParameterDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterDataType STRING
public static final ParameterDataType INTEGER
public static final ParameterDataType NUMBER
public static final ParameterDataType BOOLEAN
public static final ParameterDataType LOCAL_DATE_TIME
public static final ParameterDataType ZONED_DATE_TIME
public static ParameterDataType[] values()
for (ParameterDataType c : ParameterDataType.values()) System.out.println(c);
public static ParameterDataType 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 getName()
public static ParameterDataType forName(String name)
Copyright © 2024. All rights reserved.