public static enum UnderFileSystem.UnderFSType extends Enum<UnderFileSystem.UnderFSType>
UnderFileSystem.getUnderFSType() to determine which concrete
under filesystem implementation is being used. New types of under filesystem should be added
below and returned by the implementation of UnderFileSystem.getUnderFSType().| Modifier and Type | Method and Description |
|---|---|
static UnderFileSystem.UnderFSType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UnderFileSystem.UnderFSType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UnderFileSystem.UnderFSType LOCAL
public static final UnderFileSystem.UnderFSType HDFS
public static final UnderFileSystem.UnderFSType S3
public static final UnderFileSystem.UnderFSType GLUSTERFS
public static final UnderFileSystem.UnderFSType SWIFT
public static UnderFileSystem.UnderFSType[] values()
for (UnderFileSystem.UnderFSType c : UnderFileSystem.UnderFSType.values()) System.out.println(c);
public static UnderFileSystem.UnderFSType 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 © 2015. All Rights Reserved.