Enum Class DataNodeLayoutVersion.Feature
java.lang.Object
java.lang.Enum<DataNodeLayoutVersion.Feature>
org.apache.hadoop.hdfs.server.datanode.DataNodeLayoutVersion.Feature
- All Implemented Interfaces:
Serializable,Comparable<DataNodeLayoutVersion.Feature>,Constable,org.apache.hadoop.hdfs.protocol.LayoutVersion.LayoutFeature
- Enclosing class:
- org.apache.hadoop.hdfs.server.datanode.DataNodeLayoutVersion
public static enum DataNodeLayoutVersion.Feature
extends Enum<DataNodeLayoutVersion.Feature>
implements org.apache.hadoop.hdfs.protocol.LayoutVersion.LayoutFeature
Enums for features that change the layout version.
To add a new layout version:
To add a new layout version:
- Define a new enum constant with a short enum name, the new layout version and description of the added feature.
- When adding a layout version with an ancestor that is not same as its immediate predecessor, use the constructor where a specific ancestor can be passed.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionorg.apache.hadoop.hdfs.protocol.LayoutVersion.FeatureInfogetInfo()Returns the enum constant of this class with the specified name.static DataNodeLayoutVersion.Feature[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FIRST_LAYOUT
-
BLOCKID_BASED_LAYOUT
-
BLOCKID_BASED_LAYOUT_32_by_32
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-
getInfo
public org.apache.hadoop.hdfs.protocol.LayoutVersion.FeatureInfo getInfo()- Specified by:
getInfoin interfaceorg.apache.hadoop.hdfs.protocol.LayoutVersion.LayoutFeature
-