public enum CertificateStoreLocation extends Enum<CertificateStoreLocation>
Enum Constant and Description |
---|
CURRENT_USER
Enum value CurrentUser.
|
LOCAL_MACHINE
Enum value LocalMachine.
|
Modifier and Type | Method and Description |
---|---|
static CertificateStoreLocation |
fromString(String value)
Parses a serialized value to a CertificateStoreLocation instance.
|
String |
toString() |
static CertificateStoreLocation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CertificateStoreLocation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CertificateStoreLocation CURRENT_USER
public static final CertificateStoreLocation LOCAL_MACHINE
public static CertificateStoreLocation[] values()
for (CertificateStoreLocation c : CertificateStoreLocation.values()) System.out.println(c);
public static CertificateStoreLocation 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 static CertificateStoreLocation fromString(String value)
value
- the serialized value to parse.public String toString()
toString
in class Enum<CertificateStoreLocation>
Copyright © 2019. All rights reserved.