public enum SshAuthType extends Enum<SshAuthType>
| Enum Constant and Description |
|---|
KEY
Private SSH key
|
PASSWORD
Password
|
| Modifier and Type | Method and Description |
|---|---|
static SshAuthType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SshAuthType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SshAuthType KEY
public static final SshAuthType PASSWORD
public static SshAuthType[] values()
for (SshAuthType c : SshAuthType.values()) System.out.println(c);
public static SshAuthType 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 nullCopyright © 2021. All rights reserved.