public abstract class AbstractPathFactory extends Object implements PathFactory
PathFactory
.Constructor and Description |
---|
AbstractPathFactory()
The constructor.
|
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) |
public <V> Path<V> to(ReadableProperty<V> property)
to
in interface PathFactory
V
- the generic type of the property value
.property
- the property
to append.Path
resulting from joining the given property
.public BooleanPath to(ReadableBooleanProperty property)
to
in interface PathFactory
property
- the property
to append.Path
resulting from joining the given property
.public StringPath to(ReadableStringProperty property)
to
in interface PathFactory
property
- the property
to append.Path
resulting from joining the given property
.public <V extends Number & Comparable<?>> NumberPath<V> to(ReadableNumberProperty<V> property)
to
in interface PathFactory
V
- the generic type of the property value
.property
- the property
to append.Path
resulting from joining the given property
.public <V extends EntityBean> Path<V> to(LinkProperty<V> property)
to
in interface PathFactory
V
- the generic type of the property value
.property
- the property
to append.Path
resulting from joining the given property
.public <E> ListPath<E> to(ReadableListProperty<E> property)
to
in interface PathFactory
E
- the generic type of the list elements
.property
- the property
to append.Path
resulting from joining the given property
.public <E> SetPath<E> to(ReadableSetProperty<E> property)
to
in interface PathFactory
E
- the generic type of the set elements
.property
- the property
to append.Path
resulting from joining the given property
.public <K,V> MapPath<K,V> to(ReadableMapProperty<K,V> property)
Copyright © 2001–2016 mmm-Team. All rights reserved.