Package com.powsybl.timeseries.ast
Interface LiteralNodeCalc
-
- All Superinterfaces:
NodeCalc
- All Known Implementing Classes:
BigDecimalNodeCalc
,DoubleNodeCalc
,FloatNodeCalc
,IntegerNodeCalc
public interface LiteralNodeCalc extends NodeCalc
- Author:
- Geoffroy Jamgotchian
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static BigDecimalNodeCalc
createBigDecimal(BigDecimal value)
static DoubleNodeCalc
createDouble(double value)
static FloatNodeCalc
createFloat(float value)
static IntegerNodeCalc
createInteger(int value)
double
toDouble()
-
Methods inherited from interface com.powsybl.timeseries.ast.NodeCalc
accept, acceptHandle, acceptIterate, writeJson
-
-
-
-
Method Detail
-
toDouble
double toDouble()
-
createInteger
static IntegerNodeCalc createInteger(int value)
-
createFloat
static FloatNodeCalc createFloat(float value)
-
createDouble
static DoubleNodeCalc createDouble(double value)
-
createBigDecimal
static BigDecimalNodeCalc createBigDecimal(BigDecimal value)
-
-