public static enum Type.BuiltinType.Values extends java.lang.Enum<Type.BuiltinType.Values>
enum
representing this enumeration class.
Ordinals have no semantic meaning (your code should not rely on them).
Enum Constant and Description |
---|
_UNKNOWN
Special
enum constant which is used to represent constants
that do not exist in this enumeration binding. |
ANY_ERROR
Represents
Type.BuiltinType.ANY_ERROR . |
BINARY
Represents
Type.BuiltinType.BINARY . |
BOOLEAN
Represents
Type.BuiltinType.BOOLEAN . |
DATE_TIME
Represents
Type.BuiltinType.DATE_TIME . |
DOUBLE
Represents
Type.BuiltinType.DOUBLE . |
DYNAMIC_STRUCTURE
Represents
Type.BuiltinType.DYNAMIC_STRUCTURE . |
ID
Represents
Type.BuiltinType.ID . |
LONG
Represents
Type.BuiltinType.LONG . |
OPAQUE
Represents
Type.BuiltinType.OPAQUE . |
SECRET
Represents
Type.BuiltinType.SECRET . |
STRING
Represents
Type.BuiltinType.STRING . |
URI
Represents
Type.BuiltinType.URI . |
VOID
Represents
Type.BuiltinType.VOID . |
Modifier and Type | Method and Description |
---|---|
static Type.BuiltinType.Values |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Type.BuiltinType.Values[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Type.BuiltinType.Values VOID
Type.BuiltinType.VOID
.public static final Type.BuiltinType.Values BOOLEAN
Type.BuiltinType.BOOLEAN
.public static final Type.BuiltinType.Values LONG
Type.BuiltinType.LONG
.public static final Type.BuiltinType.Values DOUBLE
Type.BuiltinType.DOUBLE
.public static final Type.BuiltinType.Values STRING
Type.BuiltinType.STRING
.public static final Type.BuiltinType.Values BINARY
Type.BuiltinType.BINARY
.public static final Type.BuiltinType.Values SECRET
Type.BuiltinType.SECRET
.public static final Type.BuiltinType.Values DATE_TIME
Type.BuiltinType.DATE_TIME
.public static final Type.BuiltinType.Values ID
Type.BuiltinType.ID
.public static final Type.BuiltinType.Values URI
Type.BuiltinType.URI
.public static final Type.BuiltinType.Values ANY_ERROR
Type.BuiltinType.ANY_ERROR
.public static final Type.BuiltinType.Values DYNAMIC_STRUCTURE
Type.BuiltinType.DYNAMIC_STRUCTURE
.public static final Type.BuiltinType.Values OPAQUE
Type.BuiltinType.OPAQUE
.public static final Type.BuiltinType.Values _UNKNOWN
enum
constant which is used to represent constants
that do not exist in this enumeration binding. For example if a
client receives an enumeration constant that only exists in the
newer version of the API of the server, the client source code will
see it represented by _UNKNOWN
constant, because its version
of the native Java enum
lacks the new constant.public static Type.BuiltinType.Values[] values()
for (Type.BuiltinType.Values c : Type.BuiltinType.Values.values()) System.out.println(c);
public static Type.BuiltinType.Values valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null