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

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

The newest version!

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

package org.jsimpledb.parse.expr;

/**
 * Parses shift expressions of the form {@code x << y}, {@code x >> y}, and {@code x >>> y}.
 */
public class ShiftExprParser extends BinaryExprParser {

    public static final ShiftExprParser INSTANCE = new ShiftExprParser();

    public ShiftExprParser() {
        super(AdditiveExprParser.INSTANCE, Op.LSHIFT, Op.URSHIFT, Op.RSHIFT);
    }
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy