Uses of Interface
net.sourceforge.plantuml.jasic.Jasic.Expression
Packages that use Jasic.Expression
-
Uses of Jasic.Expression in net.sourceforge.plantuml.jasic
Subinterfaces of Jasic.Expression in net.sourceforge.plantuml.jasicModifier and TypeInterfaceDescriptionstatic interface
This is the base interface for a value.Classes in net.sourceforge.plantuml.jasic that implement Jasic.ExpressionModifier and TypeClassDescriptionclass
A numeric value.class
An operator expression evaluates two expressions and then performs some arithmetic operation on the results.class
A string value.class
A variable expression evaluates to the current value stored in that variable.Constructors in net.sourceforge.plantuml.jasic with parameters of type Jasic.ExpressionModifierConstructorDescriptionAssignStatement
(String name, Jasic.Expression value) IfThenStatement
(Jasic.Expression condition, String label) OperatorExpression
(Jasic.Expression left, char operator, Jasic.Expression right) PrintStatement
(Jasic.Expression expression)