Uses of Class
org.mal_lang.langspec.builders.step.StepExpressionBuilder
- 
Packages that use StepExpressionBuilder Package Description org.mal_lang.langspec.builders Provides classes for building MAL languages.org.mal_lang.langspec.builders.step Provides classes for building step expressions.org.mal_lang.langspec.step Provides classes for step expressions. - 
- 
Uses of StepExpressionBuilder in org.mal_lang.langspec.builders
Methods in org.mal_lang.langspec.builders that return StepExpressionBuilder Modifier and Type Method Description StepExpressionBuilderVariableBuilder. getStepExpression()Returns the step expression of thisVariableBuilderobject.Methods in org.mal_lang.langspec.builders that return types with arguments of type StepExpressionBuilder Modifier and Type Method Description List<StepExpressionBuilder>StepsBuilder. getStepExpressions()Returns a list of all step expressions in thisStepsBuilderobject.Methods in org.mal_lang.langspec.builders with parameters of type StepExpressionBuilder Modifier and Type Method Description StepsBuilderStepsBuilder. addStepExpression(StepExpressionBuilder stepExpression)Adds a step expression to thisStepsBuilderobject.Constructors in org.mal_lang.langspec.builders with parameters of type StepExpressionBuilder Constructor Description VariableBuilder(String name, StepExpressionBuilder stepExpression)Constructs a newVariableBuilderobject. - 
Uses of StepExpressionBuilder in org.mal_lang.langspec.builders.step
Subclasses of StepExpressionBuilder in org.mal_lang.langspec.builders.step Modifier and Type Class Description classStepAttackStepBuilderA builder for creatingStepAttackStepobjects.classStepBinaryOperationBuilderA builder for creatingStepBinaryOperationobjects.classStepCollectBuilderA builder for creatingStepCollectobjects.classStepDifferenceBuilderA builder for creatingStepDifferenceobjects.classStepFieldBuilderA builder for creatingStepFieldobjects.classStepIntersectionBuilderA builder for creatingStepIntersectionobjects.classStepReferenceBuilderA builder for creatingStepReferenceobjects.classStepSubTypeBuilderA builder for creatingStepSubTypeobjects.classStepTransitiveBuilderA builder for creatingStepTransitiveobjects.classStepUnionBuilderA builder for creatingStepUnionobjects.classStepVariableBuilderA builder for creatingStepVariableobjects.Methods in org.mal_lang.langspec.builders.step that return StepExpressionBuilder Modifier and Type Method Description static StepExpressionBuilderStepExpressionBuilder. fromJson(JsonObject jsonStepExpression)Creates a newStepExpressionBuilderfrom aJsonObject.StepExpressionBuilderStepBinaryOperationBuilder. getLhs()Returns the left-hand side of thisStepBinaryOperationBuilderobject.StepExpressionBuilderStepBinaryOperationBuilder. getRhs()Returns the right-hand side of thisStepBinaryOperationBuilderobject.StepExpressionBuilderStepSubTypeBuilder. getStepExpression()Returns the step expression of thisStepSubTypeBuilderobject.StepExpressionBuilderStepTransitiveBuilder. getStepExpression()Returns the step expression of thisStepTransitiveBuilderobject.Constructors in org.mal_lang.langspec.builders.step with parameters of type StepExpressionBuilder Constructor Description StepBinaryOperationBuilder(StepExpressionBuilder lhs, StepExpressionBuilder rhs)Constructs a newStepBinaryOperationBuilderobject.StepCollectBuilder(StepExpressionBuilder lhs, StepExpressionBuilder rhs)Constructs a newStepCollectBuilderobject.StepDifferenceBuilder(StepExpressionBuilder lhs, StepExpressionBuilder rhs)Constructs a newStepDifferenceBuilderobject.StepIntersectionBuilder(StepExpressionBuilder lhs, StepExpressionBuilder rhs)Constructs a newStepIntersectionBuilderobject.StepSubTypeBuilder(String subType, StepExpressionBuilder stepExpression)Constructs a newStepSubTypeBuilderobject.StepTransitiveBuilder(StepExpressionBuilder stepExpression)Constructs a newStepTransitiveBuilderobject.StepUnionBuilder(StepExpressionBuilder lhs, StepExpressionBuilder rhs)Constructs a newStepUnionBuilderobject. - 
Uses of StepExpressionBuilder in org.mal_lang.langspec.step
Methods in org.mal_lang.langspec.step with parameters of type StepExpressionBuilder Modifier and Type Method Description static StepExpressionStepExpression. fromBuilder(StepExpressionBuilder builder, Asset sourceAsset, Map<String,Asset> assets, Map<Variable,Asset> variableTargets)Creates a newStepExpressionobject from aStepExpressionBuilder. 
 -