io.ebeaninternal.server.expression.BitwiseOp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeaninternal.server.expression;
/**
* Bitwise expression operator.
*/
public enum BitwiseOp {
/**
* All flags are set (derived expression BITAND flags == flags).
*/
ALL,
/**
* Any flags are set (derived expression BITAND flags != 0).
*/
ANY,
/**
* BITAND flags == match.
*/
AND
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy