io.army.criteria.impl.PostgreBooleanUnaryOperator Maven / Gradle / Ivy
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