public enum DatabaseEncryptionState extends Enum<DatabaseEncryptionState> implements INumberEnum<Integer>
Enum Constant and Description |
---|
ENCRYPTED |
PENDING_ENCRYPTION |
UNENCRYPTED |
Modifier and Type | Method and Description |
---|---|
long |
getLongValue() |
Integer |
getValue() |
static DatabaseEncryptionState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseEncryptionState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseEncryptionState UNENCRYPTED
public static final DatabaseEncryptionState ENCRYPTED
public static final DatabaseEncryptionState PENDING_ENCRYPTION
public static DatabaseEncryptionState[] values()
for (DatabaseEncryptionState c : DatabaseEncryptionState.values()) System.out.println(c);
public static DatabaseEncryptionState 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 Integer getValue()
getValue
in interface INumberEnum<Integer>
public long getLongValue()
getLongValue
in interface INumberEnum<Integer>
long
Copyright © 2019–2021 HCL. All rights reserved.