public static enum Agent.SecurityProfileEnum extends Enum<Agent.SecurityProfileEnum>
Enum Constant and Description |
---|
NATIVE_CA_CERTIFIED_X509 |
RSA_3072 |
SHARED_SECRET |
Modifier and Type | Method and Description |
---|---|
static Agent.SecurityProfileEnum |
fromValue(String text) |
String |
getValue() |
String |
toString() |
static Agent.SecurityProfileEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Agent.SecurityProfileEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Agent.SecurityProfileEnum SHARED_SECRET
public static final Agent.SecurityProfileEnum RSA_3072
public static final Agent.SecurityProfileEnum NATIVE_CA_CERTIFIED_X509
public static Agent.SecurityProfileEnum[] values()
for (Agent.SecurityProfileEnum c : Agent.SecurityProfileEnum.values()) System.out.println(c);
public static Agent.SecurityProfileEnum 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 getValue()
public String toString()
toString
in class Enum<Agent.SecurityProfileEnum>
public static Agent.SecurityProfileEnum fromValue(String text)