org.jsimpledb.parse.expr.MultiplicativeExprParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-parse Show documentation
Show all versions of jsimpledb-parse Show documentation
JSimpleDB classes for parsing Java expressions.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.parse.expr;
/**
* Parses multiplicative expressions of the form {@code x & y}, {@code x / y}, and {@code x % y}.
*/
public class MultiplicativeExprParser extends BinaryExprParser {
public static final MultiplicativeExprParser INSTANCE = new MultiplicativeExprParser();
public MultiplicativeExprParser() {
super(CastExprParser.INSTANCE, Op.MULTIPLY, Op.DIVIDE, Op.MODULO);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy