public enum SchemaType extends java.lang.Enum<SchemaType>
Enum Constant and Description |
---|
BITMASK
Zserio bitmask type.
|
BOOL
Zserio bool type
|
BYTES
Zserio bytes type.
|
CHOICE
Zserio choice type.
|
DYNAMIC_SIGNED_BITFIELD
Zserio dynamic signed bitfield type.
|
DYNAMIC_UNSIGNED_BITFIELD
Zserio dynamic unsigned bitfield type.
|
ENUM
Zserio enumeration type.
|
EXTERN
Zserio extern type.
|
FIXED_SIGNED_BITFIELD
Zserio fixed signed bitfield type.
|
FIXED_UNSIGNED_BITFIELD
Zserio fixed unsigned bitfield type.
|
FLOAT16
Zserio float16 type.
|
FLOAT32
Zserio float32 type.
|
FLOAT64
Zserio float64 type.
|
INT16
Zserio int16 type.
|
INT32
Zserio int32 type.
|
INT64
Zserio int64 type.
|
INT8
Zserio int8 type.
|
PUBSUB
Zserio pubsub type.
|
SERVICE
Zserio service type.
|
SQL_DATABASE
Zserio SQL database type.
|
SQL_TABLE
Zserio SQL table type.
|
STRING
Zserio string type.
|
STRUCT
Zserio structure type.
|
UINT16
Zserio uint16 type.
|
UINT32
Zserio uint32 type.
|
UINT64
Zserio uint64 type.
|
UINT8
Zserio uint8 type.
|
UNION
Zserio union type.
|
VARINT
Zserio varint type.
|
VARINT16
Zserio varint16 type.
|
VARINT32
Zserio varint32 type.
|
VARINT64
Zserio varint64 type.
|
VARSIZE
Zserio varsize type.
|
VARUINT
Zserio varuint type.
|
VARUINT16
Zserio varuint16 type.
|
VARUINT32
Zserio varuint32 type.
|
VARUINT64
Zserio varuint64 type.
|
Modifier and Type | Method and Description |
---|---|
static SchemaType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SchemaType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SchemaType BOOL
public static final SchemaType INT8
public static final SchemaType INT16
public static final SchemaType INT32
public static final SchemaType INT64
public static final SchemaType UINT8
public static final SchemaType UINT16
public static final SchemaType UINT32
public static final SchemaType UINT64
public static final SchemaType VARINT16
public static final SchemaType VARINT32
public static final SchemaType VARINT64
public static final SchemaType VARINT
public static final SchemaType VARUINT16
public static final SchemaType VARUINT32
public static final SchemaType VARUINT64
public static final SchemaType VARUINT
public static final SchemaType VARSIZE
public static final SchemaType FIXED_SIGNED_BITFIELD
public static final SchemaType FIXED_UNSIGNED_BITFIELD
public static final SchemaType DYNAMIC_SIGNED_BITFIELD
public static final SchemaType DYNAMIC_UNSIGNED_BITFIELD
public static final SchemaType FLOAT16
public static final SchemaType FLOAT32
public static final SchemaType FLOAT64
public static final SchemaType BYTES
public static final SchemaType STRING
public static final SchemaType EXTERN
public static final SchemaType ENUM
public static final SchemaType BITMASK
public static final SchemaType STRUCT
public static final SchemaType CHOICE
public static final SchemaType UNION
public static final SchemaType SQL_TABLE
public static final SchemaType SQL_DATABASE
public static final SchemaType SERVICE
public static final SchemaType PUBSUB
public static SchemaType[] values()
for (SchemaType c : SchemaType.values()) System.out.println(c);
public static SchemaType 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