
com.iofairy.tuple.EasyTuple7 Maven / Gradle / Ivy
/*
* 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 7 same type elements
* 具有相同类型的7个元素的元组
*
* @param type of elements. 元素的类型
* @since 0.0.1
*/
public class EasyTuple7 extends Tuple7 implements EasyTuple {
private static final long serialVersionUID = 10065918017L;
public EasyTuple7(T _1, T _2, T _3, T _4, T _5, T _6, T _7) {
super(_1, _2, _3, _4, _5, _6, _7);
}
@Override
@SuppressWarnings("unchecked")
public T __(TupleAlias alias) {
return super.__(alias);
}
@Override
@SuppressWarnings("unchecked")
public T __(String alias) {
return super.__(alias);
}
@Override
public EasyTuple7 alias(TupleAlias... aliases) {
return (EasyTuple7)super.alias(aliases);
}
@Override
public EasyTuple7 alias(String... aliases) {
return (EasyTuple7)super.alias(aliases);
}
@Override
public EasyTuple7 copyAliases(Tuple tuple) {
return (EasyTuple7)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 EasyTuple7 copy() {
return EasyTuple.of(_1, _2, _3, _4, _5, _6, _7).copyAliases(this);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy