public enum FileSystemClientType extends java.lang.Enum<FileSystemClientType>
| Enum Constant and Description |
|---|
ALLUXIO_HDFS
Alluxio Hadoop Compatible File System API.
|
ALLUXIO_NATIVE
Alluxio file system API.
|
ALLUXIO_POSIX
Alluxio POSIX API.
|
| Modifier and Type | Method and Description |
|---|---|
static FileSystemClientType |
fromString(java.lang.String text)
Creates an instance type from the string.
|
java.lang.String |
toString() |
static FileSystemClientType |
valueOf(java.lang.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 final FileSystemClientType ALLUXIO_POSIX
public static FileSystemClientType[] values()
for (FileSystemClientType c : FileSystemClientType.values()) System.out.println(c);
public static FileSystemClientType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String toString()
toString in class java.lang.Enum<FileSystemClientType>public static FileSystemClientType fromString(java.lang.String text)
text - the instance type in stringCopyright © 2023. All Rights Reserved.