public enum APIPrimitiveType extends Enum<APIPrimitiveType>
| Enum Constant and Description |
|---|
BOOLEAN |
DATE |
DATE_ONLY |
DATE_TIME |
DATE_TIME_ONLY |
FILE |
INTEGER |
LONG |
NUMBER |
STRING |
TIME_ONLY |
| Modifier and Type | Method and Description |
|---|---|
static APIPrimitiveType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static APIPrimitiveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIPrimitiveType BOOLEAN
public static final APIPrimitiveType DATE
public static final APIPrimitiveType DATE_ONLY
public static final APIPrimitiveType DATE_TIME_ONLY
public static final APIPrimitiveType DATE_TIME
public static final APIPrimitiveType FILE
public static final APIPrimitiveType NUMBER
public static final APIPrimitiveType INTEGER
public static final APIPrimitiveType STRING
public static final APIPrimitiveType TIME_ONLY
public static final APIPrimitiveType LONG
public static APIPrimitiveType[] values()
for (APIPrimitiveType c : APIPrimitiveType.values()) System.out.println(c);
public static APIPrimitiveType 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 © 2023. All rights reserved.