Enum Class DirContextFactory.ReferralMode
java.lang.Object
java.lang.Enum<DirContextFactory.ReferralMode>
org.wildfly.security.auth.realm.ldap.DirContextFactory.ReferralMode
- All Implemented Interfaces:
Serializable,Comparable<DirContextFactory.ReferralMode>,Constable
- Enclosing interface:
- DirContextFactory
The referral mode.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptiongetValue()Get the string value for this referral mode.booleanDetermine whether this instance is equal to one of the given instances.booleanin(DirContextFactory.ReferralMode... values) Determine whether this instance is equal to one of the given instances.booleanDetermine whether this instance is equal to one of the given instances.booleanin(DirContextFactory.ReferralMode v1, DirContextFactory.ReferralMode v2, DirContextFactory.ReferralMode v3) Determine whether this instance is equal to one of the given instances.static booleanDetermine whether the given set is fully populated (or "full"), meaning it contains all possible values.toString()Returns the enum constant of this class with the specified name.static DirContextFactory.ReferralMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
IGNORE
Referrals should be ignored. -
FOLLOW
Referrals should be followed. -
THROW
Referrals should result in an exception.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getValue
Get the string value for this referral mode.- Returns:
- the string value for this referral mode
-
toString
- Overrides:
toStringin classEnum<DirContextFactory.ReferralMode>
-
isFull
Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.- Parameters:
set- the set- Returns:
trueif the set is full,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instancev2- the second instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
public boolean in(DirContextFactory.ReferralMode v1, DirContextFactory.ReferralMode v2, DirContextFactory.ReferralMode v3) Determine whether this instance is equal to one of the given instances.- Parameters:
v1- the first instancev2- the second instancev3- the third instance- Returns:
trueif one of the instances matches this one,falseotherwise
-
in
Determine whether this instance is equal to one of the given instances.- Parameters:
values- the possible values- Returns:
trueif one of the instances matches this one,falseotherwise
-