public enum FastOption extends Enum<FastOption> implements EnumType
| Enum Constant and Description |
|---|
HIDE_CLIENT_NAMES |
KDC_FOLLOW_REFERRALS |
NONE |
RESERVED |
| Modifier and Type | Method and Description |
|---|---|
static FastOption |
fromValue(int value) |
String |
getName() |
int |
getValue() |
static FastOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FastOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FastOption NONE
public static final FastOption RESERVED
public static final FastOption HIDE_CLIENT_NAMES
public static final FastOption KDC_FOLLOW_REFERRALS
public static FastOption[] values()
for (FastOption c : FastOption.values()) System.out.println(c);
public static FastOption 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 static FastOption fromValue(int value)
Copyright © 2014–2016 The Apache Software Foundation. All rights reserved.