public enum SaslQoP extends Enum<SaslQoP>
| Enum Constant and Description |
|---|
AUTH
Authentication only
|
AUTH_CONF
Authentication with integrity and privacy protection
|
AUTH_INT
Authentication with integrity protection
|
| Modifier and Type | Field and Description |
|---|---|
private String |
value
The equivalent string value
|
| Modifier and Type | Method and Description |
|---|---|
String |
getValue()
Gets the equivalent string value.
|
static SaslQoP |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SaslQoP[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SaslQoP AUTH
public static final SaslQoP AUTH_INT
public static final SaslQoP AUTH_CONF
private String value
public static SaslQoP[] values()
for (SaslQoP c : SaslQoP.values()) System.out.println(c);
public static SaslQoP 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 getValue()
Copyright © 2003–2022 The Apache Software Foundation. All rights reserved.