public static enum SecurityStore.StoreType extends Enum<SecurityStore.StoreType>
| Enum Constant and Description |
|---|
keystore |
truststore |
| Modifier and Type | Method and Description |
|---|---|
static SecurityStore.StoreType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SecurityStore.StoreType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SecurityStore.StoreType truststore
public static final SecurityStore.StoreType keystore
public static SecurityStore.StoreType[] values()
for (SecurityStore.StoreType c : SecurityStore.StoreType.values()) System.out.println(c);
public static SecurityStore.StoreType 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 nullCopyright © 2014–2015 The Apache Software Foundation. All rights reserved.