Uses of Class
org.mal_lang.langspec.ttc.TtcExpression
- 
Packages that use TtcExpression Package Description org.mal_lang.langspec Provides classes for creating and using MAL languages.org.mal_lang.langspec.builders Provides classes for building MAL languages.org.mal_lang.langspec.ttc Provides classes for TTC expressions and distributions. - 
- 
Uses of TtcExpression in org.mal_lang.langspec
Methods in org.mal_lang.langspec that return TtcExpression Modifier and Type Method Description TtcExpressionAttackStep. getLocalTtc()Returns the local TTC of thisAttackStepobject.TtcExpressionAttackStep. getTtc()Returns the TTC of thisAttackStepobject. - 
Uses of TtcExpression in org.mal_lang.langspec.builders
Methods in org.mal_lang.langspec.builders that return TtcExpression Modifier and Type Method Description TtcExpressionAttackStepBuilder. getTtc()Returns the TTC of thisAttackStepBuilderobject, ornullif no TTC has been set.Constructors in org.mal_lang.langspec.builders with parameters of type TtcExpression Constructor Description AttackStepBuilder(String name, AttackStepType type, Risk risk, TtcExpression ttc, StepsBuilder requires, StepsBuilder reaches)Constructs a newAttackStepBuilderobject. - 
Uses of TtcExpression in org.mal_lang.langspec.ttc
Subclasses of TtcExpression in org.mal_lang.langspec.ttc Modifier and Type Class Description classTtcAdditionImmutable class representing a TTC addition in a MAL language.classTtcBinaryOperationImmutable class representing a binary TTC operation in a MAL language.classTtcDivisionImmutable class representing a TTC division in a MAL language.classTtcExponentiationImmutable class representing a TTC exponentiation in a MAL language.classTtcFunctionImmutable class representing a TTC function in a MAL language.classTtcMultiplicationImmutable class representing a TTC multiplication in a MAL language.classTtcNumberImmutable class representing a TTC number in a MAL language.classTtcSubtractionImmutable class representing a TTC subtraction in a MAL language.Methods in org.mal_lang.langspec.ttc that return TtcExpression Modifier and Type Method Description static TtcExpressionTtcExpression. fromJson(JsonObject jsonTtcExpression)Creates a newTtcExpressionfrom aJsonObject.TtcExpressionTtcBinaryOperation. getLhs()Returns the left-hand side of thisTtcBinaryOperationobject.TtcExpressionTtcBinaryOperation. getRhs()Returns the right-hand side of thisTtcBinaryOperationobject.Constructors in org.mal_lang.langspec.ttc with parameters of type TtcExpression Constructor Description TtcAddition(TtcExpression lhs, TtcExpression rhs)Constructs a newTtcAdditionobject.TtcDivision(TtcExpression lhs, TtcExpression rhs)Constructs a newTtcDivisionobject.TtcExponentiation(TtcExpression lhs, TtcExpression rhs)Constructs a newTtcExponentiationobject.TtcMultiplication(TtcExpression lhs, TtcExpression rhs)Constructs a newTtcMultiplicationobject.TtcSubtraction(TtcExpression lhs, TtcExpression rhs)Constructs a newTtcSubtractionobject. 
 -