public interface PathFactory
create
instances of Path
and its sub-types. An instance of PathFactory
is either a Path
itself or a PathRoot
.Modifier and Type | Method and Description |
---|---|
<V extends EntityBean> |
to(LinkProperty<V> property) |
BooleanPath |
to(ReadableBooleanProperty property) |
<E> ListPath<E> |
to(ReadableListProperty<E> property) |
<K,V> MapPath<K,V> |
to(ReadableMapProperty<K,V> property) |
<V extends Number & Comparable<?>> |
to(ReadableNumberProperty<V> property) |
<V> Path<V> |
to(ReadableProperty<V> property) |
<E> SetPath<E> |
to(ReadableSetProperty<E> property) |
StringPath |
to(ReadableStringProperty property) |
<V> Path<V> to(ReadableProperty<V> property)
BooleanPath to(ReadableBooleanProperty property)
StringPath to(ReadableStringProperty property)
<V extends Number & Comparable<?>> NumberPath<V> to(ReadableNumberProperty<V> property)
<E> ListPath<E> to(ReadableListProperty<E> property)
E
- the generic type of the list elements
.property
- the property
to append.Path
resulting from joining the given property
.<E> SetPath<E> to(ReadableSetProperty<E> property)
E
- the generic type of the set elements
.property
- the property
to append.Path
resulting from joining the given property
.<K,V> MapPath<K,V> to(ReadableMapProperty<K,V> property)
<V extends EntityBean> Path<V> to(LinkProperty<V> property)
Copyright © 2001–2016 mmm-Team. All rights reserved.