Package nis.svc.opt.api
Interface ReportsTables.ConstraintsRow
-
- Enclosing interface:
- ReportsTables
public static interface ReportsTables.ConstraintsRow
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
flag()
constraint broken flagjava.lang.String
id()
asset iddouble
initialOut()
asset initial percentage out of boundsdouble
initialWeight()
asset initial weightdouble
maximumWeight()
asset max weightdouble
minimumWeight()
asset min weight constraintjava.lang.String
name()
asset namedouble
optimalOut()
asset optimal percentage out of boundsdouble
optimalWeight()
asset optimal weight
-
-
-
Method Detail
-
id
java.lang.String id()
asset id- Returns:
- asset id
-
name
java.lang.String name()
asset name- Returns:
- asset name
-
minimumWeight
double minimumWeight()
asset min weight constraint- Returns:
- min weight in percent
-
initialWeight
double initialWeight()
asset initial weight- Returns:
- initial weight in percent
-
optimalWeight
double optimalWeight()
asset optimal weight- Returns:
- optimal weight in percent
-
maximumWeight
double maximumWeight()
asset max weight- Returns:
- max weight in percent
-
initialOut
double initialOut()
asset initial percentage out of bounds- Returns:
- initial out in percent
-
optimalOut
double optimalOut()
asset optimal percentage out of bounds- Returns:
- optimal out in percent
-
flag
java.lang.String flag()
constraint broken flag- Returns:
- true if optimal weight is out of bounds; false if not
-
-