| Package | Description |
|---|---|
| com.github.zafarkhaja.semver.expr |
This package contains classes that implement the SemVer Expressions.
|
| Modifier and Type | Class and Description |
|---|---|
class |
And
Expression for the logical "and" operator.
|
class |
Equal
Expression for the comparison "equal" operator.
|
class |
Greater
Expression for the comparison "greater than" operator.
|
class |
GreaterOrEqual
Expression for the comparison "greater than or equal to" operator.
|
class |
Less
Expression for the comparison "less than" operator.
|
class |
LessOrEqual
Expression for the comparison "less than or equal to" operator.
|
class |
Not
Expression for the logical "negation" operator.
|
class |
NotEqual
Expression for the comparison "not equal" operator.
|
class |
Or
Expression for the logical "or" operator.
|
| Modifier and Type | Method and Description |
|---|---|
Expression |
Not.getExpr() |
Expression |
And.getLeft() |
Expression |
Or.getLeft() |
Expression |
And.getRight() |
Expression |
Or.getRight() |
Expression |
ExpressionParser.parse(String input)
Parses the SemVer Expressions.
|
| Modifier and Type | Method and Description |
|---|---|
static Parser<Expression> |
ExpressionParser.newInstance()
Creates and returns new instance of the
ExpressionParser class. |
Copyright © 2016. All rights reserved.