public enum WorkingMode extends Enum<WorkingMode>
Enum Constant and Description |
---|
CBC
密码分组连接模式 AES DES 3DES
|
CFB
密文反馈模式 AES DES 3DES
|
ECB
电子密码本模式 AES DES 3DES
|
FTP
计数器模式 AES DES 3DES
|
GCM
加密认证模式 AES
|
NONE
None
|
OFB
输出反馈模式 AES DES 3DES
|
Modifier and Type | Method and Description |
---|---|
String |
getMode() |
static WorkingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkingMode NONE
public static final WorkingMode ECB
public static final WorkingMode CBC
public static final WorkingMode CFB
public static final WorkingMode OFB
public static final WorkingMode FTP
public static final WorkingMode GCM
public static WorkingMode[] values()
for (WorkingMode c : WorkingMode.values()) System.out.println(c);
public static WorkingMode 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 getMode()
Copyright © 2024. All rights reserved.