Enum JPQLQueryDeclaration.Type

java.lang.Object
java.lang.Enum<JPQLQueryDeclaration.Type>
org.eclipse.persistence.jpa.jpql.JPQLQueryDeclaration.Type
All Implemented Interfaces:
Serializable, Comparable<JPQLQueryDeclaration.Type>, java.lang.constant.Constable
Enclosing interface:
JPQLQueryDeclaration

public static enum JPQLQueryDeclaration.Type extends Enum<JPQLQueryDeclaration.Type>
This enum type defines the various types of declarations supported by both the JPA functional specification and EclipseLink.
  • Enum Constant Details

    • CLASS_NAME

      public static final JPQLQueryDeclaration.Type CLASS_NAME
      Indicates the "root" object maps a fully qualified class name.
    • COLLECTION

      public static final JPQLQueryDeclaration.Type COLLECTION
      Indicates the "root" object maps a collection-valued path expression.
    • DERIVED

      public static final JPQLQueryDeclaration.Type DERIVED
      Indicates the "root" object is a derived path expression where the identification variable is declared in the super query, otherwise it's an entity name.
    • RANGE

      public static final JPQLQueryDeclaration.Type RANGE
      Indicates the "root" object maps to an entity.
    • SUBQUERY

      public static final JPQLQueryDeclaration.Type SUBQUERY
      Indicates the "root" object maps to a subquery.
    • TABLE

      public static final JPQLQueryDeclaration.Type TABLE
      Indicates the "root" object maps directly to a database table.
    • UNKNOWN

      public static final JPQLQueryDeclaration.Type UNKNOWN
      Indicates the "root" object maps to an unknown expression.
  • Method Details

    • values

      public static JPQLQueryDeclaration.Type[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static JPQLQueryDeclaration.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 name
      NullPointerException - if the argument is null
    • isRange

      public boolean isRange()
      Determines whether this type represents a range variable declaration.
      Returns:
      true if this constant represents a range variable declaration; false otherwise