Class AnnotationElementContinuous
- java.lang.Object
-
- org.processmining.variantfinder.models.annotatedtransitionsystems.impl.AnnotationElementContinuous
-
- All Implemented Interfaces:
AnnotationElement<java.lang.Float>
public class AnnotationElementContinuous extends java.lang.Object implements AnnotationElement<java.lang.Float>
We use floats to save space Here we dont use maps for cardinality. Instead, we just store all the numbers.- Author:
- abolt
-
-
Constructor Summary
Constructors Constructor Description AnnotationElementContinuous(java.lang.String name)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddValue(java.lang.Float newElement)java.util.List<java.lang.Float>getDistinctValues()java.lang.StringgetName()java.util.List<java.lang.Float>getValues()
-
-
-
Method Detail
-
getName
public java.lang.String getName()
- Specified by:
getNamein interfaceAnnotationElement<java.lang.Float>
-
addValue
public void addValue(java.lang.Float newElement)
- Specified by:
addValuein interfaceAnnotationElement<java.lang.Float>
-
getValues
public java.util.List<java.lang.Float> getValues()
- Specified by:
getValuesin interfaceAnnotationElement<java.lang.Float>
-
getDistinctValues
public java.util.List<java.lang.Float> getDistinctValues()
- Specified by:
getDistinctValuesin interfaceAnnotationElement<java.lang.Float>
-
-