Uses of Interface
de.redsix.dmncheck.feel.FeelExpression
Packages that use FeelExpression
-
Uses of FeelExpression in de.redsix.dmncheck.feel
Classes in de.redsix.dmncheck.feel that implement FeelExpressionModifier and TypeClassDescriptionstatic final record
static final record
static final record
static final record
static final record
static final record
static final record
static final record
static final record
static final record
static final record
static final record
Methods in de.redsix.dmncheck.feel that return FeelExpressionModifier and TypeMethodDescriptionFeelExpression.UnaryExpression.expression()
Returns the value of theexpression
record component.FeelExpression.DisjunctionExpression.head()
Returns the value of thehead
record component.FeelExpression.BinaryExpression.left()
Returns the value of theleft
record component.FeelExpression.RangeExpression.lowerBound()
Returns the value of thelowerBound
record component.FeelExpression.BinaryExpression.right()
Returns the value of theright
record component.FeelExpression.DisjunctionExpression.tail()
Returns the value of thetail
record component.FeelExpression.RangeExpression.upperBound()
Returns the value of theupperBound
record component.Methods in de.redsix.dmncheck.feel that return types with arguments of type FeelExpressionModifier and TypeMethodDescriptionFeelParser.parse
(Expression expression) FeelParser.parse
(CharSequence charSequence) Methods in de.redsix.dmncheck.feel with parameters of type FeelExpressionModifier and TypeMethodDescriptionFeelExpression.subsumes
(FeelExpression expression) FeelTypecheck.typecheck
(FeelExpression expression) FeelTypecheck.typecheck
(FeelTypecheck.Context context, FeelExpression expression) Constructors in de.redsix.dmncheck.feel with parameters of type FeelExpressionModifierConstructorDescriptionBinaryExpression
(FeelExpression left, Operator operator, FeelExpression right) Creates an instance of aBinaryExpression
record class.DisjunctionExpression
(FeelExpression head, FeelExpression tail) Creates an instance of aDisjunctionExpression
record class.RangeExpression
(boolean isLeftInclusive, FeelExpression lowerBound, FeelExpression upperBound, boolean isRightInclusive) Creates an instance of aRangeExpression
record class.UnaryExpression
(Operator operator, FeelExpression expression) Creates an instance of aUnaryExpression
record class.