public enum PBEAlgo extends Enum<PBEAlgo>
| Enum Constant and Description |
|---|
PBEWithHmacSHA256AndAES_256 |
| Modifier and Type | Method and Description |
|---|---|
String |
algoName() |
int |
code() |
static PBEAlgo |
forCode(int code) |
static PBEAlgo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PBEAlgo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PBEAlgo PBEWithHmacSHA256AndAES_256
public static PBEAlgo[] values()
for (PBEAlgo c : PBEAlgo.values()) System.out.println(c);
public static PBEAlgo 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 int code()
public String algoName()
public static PBEAlgo forCode(int code)
Copyright © 2017. All rights reserved.