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 boolean
Version. 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 class
CompositeExpression
This 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 Expression
ExpressionParser. 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 theExpressionParser
class.Methods in com.github.zafarkhaja.semver.expr with parameters of type Expression Modifier and Type Method Description CompositeExpression
CompositeExpression. and(Expression expr)
Adds anotherExpression
toCompositeExpression
usingAnd
logical expression.static CompositeExpression
CompositeExpression.Helper. not(Expression expr)
Creates aCompositeExpression
with an underlyingNot
expression.CompositeExpression
CompositeExpression. or(Expression expr)
Adds anotherExpression
toCompositeExpression
usingOr
logical expression.Constructors in com.github.zafarkhaja.semver.expr with parameters of type Expression Constructor Description CompositeExpression(Expression expr)
Constructs aCompositeExpression
with an underlyingExpression
.
-