public enum CertStoreType extends Enum<CertStoreType>
| 限定符和类型 | 方法和说明 |
|---|---|
String |
getDisplayName() |
String |
getValue() |
static Map<String,CertStoreType> |
getValueMap() |
static CertStoreType |
parse(String value) |
static CertStoreType |
valueOf(String name)
返回带有指定名称的该类型的枚举常量。
|
static CertStoreType[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final CertStoreType STRING
public static final CertStoreType FILE_CER
public static final CertStoreType FILE_P12
public static CertStoreType[] values()
for (CertStoreType c : CertStoreType.values()) System.out.println(c);
public static CertStoreType valueOf(String name)
name - 要返回的枚举常量的名称。IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量NullPointerException - 如果参数为空值public static CertStoreType parse(String value)
public String getValue()
public String getDisplayName()
public static Map<String,CertStoreType> getValueMap()
Copyright © 2024. All rights reserved.