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

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

There is a newer version: 3.6.1
Show newest version

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

package org.jsimpledb.parse.expr;

/**
 * Parses bit-wise OR expressions of the form {@code x | y}. Also supports {@link java.util.Set} union.
 */
public class BitwiseOrParser extends BinaryExprParser {

    public static final BitwiseOrParser INSTANCE = new BitwiseOrParser();

    public BitwiseOrParser() {
        super(BitwiseXorParser.INSTANCE, Op.OR);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy