public enum EncryptionMode extends java.lang.Enum<EncryptionMode>
Modifier and Type | Field and Description |
---|---|
java.lang.String |
builder |
int |
encryptionFlags |
int |
versionMajor |
int |
versionMinor |
Modifier and Type | Method and Description |
---|---|
static EncryptionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EncryptionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EncryptionMode standard
public static final EncryptionMode agile
public final java.lang.String builder
public final int versionMajor
public final int versionMinor
public final int encryptionFlags
public static EncryptionMode[] values()
for (EncryptionMode c : EncryptionMode.values()) System.out.println(c);
public static EncryptionMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright 2016 The Apache Software Foundation or its licensors, as applicable.