blob: 82a19db7a7f615bd20fc4d7c0b416f17f8804e5e [file] [log] [blame]
/*
* 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 org.apache.groovy.ginq.provider.collection.runtime;
import groovy.lang.Tuple2;
import java.util.Collections;
import java.util.List;
/**
* Represents partition
*
* @param <T> the type of element
* @since 4.0.0
*/
public interface Partition<T> extends Queryable<T> {
/**
* Represents the empty Partition instance
* @since 4.0.0
*/
Partition EMPTY_PARTITION = new PartitionImpl(Collections.emptyList());
/**
* Factory method to create {@link Partition} instance
*
* @param listWithIndex the list with index
* @param <T> the type of element
* @return the {@link Partition} instance
* @since 4.0.0
*/
static <T> Partition<Tuple2<T, Long>> of(List<Tuple2<T, Long>> listWithIndex) {
return new PartitionImpl<>(listWithIndex);
}
/**
* Returns the empty Partition instance
*
* @param <T> the type of element
* @return the empty Partition instance
* @since 4.0.0
*/
static <T> Partition<T> emptyPartition() {
return (Partition<T>) EMPTY_PARTITION;
}
}