public enum SimpleEncryptAlgorithmFactory extends java.lang.Enum<SimpleEncryptAlgorithmFactory>
限定符和类型 | 方法和说明 |
---|---|
protected abstract EncryptAlgorithm |
create() |
static EncryptAlgorithm |
getDefault() |
EncryptAlgorithm |
getSimple() |
static EncryptAlgorithm |
getSimple(int version)
无需密钥的加密器
|
static SimpleEncryptAlgorithmFactory |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static SimpleEncryptAlgorithmFactory[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final SimpleEncryptAlgorithmFactory NONE
public static final SimpleEncryptAlgorithmFactory Default
public static SimpleEncryptAlgorithmFactory[] values()
for (SimpleEncryptAlgorithmFactory c : SimpleEncryptAlgorithmFactory.values()) System.out.println(c);
public static SimpleEncryptAlgorithmFactory valueOf(java.lang.String name)
name
- 要返回的枚举常量的名称。java.lang.IllegalArgumentException
- 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException
- 如果参数为空值public EncryptAlgorithm getSimple()
public static EncryptAlgorithm getDefault()
public static EncryptAlgorithm getSimple(int version)
version
- 自定义加密算法的版本号,一个版本对应一种算法protected abstract EncryptAlgorithm create()