public static enum DataFormat.Type extends Enum<DataFormat.Type>
| Modifier and Type | Method and Description |
|---|---|
static Optional<DataFormat.Type> |
byTypeName(String type) |
String |
toString() |
static DataFormat.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataFormat.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataFormat.Type ARROW
public static final DataFormat.Type RECORD
public static final DataFormat.Type UNKNOWN
public static DataFormat.Type[] values()
for (DataFormat.Type c : DataFormat.Type.values()) System.out.println(c);
public static DataFormat.Type 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 toString()
toString in class Enum<DataFormat.Type>public static Optional<DataFormat.Type> byTypeName(String type)
Copyright © 2024 Alibaba Cloud Computing. All rights reserved.