Uses of Interface
com.github.zafarkhaja.semver.expr.Expression
Packages that use Expression
Package
Description
This is the root package of the Java SemVer library.
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 ExpressionModifier and TypeMethodDescriptionbooleanVersion.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 ExpressionModifier and TypeClassDescriptionclassThis class implements internal DSL for the SemVer Expressions using fluent interface.Classes in com.github.zafarkhaja.semver.expr that implement interfaces with type arguments of type ExpressionMethods in com.github.zafarkhaja.semver.expr that return ExpressionModifier and TypeMethodDescriptionParses the SemVer Expressions.Methods in com.github.zafarkhaja.semver.expr that return types with arguments of type ExpressionModifier and TypeMethodDescriptionstatic Parser<Expression> ExpressionParser.newInstance()Creates and returns new instance of theExpressionParserclass.Methods in com.github.zafarkhaja.semver.expr with parameters of type ExpressionModifier and TypeMethodDescriptionCompositeExpression.and(Expression expr) Adds anotherExpressiontoCompositeExpressionusingAndlogical expression.static CompositeExpressionCompositeExpression.Helper.not(Expression expr) Creates aCompositeExpressionwith an underlyingNotexpression.CompositeExpression.or(Expression expr) Adds anotherExpressiontoCompositeExpressionusingOrlogical expression.Constructors in com.github.zafarkhaja.semver.expr with parameters of type ExpressionModifierConstructorDescriptionConstructs aCompositeExpressionwith an underlyingExpression.