org.apache.hadoop.hdfs.server.namenode
Enum NNStorage.NameNodeDirType
java.lang.Object
java.lang.Enum<NNStorage.NameNodeDirType>
org.apache.hadoop.hdfs.server.namenode.NNStorage.NameNodeDirType
- All Implemented Interfaces:
- Serializable, Comparable<NNStorage.NameNodeDirType>, org.apache.hadoop.hdfs.server.common.Storage.StorageDirType
- Enclosing class:
- org.apache.hadoop.hdfs.server.namenode.NNStorage
public static enum NNStorage.NameNodeDirType
- extends Enum<NNStorage.NameNodeDirType>
- implements org.apache.hadoop.hdfs.server.common.Storage.StorageDirType
Implementation of StorageDirType specific to namenode storage
A Storage directory could be of type IMAGE which stores only fsimage,
or of type EDITS which stores edits or of type IMAGE_AND_EDITS which
stores both fsimage and edits.
UNDEFINED
public static final NNStorage.NameNodeDirType UNDEFINED
IMAGE
public static final NNStorage.NameNodeDirType IMAGE
EDITS
public static final NNStorage.NameNodeDirType EDITS
IMAGE_AND_EDITS
public static final NNStorage.NameNodeDirType IMAGE_AND_EDITS
values
public static NNStorage.NameNodeDirType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (NNStorage.NameNodeDirType c : NNStorage.NameNodeDirType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static NNStorage.NameNodeDirType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
getStorageDirType
public org.apache.hadoop.hdfs.server.common.Storage.StorageDirType getStorageDirType()
- Specified by:
getStorageDirType in interface org.apache.hadoop.hdfs.server.common.Storage.StorageDirType
isOfType
public boolean isOfType(org.apache.hadoop.hdfs.server.common.Storage.StorageDirType type)
- Specified by:
isOfType in interface org.apache.hadoop.hdfs.server.common.Storage.StorageDirType
Copyright © 2014 Apache Software Foundation. All Rights Reserved.