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

com.tangosol.coherence.dslquery.operator.DivisionOperator Maven / Gradle / Ivy

There is a newer version: 24.03
Show newest version
/*
 * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
 *
 * Licensed under the Universal Permissive License v 1.0 as shown at
 * http://oss.oracle.com/licenses/upl.
 */
package com.tangosol.coherence.dslquery.operator;

import com.tangosol.coherence.dsltools.precedence.InfixOPToken;
import com.tangosol.coherence.dsltools.precedence.OPToken;
import com.tangosol.coherence.dsltools.precedence.TokenTable;

/**
 * An operator representing the conditional mathematical division operation.
 *
 * @author jk 2013.12.03
 * @since Coherence 12.2.1
 */
public class DivisionOperator
        extends BaseOperator
    {
    // ----- constructors ---------------------------------------------------

    /**
     * Construct a DivisionOperator.
     */
    protected DivisionOperator()
        {
        super("/", false);
        }

    // ----- BaseOperator methods -------------------------------------------

    /**
     * Add this operator to the given {@link TokenTable}.
     * This typically means adding this operator
     * using its symbol and also adding any aliases.
     *
     * @param tokenTable the TokenTable to add this operator to.
     */
    @Override
    public void addToTokenTable(TokenTable tokenTable)
        {
        InfixOPToken token = new InfixOPToken(f_sSymbol, OPToken.PRECEDENCE_PRODUCT, OPToken.BINARY_OPERATOR_NODE);

        tokenTable.addToken(token);
        }

    // ----- constants ------------------------------------------------------

    /**
     * An instance of the DivisionOperator.
     */
    public static final DivisionOperator INSTANCE = new DivisionOperator();
    }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy