Enum ValidUnscopingValues
- java.lang.Object
-
- java.lang.Enum<ValidUnscopingValues>
-
- com.activepersistence.service.relation.ValidUnscopingValues
-
- All Implemented Interfaces:
Serializable,Comparable<ValidUnscopingValues>
public enum ValidUnscopingValues extends Enum<ValidUnscopingValues>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ValidUnscopingValuesvalueOf(String name)Returns the enum constant of this type with the specified name.static ValidUnscopingValues[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WHERE
public static final ValidUnscopingValues WHERE
-
SELECT
public static final ValidUnscopingValues SELECT
-
GROUP
public static final ValidUnscopingValues GROUP
-
ORDER
public static final ValidUnscopingValues ORDER
-
LOCK
public static final ValidUnscopingValues LOCK
-
LIMIT
public static final ValidUnscopingValues LIMIT
-
OFFSET
public static final ValidUnscopingValues OFFSET
-
JOINS
public static final ValidUnscopingValues JOINS
-
INCLUDES
public static final ValidUnscopingValues INCLUDES
-
EAGER_LOADS
public static final ValidUnscopingValues EAGER_LOADS
-
FROM
public static final ValidUnscopingValues FROM
-
HAVING
public static final ValidUnscopingValues HAVING
-
-
Method Detail
-
values
public static ValidUnscopingValues[] 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 (ValidUnscopingValues c : ValidUnscopingValues.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ValidUnscopingValues 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
-
-