@Deprecated public enum EncryptionMethod extends Enum<EncryptionMethod>
| 枚举常量和说明 |
|---|
A128CBC_HS256
已过时。
|
A128GCM
已过时。
|
A192CBC_HS384
已过时。
|
A192GCM
已过时。
|
A256CBC_HS512
已过时。
|
A256GCM
已过时。
|
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getName()
已过时。
|
com.nimbusds.jose.EncryptionMethod |
getSource()
已过时。
|
static EncryptionMethod |
valueOf(String name)
已过时。
返回带有指定名称的该类型的枚举常量。
|
static EncryptionMethod[] |
values()
已过时。
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final EncryptionMethod A128CBC_HS256
public static final EncryptionMethod A192CBC_HS384
public static final EncryptionMethod A256CBC_HS512
public static final EncryptionMethod A128GCM
public static final EncryptionMethod A192GCM
public static final EncryptionMethod A256GCM
public static EncryptionMethod[] values()
for (EncryptionMethod c : EncryptionMethod.values()) System.out.println(c);
public static EncryptionMethod valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public String getName()
public com.nimbusds.jose.EncryptionMethod getSource()
Copyright © 2024 buession.com Inc.. All rights reserved.