|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
E
- The type of entities stored in the Dataset
underlying this
RefineableView
.@Immutable public interface RefineableView<E>
A RefineableView
specifies a subset of a Dataset
by one or more
logical constraints.
Method Summary | |
---|---|
RefineableView<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 . |
RefineableView<E> |
fromAfter(String name,
Comparable value)
Creates a sub- View , restricted to entities whose name field
is greater than to the given value . |
RefineableView<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 . |
RefineableView<E> |
toBefore(String name,
Comparable value)
Creates a sub- View , restricted to entities whose name field
is less than to the given value . |
RefineableView<E> |
with(String name,
Object... values)
Creates a sub- View , restricted to entities whose name field is
equal to any of the given values . |
Methods inherited from interface org.kitesdk.data.View |
---|
getDataset, includes, newReader, newWriter |
Method Detail |
---|
RefineableView<E> with(String name, Object... values)
View
, restricted to entities whose name
field is
equal to any of the given values
. If no values
are
specified, then the view is restricted to entities whose name
field
is non-null.
name
- the field name of the entity
RefineableView<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 entity
RefineableView<E> fromAfter(String name, Comparable value)
View
, restricted to entities whose name
field
is greater than to the given value
.
name
- the field name of the entity
RefineableView<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 entity
RefineableView<E> toBefore(String name, Comparable value)
View
, restricted to entities whose name
field
is less than to the given value
.
name
- the field name of the entity
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |