public static enum AeroGearCrypto.Mode extends Enum<AeroGearCrypto.Mode>
| Enum Constant and Description |
|---|
GCM |
| Modifier and Type | Field and Description |
|---|---|
private String |
mode |
private AeroGearCrypto.Padding |
padding |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static AeroGearCrypto.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AeroGearCrypto.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AeroGearCrypto.Mode GCM
private final AeroGearCrypto.Padding padding
private String mode
public static AeroGearCrypto.Mode[] values()
for (AeroGearCrypto.Mode c : AeroGearCrypto.Mode.values()) System.out.println(c);
public static AeroGearCrypto.Mode 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 String toString()
toString in class Enum<AeroGearCrypto.Mode>Copyright © 2016 JBoss by Red Hat. All Rights Reserved.