public enum HdfsFileSystemType extends Enum<HdfsFileSystemType>
Modifier and Type | Method and Description |
---|---|
abstract StringBuilder |
getHdfsPath(HdfsConfiguration conf) |
static HdfsFileSystemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HdfsFileSystemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HdfsFileSystemType LOCAL
public static final HdfsFileSystemType HDFS
public static HdfsFileSystemType[] values()
for (HdfsFileSystemType c : HdfsFileSystemType.values()) System.out.println(c);
public static HdfsFileSystemType 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 abstract StringBuilder getHdfsPath(HdfsConfiguration conf)
Apache Camel