public enum AuthenticationStyle extends java.lang.Enum<AuthenticationStyle>
| Enum Constant and Description |
|---|
NONE |
PASSWORD |
SSH_KEY_WITH_PASSPHRASE |
SSH_KEY_WITHOUT_PASSPHRASE |
| Modifier and Type | Method and Description |
|---|---|
static AuthenticationStyle |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AuthenticationStyle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AuthenticationStyle NONE
public static final AuthenticationStyle PASSWORD
public static final AuthenticationStyle SSH_KEY_WITHOUT_PASSPHRASE
public static final AuthenticationStyle SSH_KEY_WITH_PASSPHRASE
public static AuthenticationStyle[] values()
for (AuthenticationStyle c : AuthenticationStyle.values()) System.out.println(c);
public static AuthenticationStyle 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 null