public enum OSSFileFormat extends Enum<OSSFileFormat>
| Enum Constant and Description |
|---|
Parquet
投递到OSS文件格式,目前仅支持Parquet
|
| Modifier and Type | Method and Description |
|---|---|
static OSSFileFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OSSFileFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OSSFileFormat Parquet
public static OSSFileFormat[] values()
for (OSSFileFormat c : OSSFileFormat.values()) System.out.println(c);
public static OSSFileFormat 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 © 2024. All Rights Reserved.