Enum 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>
- Enclosing interface:
- DirContextFactory
public static enum DirContextFactory.ReferralMode extends Enum<DirContextFactory.ReferralMode>
The referral mode.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
ReferralMode(String value)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
Get the string value for this referral mode.boolean
in(DirContextFactory.ReferralMode v1)
Determine whether this instance is equal to one of the given instances.boolean
in(DirContextFactory.ReferralMode... values)
Determine whether this instance is equal to one of the given instances.boolean
in(DirContextFactory.ReferralMode v1, DirContextFactory.ReferralMode v2)
Determine whether this instance is equal to one of the given instances.boolean
in(DirContextFactory.ReferralMode v1, DirContextFactory.ReferralMode v2, DirContextFactory.ReferralMode v3)
Determine whether this instance is equal to one of the given instances.static boolean
isFull(EnumSet<DirContextFactory.ReferralMode> set)
Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.String
toString()
static DirContextFactory.ReferralMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static DirContextFactory.ReferralMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IGNORE
public static final DirContextFactory.ReferralMode IGNORE
Referrals should be ignored.
-
FOLLOW
public static final DirContextFactory.ReferralMode FOLLOW
Referrals should be followed.
-
THROW
public static final DirContextFactory.ReferralMode THROW
Referrals should result in an exception.
-
-
Field Detail
-
value
private final String value
-
fullSize
private static final int fullSize
-
-
Constructor Detail
-
ReferralMode
private ReferralMode(String value)
-
-
Method Detail
-
values
public static DirContextFactory.ReferralMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (DirContextFactory.ReferralMode c : DirContextFactory.ReferralMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DirContextFactory.ReferralMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException
- if the argument is null
-
getValue
public String getValue()
Get the string value for this referral mode.- Returns:
- the string value for this referral mode
-
toString
public String toString()
- Overrides:
toString
in classEnum<DirContextFactory.ReferralMode>
-
isFull
public static boolean isFull(EnumSet<DirContextFactory.ReferralMode> set)
Determine whether the given set is fully populated (or "full"), meaning it contains all possible values.- Parameters:
set
- the set- Returns:
true
if the set is full,false
otherwise
-
in
public boolean in(DirContextFactory.ReferralMode v1)
Determine whether this instance is equal to one of the given instances.- Parameters:
v1
- the first instance- Returns:
true
if one of the instances matches this one,false
otherwise
-
in
public boolean in(DirContextFactory.ReferralMode v1, DirContextFactory.ReferralMode v2)
Determine whether this instance is equal to one of the given instances.- Parameters:
v1
- the first instancev2
- the second instance- Returns:
true
if one of the instances matches this one,false
otherwise
-
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:
true
if one of the instances matches this one,false
otherwise
-
in
public boolean in(DirContextFactory.ReferralMode... values)
Determine whether this instance is equal to one of the given instances.- Parameters:
values
- the possible values- Returns:
true
if one of the instances matches this one,false
otherwise
-
-