Package org.infinispan.objectfilter
Interface ObjectFilter.FilterResult
-
- Enclosing interface:
- ObjectFilter
public static interface ObjectFilter.FilterResultThe output of theObjectFilter.filter(java.lang.Object)method.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ObjectgetInstance()Returns the matched object.Object[]getProjection()Returns the projection, if a projection was requested ornullotherwise.Comparable[]getSortProjection()Returns the projection of fields used for sorting, if sorting was requested ornullotherwise.
-
-
-
Method Detail
-
getInstance
Object getInstance()
Returns the matched object. This is non-null unless projections are present.
-
getProjection
Object[] getProjection()
Returns the projection, if a projection was requested ornullotherwise.
-
getSortProjection
Comparable[] getSortProjection()
Returns the projection of fields used for sorting, if sorting was requested ornullotherwise.
-
-