Interface SeededGraphFilters
-
- All Superinterfaces:
GraphFilters
,OperationView
- All Known Implementing Classes:
GetAdjacentIds
,GetElements
,GetElementsBetweenSets
,GetElementsBetweenSetsPairs
,GetElementsInRanges
,GetElementsWithinSet
,GetJavaRDDOfElements
,GetJavaRDDOfElementsInRanges
,GetRDDOfElements
,GetRDDOfElementsInRanges
,SummariseGroupOverRanges
public interface SeededGraphFilters extends GraphFilters
ASeededGraphFilters
operation is aGraphFilters
operation with the addition of filtering forSeededGraphFilters.IncludeIncomingOutgoingType
s.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interface
SeededGraphFilters.Builder<OP extends SeededGraphFilters,B extends SeededGraphFilters.Builder<OP,?>>
static class
SeededGraphFilters.IncludeIncomingOutgoingType
AIncludeIncomingOutgoingType
defines the incoming/outgoing direction of theEdge
s during the operation.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SeededGraphFilters.IncludeIncomingOutgoingType
getIncludeIncomingOutGoing()
void
setIncludeIncomingOutGoing(SeededGraphFilters.IncludeIncomingOutgoingType inOutType)
-
Methods inherited from interface uk.gov.gchq.gaffer.operation.graph.GraphFilters
getDirectedType, setDirectedType, validate, validateFlags
-
Methods inherited from interface uk.gov.gchq.gaffer.operation.graph.OperationView
getView, setView, setViews, validate, validate, validatePostAggregationFilter, validatePostTransformFilter, validatePreAggregationFilter
-
-
-
-
Method Detail
-
getIncludeIncomingOutGoing
SeededGraphFilters.IncludeIncomingOutgoingType getIncludeIncomingOutGoing()
- Returns:
- includeIncomingOutGoing a
SeededGraphFilters.IncludeIncomingOutgoingType
that controls the incoming/outgoing direction ofEdge
s that are filtered out in the operation. - See Also:
SeededGraphFilters.IncludeIncomingOutgoingType
-
setIncludeIncomingOutGoing
void setIncludeIncomingOutGoing(SeededGraphFilters.IncludeIncomingOutgoingType inOutType)
- Parameters:
inOutType
- aSeededGraphFilters.IncludeIncomingOutgoingType
that controls the incoming/outgoing direction ofEdge
s that are filtered out in the operation.- See Also:
SeededGraphFilters.IncludeIncomingOutgoingType
-
-