Class AccumuloRetriever<OP extends Output & GraphFilters,O_ITEM>
- java.lang.Object
-
- uk.gov.gchq.gaffer.accumulostore.retriever.AccumuloRetriever<OP,O_ITEM>
-
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Iterable<O_ITEM>
- Direct Known Subclasses:
AccumuloAdjacentIdRetriever
,AccumuloItemRetriever
,AccumuloSetRetriever
public abstract class AccumuloRetriever<OP extends Output & GraphFilters,O_ITEM> extends Object implements Closeable, Iterable<O_ITEM>
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
close()
boolean
doPostFilter(Element element)
Performs any post Filtering specified in a view on an elementvoid
doTransformation(Element element)
Performs any transformations specified in a view on an element-
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
-
-
-
-
Method Detail
-
doTransformation
public void doTransformation(Element element)
Performs any transformations specified in a view on an element- Parameters:
element
- the element to transform
-
doPostFilter
public boolean doPostFilter(Element element)
Performs any post Filtering specified in a view on an element- Parameters:
element
- the element to post Filter- Returns:
- the result of validating the element against the post filters
-
close
public void close()
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
-
-