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

io.army.criteria.impl.PostgreBooleanUnaryOperator Maven / Gradle / Ivy

There is a newer version: 0.6.6
Show newest version
package io.army.criteria.impl;

enum PostgreBooleanUnaryOperator {

    /**
     * @see ?- line → boolean
* ?- lseg → boolean
* Is line horizontal? */ QUESTION_HYPHEN(" ?-"), /** * @see
?| line → boolean
* ?| lseg → boolean
* Is line vertical? */ QUESTION_VERTICAL(" ?|"); final String spaceOperator; PostgreBooleanUnaryOperator(String spaceOperator) { this.spaceOperator = spaceOperator; } @Override public final String toString() { return CriteriaUtils.enumToString(this); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy