enum CipherType extends Enum<CipherType>
| 枚举常量和说明 |
|---|
AEAD_CIPHER |
BLOCK_CIPHER |
NULL_CIPHER |
STREAM_CIPHER |
public static final CipherType NULL_CIPHER
public static final CipherType STREAM_CIPHER
public static final CipherType BLOCK_CIPHER
public static final CipherType AEAD_CIPHER
public static CipherType[] values()
for (CipherType c : CipherType.values()) System.out.println(c);
public static CipherType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值Copyright © 2023. All rights reserved.