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

com.dottydingo.hyperion.client.builder.query.LogicalOperator Maven / Gradle / Ivy

The newest version!
package com.dottydingo.hyperion.client.builder.query;

/**
 * Logical operators
 */
public enum LogicalOperator
{
    AND(";"),
    OR(",");


    public String getValue()
    {
        return value;
    }

    private String value;

    LogicalOperator(String value)
    {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy