public static enum Ssl.SslColumn extends Enum<Ssl.SslColumn>
| Enum Constant and Description |
|---|
BOOTSTRAPCACERT |
CACERT |
CERTIFICATE |
EXTERNALIDS |
PRIVATEKEY |
| Modifier and Type | Method and Description |
|---|---|
String |
columnName()
Returns the table column name for SslColumn.
|
static Ssl.SslColumn |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Ssl.SslColumn[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Ssl.SslColumn CACERT
public static final Ssl.SslColumn EXTERNALIDS
public static final Ssl.SslColumn BOOTSTRAPCACERT
public static final Ssl.SslColumn CERTIFICATE
public static final Ssl.SslColumn PRIVATEKEY
public static Ssl.SslColumn[] values()
for (Ssl.SslColumn c : Ssl.SslColumn.values()) System.out.println(c);
public static Ssl.SslColumn 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 String columnName()