Class Into<E extends EntityBean,​SELF extends Into<E,​SELF>>

    • Constructor Detail

      • Into

        protected Into​(E entity)
        The constructor.
        Parameters:
        entity - the entity to operate on.
      • Into

        protected Into​(E entity,
                       String entityName)
        The constructor.
        Parameters:
        entity - the entity to operate on.
        entityName - the entity name.
    • Method Detail

      • values

        public abstract <V> Values<E,​?> values​(io.github.mmm.property.criteria.PropertyAssignment<V> assignment)
        Type Parameters:
        V - type of the value.
        Parameters:
        assignment - the PropertyAssignment to set.
        Returns:
        the Values for fluent API.
      • values

        public abstract <V> Values<E,​?> values​(io.github.mmm.property.criteria.PropertyAssignment<V>... assignments)
        Type Parameters:
        V - type of the value.
        Parameters:
        assignments - the PropertyAssignments to set.
        Returns:
        the Values for fluent API.
      • values

        public abstract <V> Values<E,​?> values​(io.github.mmm.value.PropertyPath<V> property,
                                                     V value)
        Convenience method for values(PropertyAssignment.of(property, value)).
        Type Parameters:
        V - type of the value.
        Parameters:
        property - the property to set.
        value - the Literal value to insert (assign the property to).
        Returns:
        the Values for fluent API.