public enum Format extends Enum<Format>
| Enum Constant and Description |
|---|
BYTE |
DATE |
DATE_TIME |
DOUBLE |
FLOAT |
INT32 |
INT64 |
| Modifier and Type | Method and Description |
|---|---|
static Format |
forValue(String value) |
String |
toString() |
String |
toValue() |
static Format |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Format[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Format INT32
public static final Format INT64
public static final Format FLOAT
public static final Format DOUBLE
public static final Format BYTE
public static final Format DATE
public static final Format DATE_TIME
public static Format[] values()
for (Format c : Format.values()) System.out.println(c);
public static Format 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 String toValue()
Copyright © 2024. All rights reserved.