E
- The type of entities stored in the Dataset
underlying this
RefinableView
.@Immutable public interface RefinableView<E> extends View<E>
RefinableView
specifies a subset of a Dataset
by one or
more logical constraints.Modifier and Type | Method and Description |
---|---|
RefinableView<E> |
from(String name,
Comparable value)
Creates a sub-
View , restricted to entities whose name
field is greater than or equal to the given value . |
RefinableView<E> |
fromAfter(String name,
Comparable value)
Creates a sub-
View , restricted to entities whose name
field is greater than the given value . |
RefinableView<E> |
to(String name,
Comparable value)
Creates a sub-
View , restricted to entities whose name
field is less than or equal to the given value . |
RefinableView<E> |
toBefore(String name,
Comparable value)
Creates a sub-
View , restricted to entities whose name
field is less than the given value . |
RefinableView<E> |
with(String name,
Object... values)
Creates a sub-
View , restricted to entities whose name
field is equal to any of the given values . |
RefinableView<E> with(String name, Object... values)
View
, restricted to entities whose name
field is equal to any of the given values
. If you specify no
values
, the view is restricted to entities whose
name
field is non-null.name
- the field name of the entityRefinableView<E> from(String name, Comparable value)
View
, restricted to entities whose name
field is greater than or equal to the given value
.name
- the field name of the entityRefinableView<E> fromAfter(String name, Comparable value)
View
, restricted to entities whose name
field is greater than the given value
.name
- the field name of the entityRefinableView<E> to(String name, Comparable value)
View
, restricted to entities whose name
field is less than or equal to the given value
.name
- the field name of the entityRefinableView<E> toBefore(String name, Comparable value)
View
, restricted to entities whose name
field is less than the given value
.name
- the field name of the entityCopyright © 2013–2015. All rights reserved.