public enum FileSystemClientType extends Enum<FileSystemClientType>
Enum Constant and Description |
---|
ALLUXIO_HDFS
Alluxio Hadoop Compatible File System API.
|
ALLUXIO_NATIVE
Alluxio file system API.
|
Modifier and Type | Method and Description |
---|---|
static FileSystemClientType |
fromString(String text)
Creates an instance type from the string.
|
String |
toString() |
static FileSystemClientType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FileSystemClientType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FileSystemClientType ALLUXIO_NATIVE
public static final FileSystemClientType ALLUXIO_HDFS
public static FileSystemClientType[] values()
for (FileSystemClientType c : FileSystemClientType.values()) System.out.println(c);
public static FileSystemClientType 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<FileSystemClientType>
public static FileSystemClientType fromString(String text)
text
- the instance type in stringCopyright © 2023. All Rights Reserved.