Uses of Interface
com.github.zafarkhaja.semver.expr.Expression
-
Packages that use Expression Package Description com.github.zafarkhaja.semver This is the root package of the Java SemVer library.com.github.zafarkhaja.semver.expr This package contains classes that implement the SemVer Expressions. -
-
Uses of Expression in com.github.zafarkhaja.semver
Methods in com.github.zafarkhaja.semver with parameters of type Expression Modifier and Type Method Description booleanVersion. satisfies(Expression expr)Checks if this version satisfies the specified SemVer Expression. -
Uses of Expression in com.github.zafarkhaja.semver.expr
Classes in com.github.zafarkhaja.semver.expr that implement Expression Modifier and Type Class Description classCompositeExpressionThis class implements internal DSL for the SemVer Expressions using fluent interface.Methods in com.github.zafarkhaja.semver.expr that return Expression Modifier and Type Method Description ExpressionExpressionParser. parse(java.lang.String input)Parses the SemVer Expressions.Methods in com.github.zafarkhaja.semver.expr that return types with arguments of type Expression Modifier and Type Method Description static Parser<Expression>ExpressionParser. newInstance()Creates and returns new instance of theExpressionParserclass.Methods in com.github.zafarkhaja.semver.expr with parameters of type Expression Modifier and Type Method Description CompositeExpressionCompositeExpression. and(Expression expr)Adds anotherExpressiontoCompositeExpressionusingAndlogical expression.static CompositeExpressionCompositeExpression.Helper. not(Expression expr)Creates aCompositeExpressionwith an underlyingNotexpression.CompositeExpressionCompositeExpression. or(Expression expr)Adds anotherExpressiontoCompositeExpressionusingOrlogical expression.Constructors in com.github.zafarkhaja.semver.expr with parameters of type Expression Constructor Description CompositeExpression(Expression expr)Constructs aCompositeExpressionwith an underlyingExpression.
-