
org.jsimpledb.parse.expr.BitwiseAndParser 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 bit-wise AND expressions of the form {@code x & y}. Also supports {@link java.util.Set} intersection.
*/
public class BitwiseAndParser extends BinaryExprParser {
public static final BitwiseAndParser INSTANCE = new BitwiseAndParser();
public BitwiseAndParser() {
super(EqualityParser.INSTANCE, Op.AND);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy