Package org.hibernate.query.sqm
Enum StrictJpaComplianceViolation.Type
- java.lang.Object
-
- java.lang.Enum<StrictJpaComplianceViolation.Type>
-
- org.hibernate.query.sqm.StrictJpaComplianceViolation.Type
-
- All Implemented Interfaces:
Serializable
,Comparable<StrictJpaComplianceViolation.Type>
- Enclosing class:
- StrictJpaComplianceViolation
public static enum StrictJpaComplianceViolation.Type extends Enum<StrictJpaComplianceViolation.Type>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
description()
static StrictJpaComplianceViolation.Type
valueOf(String name)
Returns the enum constant of this type with the specified name.static StrictJpaComplianceViolation.Type[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IMPLICIT_SELECT
public static final StrictJpaComplianceViolation.Type IMPLICIT_SELECT
-
ALIASED_FETCH_JOIN
public static final StrictJpaComplianceViolation.Type ALIASED_FETCH_JOIN
-
UNMAPPED_POLYMORPHISM
public static final StrictJpaComplianceViolation.Type UNMAPPED_POLYMORPHISM
-
FUNCTION_CALL
public static final StrictJpaComplianceViolation.Type FUNCTION_CALL
-
HQL_COLLECTION_FUNCTION
public static final StrictJpaComplianceViolation.Type HQL_COLLECTION_FUNCTION
-
VALUE_FUNCTION_ON_NON_MAP
public static final StrictJpaComplianceViolation.Type VALUE_FUNCTION_ON_NON_MAP
-
KEY_FUNCTION_ON_NON_MAP
public static final StrictJpaComplianceViolation.Type KEY_FUNCTION_ON_NON_MAP
-
RESERVED_WORD_USED_AS_ALIAS
public static final StrictJpaComplianceViolation.Type RESERVED_WORD_USED_AS_ALIAS
-
INDEXED_ELEMENT_REFERENCE
public static final StrictJpaComplianceViolation.Type INDEXED_ELEMENT_REFERENCE
-
TUPLES
public static final StrictJpaComplianceViolation.Type TUPLES
-
COLLATIONS
public static final StrictJpaComplianceViolation.Type COLLATIONS
-
SUBQUERY_ORDER_BY
public static final StrictJpaComplianceViolation.Type SUBQUERY_ORDER_BY
-
FROM_SUBQUERY
public static final StrictJpaComplianceViolation.Type FROM_SUBQUERY
-
SET_OPERATIONS
public static final StrictJpaComplianceViolation.Type SET_OPERATIONS
-
CTES
public static final StrictJpaComplianceViolation.Type CTES
-
LIMIT_OFFSET_CLAUSE
public static final StrictJpaComplianceViolation.Type LIMIT_OFFSET_CLAUSE
-
IDENTIFICATION_VARIABLE_NOT_DECLARED_IN_FROM_CLAUSE
public static final StrictJpaComplianceViolation.Type IDENTIFICATION_VARIABLE_NOT_DECLARED_IN_FROM_CLAUSE
-
FQN_ENTITY_NAME
public static final StrictJpaComplianceViolation.Type FQN_ENTITY_NAME
-
NON_ENTITY_NAME
public static final StrictJpaComplianceViolation.Type NON_ENTITY_NAME
-
IMPLICIT_TREAT
public static final StrictJpaComplianceViolation.Type IMPLICIT_TREAT
-
MIXED_POSITIONAL_NAMED_PARAMETERS
public static final StrictJpaComplianceViolation.Type MIXED_POSITIONAL_NAMED_PARAMETERS
-
-
Method Detail
-
values
public static StrictJpaComplianceViolation.Type[] 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 (StrictJpaComplianceViolation.Type c : StrictJpaComplianceViolation.Type.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StrictJpaComplianceViolation.Type 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
-
description
public String description()
-
-