io.tiler.internal.queries.expressions.Expression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiler Show documentation
Show all versions of tiler Show documentation
Plugable dashboard framework
package io.tiler.internal.queries.expressions;
public abstract class Expression {
public abstract Object evaluate(Object leftHandValue) throws InvalidExpressionException;
}