com.iofairy.tuple.Tuple1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of functional Show documentation
Show all versions of functional Show documentation
Functional Programming for Java 8+ and compatible with the modular system of Java 9+.
/*
* 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;
/**
* A tuple of 1 element
* 1个元素的元组
*
* @param type of the 1st element. 第1个元素的类型
* @since 0.0.1
*/
public class Tuple1 extends TupleBase {
private static final long serialVersionUID = 10065918001L;
/**
* The 1st element of this tuple.
*/
public final T _1;
/**
* Constructs a {@code Tuple1}. Tuple1构造器。
* @param _1 The value of 1st element
*/
public Tuple1(T _1) {
this._1 = _1;
}
@Override
public int arity() {
return 1;
}
@Override
@SuppressWarnings("unchecked")
public Tuple1 alias(TupleAlias... aliases) {
return (Tuple1)super.alias(aliases);
}
@Override
@SuppressWarnings("unchecked")
public Tuple1 alias(String... aliases) {
return (Tuple1)super.alias(aliases);
}
@Override
@SuppressWarnings("unchecked")
public Tuple1 copyAliases(Tuple tuple) {
return (Tuple1)super.copyAliases(tuple);
}
@Override
@SuppressWarnings("unchecked")
public T element(int n) {
switch (n) {
case 0:
return _1;
default:
throw new IndexOutOfBoundsException("Index out of range: " + n + ", Size: " + arity());
}
}
@Override
public Tuple1 copy() {
return Tuple.of(_1).copyAliases(this);
}
}