public enum QualityOfProtection extends Enum<QualityOfProtection>
Enum Constant and Description |
---|
AUTH
Authentication only.
|
AUTH_CONF
Authentication with integrity and privacy protection.
|
AUTH_INT
Authentication with integrity protection.
|
Modifier and Type | Method and Description |
---|---|
static QualityOfProtection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QualityOfProtection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QualityOfProtection AUTH
public static final QualityOfProtection AUTH_INT
public static final QualityOfProtection AUTH_CONF
public static QualityOfProtection[] values()
for (QualityOfProtection c : QualityOfProtection.values()) System.out.println(c);
public static QualityOfProtection 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 © 2003-2019 Virginia Tech. All Rights Reserved.