public enum RadiusProtocol extends java.lang.Enum<RadiusProtocol>
| Enum Constant and Description |
|---|
CHAP
The chap.
|
EAP_MD5
The EA p_ m d5.
|
EAP_MSCHAPv2
The EA p_ mscha pv2.
|
EAP_TLS
The eap tls.
|
EAP_TTLS_EAP_MD5
The EA p_ ttl s_ ea p_ m d5.
|
EAP_TTLS_EAP_MSCHAPv2
The EA p_ ttl s_ ea p_ mscha pv2.
|
EAP_TTLS_PAP
The eap ttls pap.
|
MSCHAPv1
The MSCHA pv1.
|
MSCHAPv2
The MSCHA pv2.
|
PAP
The pap.
|
PEAP
The peap.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getName()
Gets the radius protocol name required by
RadiusClient.getAuthProtocol(String). |
static RadiusProtocol |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RadiusProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RadiusProtocol CHAP
public static final RadiusProtocol EAP_MD5
public static final RadiusProtocol EAP_MSCHAPv2
public static final RadiusProtocol EAP_TLS
public static final RadiusProtocol EAP_TTLS_PAP
public static final RadiusProtocol EAP_TTLS_EAP_MD5
public static final RadiusProtocol EAP_TTLS_EAP_MSCHAPv2
public static final RadiusProtocol MSCHAPv1
public static final RadiusProtocol MSCHAPv2
public static final RadiusProtocol PAP
public static final RadiusProtocol PEAP
public static RadiusProtocol[] values()
for (RadiusProtocol c : RadiusProtocol.values()) System.out.println(c);
public static RadiusProtocol 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 nullpublic java.lang.String getName()
RadiusClient.getAuthProtocol(String).RadiusClient.