Class CollectionProperty<V extends Persistent,​E extends Collection<V>>

    • Constructor Detail

      • CollectionProperty

        protected CollectionProperty​(String name,
                                     Expression expression,
                                     Class<? super E> collectionType,
                                     Class<V> entityType)
        Constructs a new property with the given name and expression
        Parameters:
        name - of the property (will be used as alias for the expression)
        expression - expression for property
        collectionType - type of the collection
        entityType - type of related entity
    • Method Detail

      • flat

        public EntityProperty<V> flat()

        Create new "flat" property for toMany relationship.

        Example:

        
         List<Object[]> result = ObjectSelect
              .columnQuery(Artist.class, Artist.ARTIST_NAME, Artist.PAINTING_ARRAY.flat())
              .select(context);
         

      • contains

        public Expression contains​(V value)
        Returns:
        An expression representing equality to a value.
      • notContains

        public Expression notContains​(V value)
        Returns:
        An expression representing inequality to a value.
      • contains

        @SafeVarargs
        public final Expression contains​(V firstValue,
                                         V... moreValues)
        Returns:
        An expression for finding objects with values in the given set.
      • contains

        public Expression contains​(Collection<V> values)
        Returns:
        An expression for finding objects with values in the given set.
      • containsId

        public Expression containsId​(Object id)
        Parameters:
        id - object id
        Returns:
        An expression for finding object with given id.
      • containsId

        public Expression containsId​(Object firstId,
                                     Object... moreId)
        Returns:
        An expression for finding objects with given id set
      • containsId

        public Expression containsId​(Collection<Object> ids)
        Returns:
        An expression for finding objects with given id set.
      • notContainsId

        public Expression notContainsId​(Object id)
        Parameters:
        id - object id
        Returns:
        An expression for finding object without given id.
      • notContainsId

        public Expression notContainsId​(Object firstId,
                                        Object... moreId)
        Returns:
        An expression for finding objects without given id set.
      • notContainsId

        public Expression notContainsId​(Collection<Object> ids)
        Returns:
        An expression for finding objects without given id set.
      • notContains

        public Expression notContains​(Collection<V> values)
        Returns:
        An expression for finding objects with values not in the given set.
      • notContains

        @SafeVarargs
        public final Expression notContains​(V firstValue,
                                            V... moreValues)
        Returns:
        An expression for finding objects with values not in the given set.
      • getEntityType

        protected Class<V> getEntityType()
        Returns:
        object entity type represented by this property