public static enum Ssl.SslColumn extends java.lang.Enum<Ssl.SslColumn>
| Enum Constant and Description |
|---|
BOOTSTRAPCACERT |
CACERT |
CERTIFICATE |
EXTERNALIDS |
PRIVATEKEY |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
columnName()
Returns the table column name for SslColumn.
|
static Ssl.SslColumn |
valueOf(java.lang.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(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 nullpublic java.lang.String columnName()