Interface PathProperty<E>

    • Method Detail

      • dot

        default BaseProperty<Object> dot​(String property)
        Constructs a property path by appending the argument to the existing property separated by a dot.
        Returns:
        a newly created Property object.
      • dot

        default <T> BaseProperty<T> dot​(BaseProperty<T> property)
        Constructs a new property path by appending the argument to the existing property separated by a dot.
        Parameters:
        property - to append to path
        Returns:
        a newly created Property object.
      • dot

        default <T extends NumberNumericProperty<T> dot​(NumericProperty<T> property)
        Constructs a new property path by appending the argument to the existing property separated by a dot.
        Parameters:
        property - to append to path
        Returns:
        a newly created Property object.
      • dot

        default <T extends CharSequenceStringProperty<T> dot​(StringProperty<T> property)
        Constructs a new property path by appending the argument to the existing property separated by a dot.
        Parameters:
        property - to append to path
        Returns:
        a newly created Property object.
      • dot

        default <T> DateProperty<T> dot​(DateProperty<T> property)
        Constructs a new property path by appending the argument to the existing property separated by a dot.
        Parameters:
        property - to append to path
        Returns:
        a newly created Property object.