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

lux.xquery.SortKey Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package lux.xquery;

import lux.xpath.AbstractExpression;
import lux.xpath.LiteralExpression;

public class SortKey {
    
    private final AbstractExpression key;
    private final LiteralExpression order;
    private final AbstractExpression collation;
    private final boolean emptyLeast;
    
    /**
     * Create a sort key; part of a for clause in a flwor expression
     * 
     * @param key the key to sort by
     * @param order ascending or descending
     * @param collation implementation-defined
     * @param emptyLeast 
     */
    public SortKey (AbstractExpression key, LiteralExpression order, AbstractExpression collation, boolean emptyLeast) {
        this.key = key;
        this.order = order;
        this.collation = collation;
        this.emptyLeast = emptyLeast;
        // language?
        // case order?
    }
    
    public void toString (StringBuilder buf ) {
        key.toString(buf);
        buf.append (' ');
        buf.append (order.getValue());
        if (collation != null) {
            buf.append (" collation ");
            buf.append (collation);
        }
        if (!emptyLeast) {
            buf.append (" empty greatest");
        }
    }

    public AbstractExpression getKey() {
        return key;
    }

    public LiteralExpression getOrder() {
        return order;
    }

    public AbstractExpression getCollation() {
        return collation;
    }

    public boolean isEmptyLeast() {
        return emptyLeast;
    }
}

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */




© 2015 - 2024 Weber Informatics LLC | Privacy Policy