org.lastaflute.di.util.tiger.Tuple4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lasta-di Show documentation
Show all versions of lasta-di Show documentation
DI Container for LastaFlute, super forked from Seasar as Java8
/*
* Copyright 2015-2021 the original author or authors.
*
* 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 org.lastaflute.di.util.tiger;
/**
* @author modified by jflute (originated in Seasar)
* @since 2.4.18
* @param
* @param
* @param
* @param
*/
public class Tuple4 {
protected T1 value1;
protected T2 value2;
protected T3 value3;
protected T4 value4;
public static Tuple4 tuple4(final T1 value1, final T2 value2, final T3 value3, final T4 value4) {
return new Tuple4(value1, value2, value3, value4);
}
public Tuple4() {
}
public Tuple4(final T1 value1, final T2 value2, final T3 value3, final T4 value4) {
this.value1 = value1;
this.value2 = value2;
this.value3 = value3;
this.value4 = value4;
}
public T1 getValue1() {
return value1;
}
public void setValue1(final T1 value1) {
this.value1 = value1;
}
public T2 getValue2() {
return value2;
}
public void setValue2(final T2 value2) {
this.value2 = value2;
}
public T3 getValue3() {
return value3;
}
public void setValue3(final T3 value3) {
this.value3 = value3;
}
public T4 getValue4() {
return value4;
}
public void setValue4(final T4 value4) {
this.value4 = value4;
}
@Override
public String toString() {
return "{" + value1 + ", " + value2 + ", " + value3 + ", " + value4 + "}";
}
}