All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jsimpledb.parse.expr.EqualityParser Maven / Gradle / Ivy

The newest version!

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package org.jsimpledb.parse.expr;

/**
 * Parses equality expressions of the form {@code x == y} or {@code x != y}.
 */
public class EqualityParser extends BinaryExprParser {

    public static final EqualityParser INSTANCE = new EqualityParser();

    public EqualityParser() {
        super(RelationalExprParser.INSTANCE, Op.EQUAL, Op.NOT_EQUAL);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy