public enum BaseType extends Enum<BaseType>
| Enum Constant and Description |
|---|
Any |
Array |
Bool |
Bytes |
Enum |
Float32 |
Float64 |
Int16 |
Int32 |
Int64 |
Int8 |
Map |
String |
Struct |
Symbol |
Timestamp |
Union |
UUID |
| Modifier and Type | Method and Description |
|---|---|
static BaseType |
fromString(String v) |
static BaseType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BaseType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BaseType Bool
public static final BaseType Int8
public static final BaseType Int16
public static final BaseType Int32
public static final BaseType Int64
public static final BaseType Float32
public static final BaseType Float64
public static final BaseType Bytes
public static final BaseType String
public static final BaseType Timestamp
public static final BaseType Symbol
public static final BaseType UUID
public static final BaseType Array
public static final BaseType Map
public static final BaseType Struct
public static final BaseType Enum
public static final BaseType Union
public static final BaseType Any
public static BaseType[] values()
for (BaseType c : BaseType.values()) System.out.println(c);
public static BaseType 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 © 2016–2021 Verizon Media. All rights reserved.