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

com.speedment.common.tuple.internal.nonnullable.mapper.Tuple0MapperImpl Maven / Gradle / Ivy

Go to download

A collection of Immutable Tuple classes that represent sets of a fixed length where every element has a specific type.

There is a newer version: 3.2.10
Show newest version
/**
 * 
 * Copyright (c) 2006-2017, Speedment, Inc. All Rights Reserved.
 * 
 * Licensed 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.speedment.common.tuple.internal.nonnullable.mapper;

import com.speedment.common.tuple.Tuple0;
import com.speedment.common.tuple.TupleMapper;
import com.speedment.common.tuple.Tuples;
import java.util.function.Function;

/**
 * An implementation class of a {@link TupleMapper } of degree 0
 * 
 * @param  Type of the original object for the mapper to use when creating a
 *            {@code Tuple }
 * 
 * @author Per Minborg
 */
public final class Tuple0MapperImpl implements TupleMapper {
    
    public final static Tuple0MapperImpl EMPTY_MAPPER = new Tuple0MapperImpl<>();
    
    /**
     * Constructs a {@link TupleMapper } that can create {@link Tuple0 }.
     */
    private Tuple0MapperImpl() {
        
    }
    
    @Override
    public Tuple0 apply(T t) {
        return Tuples.of(
            
        );
    }
    
    @Override
    public int degree() {
        return 0;
    }
    
    @Override
    public Function get(int index) {
        switch(index){
            
            default : throw new IndexOutOfBoundsException();
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy