Enum ItemRestrictionOperation
- java.lang.Object
-
- java.lang.Enum<ItemRestrictionOperation>
-
- com.evolveum.midpoint.repo.sql.query2.restriction.ItemRestrictionOperation
-
- All Implemented Interfaces:
Serializable
,Comparable<ItemRestrictionOperation>
public enum ItemRestrictionOperation extends Enum<ItemRestrictionOperation>
- Author:
- lazyman
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
symbol()
static ItemRestrictionOperation
valueOf(String name)
Returns the enum constant of this type with the specified name.static ItemRestrictionOperation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EQ
public static final ItemRestrictionOperation EQ
-
GT
public static final ItemRestrictionOperation GT
-
GE
public static final ItemRestrictionOperation GE
-
LT
public static final ItemRestrictionOperation LT
-
LE
public static final ItemRestrictionOperation LE
-
NULL
public static final ItemRestrictionOperation NULL
-
NOT_NULL
public static final ItemRestrictionOperation NOT_NULL
-
SUBSTRING
public static final ItemRestrictionOperation SUBSTRING
-
STARTS_WITH
public static final ItemRestrictionOperation STARTS_WITH
-
ENDS_WITH
public static final ItemRestrictionOperation ENDS_WITH
-
-
Method Detail
-
values
public static ItemRestrictionOperation[] 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 (ItemRestrictionOperation c : ItemRestrictionOperation.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ItemRestrictionOperation 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
-
symbol
public String symbol()
-
-