public static enum DataProperty.Type extends Enum<DataProperty.Type>
Enum Constant and Description |
---|
BOOLEAN
A Boolean value.
|
DATE
A date value.
|
ENUM
An enumeration of ordinal values.
|
LONG
A long numeric.
|
STRING
A string value.
|
Modifier and Type | Method and Description |
---|---|
static DataProperty.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataProperty.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataProperty.Type LONG
public static final DataProperty.Type STRING
public static final DataProperty.Type DATE
public static final DataProperty.Type BOOLEAN
public static final DataProperty.Type ENUM
public static DataProperty.Type[] values()
for (DataProperty.Type c : DataProperty.Type.values()) System.out.println(c);
public static DataProperty.Type 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 null<i>Copyright (c) 2022, SAS Institute Inc., Cary, NC, USA</i>