Interface ColumnAbstraction<E>
-
- All Superinterfaces:
Abstraction<E>
- All Known Subinterfaces:
ActivityCountAbstraction<E>,EndActivityAbstraction<E>,LengthOneLoopAbstraction<E>,StartActivityAbstraction<E>
- All Known Implementing Classes:
AbstractColumnAbstraction,ActivityCountAbstractionImpl,EndActivityAbstractionImpl,LengthOneLoopAbstractionImpl,StartActivityAbstractionImpl
public interface ColumnAbstraction<E> extends Abstraction<E>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<E>getAllGEQThreshold()java.util.Collection<E>getAllLessThanThreshold()double[]getColumn()doublegetThreshold()doublegetValue(int index)doublegetValue(E index)booleanholds(int index)booleanholds(E index)-
Methods inherited from interface org.processmining.logabstractions.models.Abstraction
getEventClass, getEventClasses, getIndex
-
-
-
-
Method Detail
-
getAllGEQThreshold
java.util.Collection<E> getAllGEQThreshold()
-
getAllLessThanThreshold
java.util.Collection<E> getAllLessThanThreshold()
-
getColumn
double[] getColumn()
-
getThreshold
double getThreshold()
-
getValue
double getValue(E index)
-
getValue
double getValue(int index)
-
holds
boolean holds(E index)
-
holds
boolean holds(int index)
-
-