public static enum KeyStores.Type extends java.lang.Enum<KeyStores.Type>
| Enum Constant and Description | 
|---|
| CA_CERTS | 
| CERTS | 
| CLIENT_CERTS | 
| JSSE_CA_CERTS | 
| JSSE_CERTS | 
| Modifier and Type | Method and Description | 
|---|---|
| static KeyStores.Type | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static KeyStores.Type[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final KeyStores.Type CERTS
public static final KeyStores.Type JSSE_CERTS
public static final KeyStores.Type CA_CERTS
public static final KeyStores.Type JSSE_CA_CERTS
public static final KeyStores.Type CLIENT_CERTS
public static KeyStores.Type[] values()
for (KeyStores.Type c : KeyStores.Type.values()) System.out.println(c);
public static KeyStores.Type 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