Interface TemporalExpr
-
- All Known Implementing Classes:
MethodCallExpr,TimeValueExpr
public interface TemporalExpr extends Expr
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default Optional<TemporalExpr>asTime()Get this expression as a time expressiondefault booleanisTime()Check if this expression is a time expresion.-
Methods inherited from interface org.n52.svalbard.odata.core.expr.Expr
accept, asArithmetic, asBinary, asBoolean, asBooleanBinary, asBooleanUnary, asComparison, asGeometry, asMember, asMethodCall, asNumericValue, asTextValue, asUnary, isArithmetic, isBinary, isBoolean, isBooleanBinary, isBooleanUnary, isComparison, isGeometry, isMember, isMethodCall, isNumericValue, isTextValue, isUnary
-
Methods inherited from interface org.n52.shetland.oasis.odata.ODataExpr
toODataString
-
-
-
-
Method Detail
-
isTime
default boolean isTime()
Description copied from interface:ExprCheck if this expression is a time expresion.
-
asTime
default Optional<TemporalExpr> asTime()
Description copied from interface:ExprGet this expression as a time expression
-
-