Enum Constant and Description |
---|
BIG_INTEGER
Java BigInteger type
|
BIT_BUFFER
Java zserio.runtime.io.BitBuffer type
|
BITMASK
Java object generated from zserio bitmask type
|
BOOLEAN
Java boolean type
|
BYTE
Java byte type
|
BYTES
Java bytes type (mapped to byte[])
|
CHOICE
Java object generated from zserio choice type
|
DOUBLE
Java double type
|
ENUM
Java enumeration generated from zserio enumeration type
|
FLOAT
Java float type
|
INT
Java int type
|
LONG
Java long type
|
PUBSUB
Java object generated from zserio pubsub type
|
SERVICE
Java object generated from zserio service type
|
SHORT
Java short type
|
SQL_DATABASE
Java object generated from zserio SQL database type
|
SQL_TABLE
Java object generated from zserio SQL table type
|
STRING
Java String type
|
STRUCT
Java object generated from zserio structure type
|
UNION
Java object generated from zserio union type
|
Modifier and Type | Method and Description |
---|---|
static JavaType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JavaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JavaType BOOLEAN
public static final JavaType BYTE
public static final JavaType SHORT
public static final JavaType INT
public static final JavaType LONG
public static final JavaType BIG_INTEGER
public static final JavaType FLOAT
public static final JavaType DOUBLE
public static final JavaType BYTES
public static final JavaType STRING
public static final JavaType BIT_BUFFER
public static final JavaType ENUM
public static final JavaType BITMASK
public static final JavaType STRUCT
public static final JavaType CHOICE
public static final JavaType UNION
public static final JavaType SQL_TABLE
public static final JavaType SQL_DATABASE
public static final JavaType SERVICE
public static final JavaType PUBSUB
public static JavaType[] values()
for (JavaType c : JavaType.values()) System.out.println(c);
public static JavaType 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 nullLast updated 2024-12-05 10:34:50