public static enum KeyStore.STORAGE extends java.lang.Enum<KeyStore.STORAGE>
| Enum Constant and Description |
|---|
CLIENT
client's certificate storage
|
COMMON
common used certificate storage
|
| Modifier and Type | Method and Description |
|---|---|
static KeyStore.STORAGE |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static KeyStore.STORAGE[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final KeyStore.STORAGE COMMON
public static final KeyStore.STORAGE CLIENT
public static KeyStore.STORAGE[] values()
for (KeyStore.STORAGE c : KeyStore.STORAGE.values()) System.out.println(c);
public static KeyStore.STORAGE 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 nullCopyright (c) 2014, Oracle and/or its affiliates. All rights reserved.