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

com.hazelcast.org.apache.calcite.linq4j.EnumerableOrderedQueryable Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to you under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in compliance with
 * the License.  You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.hazelcast.org.apache.calcite.linq4j;

import com.hazelcast.org.apache.calcite.linq4j.function.Function1;
import com.hazelcast.org.apache.calcite.linq4j.tree.Expression;
import com.hazelcast.org.apache.calcite.linq4j.tree.FunctionExpression;

import com.hazelcast.org.checkerframework.checker.nullness.qual.Nullable;

import java.util.Comparator;

/**
 * Implementation of {@link OrderedQueryable} by an
 * {@link com.hazelcast.org.apache.calcite.linq4j.Enumerable}.
 *
 * @param  Element type
 */
class EnumerableOrderedQueryable extends EnumerableQueryable
    implements OrderedQueryable {
  EnumerableOrderedQueryable(Enumerable enumerable, Class rowType,
      QueryProvider provider, @Nullable Expression expression) {
    super(provider, rowType, expression, enumerable);
  }

  @Override public > OrderedQueryable thenBy(
      FunctionExpression> keySelector) {
    return QueryableDefaults.thenBy(asOrderedQueryable(), keySelector);
  }

  @Override public  OrderedQueryable thenBy(
      FunctionExpression> keySelector,
      Comparator comparator) {
    return QueryableDefaults.thenBy(asOrderedQueryable(), keySelector,
        comparator);
  }

  @Override public > OrderedQueryable thenByDescending(
      FunctionExpression> keySelector) {
    return QueryableDefaults.thenByDescending(asOrderedQueryable(),
        keySelector);
  }

  @Override public  OrderedQueryable thenByDescending(
      FunctionExpression> keySelector,
      Comparator comparator) {
    return QueryableDefaults.thenByDescending(asOrderedQueryable(), keySelector,
        comparator);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy