Enum WildcardOperator.Format
- java.lang.Object
-
- java.lang.Enum<WildcardOperator.Format>
-
- technology.openpool.ldap.adapter.api.query.WildcardOperator.Format
-
- All Implemented Interfaces:
Serializable,Comparable<WildcardOperator.Format>
- Enclosing class:
- WildcardOperator
public static enum WildcardOperator.Format extends Enum<WildcardOperator.Format>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WildcardOperator.FormatvalueOf(String name)Returns the enum constant of this type with the specified name.static WildcardOperator.Format[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REGEX
public static final WildcardOperator.Format REGEX
-
LDAP
public static final WildcardOperator.Format LDAP
-
SQL
public static final WildcardOperator.Format SQL
-
-
Method Detail
-
values
public static WildcardOperator.Format[] 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 (WildcardOperator.Format c : WildcardOperator.Format.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WildcardOperator.Format 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
-
-