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