public enum FileQueryArrowFieldType extends Enum<FileQueryArrowFieldType>
| Enum Constant and Description |
|---|
BOOL
Enum value bool.
|
DECIMAL
Enum value decimal.
|
DOUBLE
Enum value double.
|
INT64
Enum value int64.
|
STRING
Enum value string.
|
TIMESTAMP
Enum value timestamp[ms].
|
| Modifier and Type | Method and Description |
|---|---|
static FileQueryArrowFieldType |
fromString(String value)
Parses a serialized value to a FileQueryArrowFieldType instance.
|
String |
toString() |
static FileQueryArrowFieldType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileQueryArrowFieldType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileQueryArrowFieldType INT64
public static final FileQueryArrowFieldType BOOL
public static final FileQueryArrowFieldType TIMESTAMP
public static final FileQueryArrowFieldType STRING
public static final FileQueryArrowFieldType DOUBLE
public static final FileQueryArrowFieldType DECIMAL
public static FileQueryArrowFieldType[] values()
public static FileQueryArrowFieldType 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 nullpublic static FileQueryArrowFieldType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<FileQueryArrowFieldType>Visit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.