public enum Win32CertificateStore extends java.lang.Enum<Win32CertificateStore>
Enum Constant and Description |
---|
AddressBook
Other People
|
AuthRoot
Third-Party Root Certification Authorities
|
CertificateAuthority
Intermediate Certification Authorities
|
Disallowed
Untrusted Certificates
|
My
Personal
|
Root
Trusted Root Certification Authorities
|
TrustedPeople
Trusted People
|
TrustedPublisher
Trusted Publishers
|
Modifier and Type | Method and Description |
---|---|
static Win32CertificateStore |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Win32CertificateStore[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Win32CertificateStore AddressBook
public static final Win32CertificateStore AuthRoot
public static final Win32CertificateStore CertificateAuthority
public static final Win32CertificateStore Disallowed
public static final Win32CertificateStore My
public static final Win32CertificateStore Root
public static final Win32CertificateStore TrustedPeople
public static final Win32CertificateStore TrustedPublisher
public static Win32CertificateStore[] values()
for (Win32CertificateStore c : Win32CertificateStore.values()) System.out.println(c);
public static Win32CertificateStore valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is null