public enum Authentication extends java.lang.Enum<Authentication>
Enum Constant and Description |
---|
aNULL |
DH |
DSS |
ECDH |
ECDSA |
FZA |
GOST01 |
GOST94 |
KRB5 |
PSK |
RSA |
SRP |
Modifier and Type | Method and Description |
---|---|
static Authentication |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Authentication[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Authentication RSA
public static final Authentication DSS
public static final Authentication aNULL
public static final Authentication DH
public static final Authentication ECDH
public static final Authentication KRB5
public static final Authentication ECDSA
public static final Authentication PSK
public static final Authentication GOST94
public static final Authentication GOST01
public static final Authentication FZA
public static final Authentication SRP
public static Authentication[] values()
for (Authentication c : Authentication.values()) System.out.println(c);
public static Authentication 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 nullCopyright © 2000-2018 Apache Software Foundation. All Rights Reserved.