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 whosenamefield is greater than or equal to the givenvalue. | 
| RefinableView<E> | fromAfter(String name,
         Comparable value)Creates a sub- View, restricted to entities whosenamefield is greater than the givenvalue. | 
| RefinableView<E> | to(String name,
  Comparable value)Creates a sub- View, restricted to entities whosenamefield is less than or equal to the givenvalue. | 
| RefinableView<E> | toBefore(String name,
        Comparable value)Creates a sub- View, restricted to entities whosenamefield is less than the givenvalue. | 
| RefinableView<E> | with(String name,
    Object... values)Creates a sub- View, restricted to entities whosenamefield is equal to any of the givenvalues. | 
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.