Package org.seamcat.model.types.result
Class VectorResultType
- java.lang.Object
-
- org.seamcat.model.types.result.VectorResultType
-
- All Implemented Interfaces:
ResultType<VectorResult>
public class VectorResultType extends java.lang.Object implements ResultType<VectorResult>
-
-
Constructor Summary
Constructors Constructor Description VectorResultType(VectorDef def, double[] values)
VectorResultType(VectorDef def, java.util.List<java.lang.Double> values)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
accept(ResultTypeVisitor visitor)
VectorDef
def()
java.lang.String
description()
java.lang.String
getLabel()
java.lang.String
getName()
Unit
getUnit()
java.lang.String
toString()
VectorResult
value()
-
-
-
Method Detail
-
def
public VectorDef def()
- Specified by:
def
in interfaceResultType<VectorResult>
-
getName
public java.lang.String getName()
-
getUnit
public Unit getUnit()
-
value
public VectorResult value()
- Specified by:
value
in interfaceResultType<VectorResult>
-
getLabel
public java.lang.String getLabel()
-
description
public java.lang.String description()
- Specified by:
description
in interfaceResultType<VectorResult>
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
accept
public void accept(ResultTypeVisitor visitor)
- Specified by:
accept
in interfaceResultType<VectorResult>
-
-