public enum AttributeDataType extends Enum<AttributeDataType>
| Enum Constant and Description |
|---|
BINARY |
BOOLEAN |
COMPLEX |
DATE_TIME |
DECIMAL |
INTEGER |
REFERENCE |
STRING |
| Modifier and Type | Method and Description |
|---|---|
static AttributeDataType |
of(String type) |
String |
toString() |
static AttributeDataType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeDataType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeDataType STRING
public static final AttributeDataType BOOLEAN
public static final AttributeDataType DECIMAL
public static final AttributeDataType INTEGER
public static final AttributeDataType DATE_TIME
public static final AttributeDataType BINARY
public static final AttributeDataType REFERENCE
public static final AttributeDataType COMPLEX
public static AttributeDataType[] values()
for (AttributeDataType c : AttributeDataType.values()) System.out.println(c);
public static AttributeDataType 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 toString()
toString in class Enum<AttributeDataType>public static AttributeDataType of(String type)
Copyright © 2022 SAP SE. All rights reserved.