public enum SftpAuthenticationMethod extends Enum<SftpAuthenticationMethod>
| Enum Constant and Description |
|---|
GSSAPI_WITH_MIC |
KEYBOARD_INTERACTIVE |
PASSWORD |
PUBLIC_KEY |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static SftpAuthenticationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SftpAuthenticationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SftpAuthenticationMethod GSSAPI_WITH_MIC
public static final SftpAuthenticationMethod PUBLIC_KEY
public static final SftpAuthenticationMethod KEYBOARD_INTERACTIVE
public static final SftpAuthenticationMethod PASSWORD
public static SftpAuthenticationMethod[] values()
for (SftpAuthenticationMethod c : SftpAuthenticationMethod.values()) System.out.println(c);
public static SftpAuthenticationMethod 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 toString()
toString in class Enum<SftpAuthenticationMethod>Copyright © 2003–2017 MuleSoft, Inc.. All rights reserved.