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

com.iofairy.tuple.EasyTuple9 Maven / Gradle / Ivy

Go to download

Functional Programming for Java 8+ and compatible with the modular system of Java 9+.

There is a newer version: 0.5.10
Show newest version
/*
 * Copyright (C) 2021 iofairy, 
 *
 * 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.iofairy.tuple;

import java.util.List;
import java.util.Map;

/**
 * A tuple of 9 same type elements
* 具有相同类型的9个元素的元组 * * @param type of elements. 元素的类型 * @since 0.0.1 */ public class EasyTuple9 extends Tuple9 implements EasyTuple { private static final long serialVersionUID = 10065918019L; public EasyTuple9(T _1, T _2, T _3, T _4, T _5, T _6, T _7, T _8, T _9) { super(_1, _2, _3, _4, _5, _6, _7, _8, _9); } @Override @SuppressWarnings("unchecked") public T __(TupleAlias alias) { return super.__(alias); } @Override @SuppressWarnings("unchecked") public T __(String alias) { return super.__(alias); } @Override public EasyTuple9 alias(TupleAlias... aliases) { return (EasyTuple9)super.alias(aliases); } @Override public EasyTuple9 alias(String... aliases) { return (EasyTuple9)super.alias(aliases); } @Override public EasyTuple9 copyAliases(Tuple tuple) { return (EasyTuple9)super.copyAliases(tuple); } @Override @SuppressWarnings("unchecked") public Map toMap() { return super.toMap(); } @Override @SuppressWarnings("unchecked") public T element(int n) { return super.element(n); } @Override @SuppressWarnings("unchecked") public Tuple2 elementWithTupleAlias(int n) { return super.elementWithTupleAlias(n); } @Override @SuppressWarnings("unchecked") public Tuple2 elementWithAlias(int n) { return super.elementWithAlias(n); } @Override @SuppressWarnings("unchecked") public List toList() { return EasyTuple.super.toList(); } @Override public EasyTuple9 copy() { return EasyTuple.of(_1, _2, _3, _4, _5, _6, _7, _8, _9).copyAliases(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy