Package org.apache.hadoop.hdfs.client
Enum Class CreateEncryptionZoneFlag
- All Implemented Interfaces:
Serializable,Comparable<CreateEncryptionZoneFlag>,Constable
CreateEncryptionZoneFlag is used in
HdfsAdmin.createEncryptionZone(Path, String, EnumSet) to indicate
what should be done when creating an encryption zone.
Use CreateEncryptionZoneFlag as follows:
- PROVISION_TRASH - provision a trash directory for the encryption zone to support soft delete.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionDo not provision a trash directory in the encryption zone.Provision a trash directory .Trash/ in the encryption zone. -
Method Summary
Modifier and TypeMethodDescriptionshortgetMode()static CreateEncryptionZoneFlagvalueOf(short mode) Returns the enum constant of this class with the specified name.static CreateEncryptionZoneFlagReturns the enum constant of this class with the specified name.static CreateEncryptionZoneFlag[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_TRASH
Do not provision a trash directory in the encryption zone.- See Also:
-
PROVISION_TRASH
Provision a trash directory .Trash/ in the encryption zone.- See Also:
-
-
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
-
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:
mode- 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
-
getMode
public short getMode()
-