com.davidbracewell.tuple.Tuple4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mango Show documentation
Show all versions of mango Show documentation
A set of utilities and tools to speed up and ease programming in Java.
/*
* (c) 2005 David B. Bracewell
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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.davidbracewell.tuple;
import lombok.Getter;
import lombok.Setter;
/**
* The type Tuple 4.
*
* @param the type parameter
* @param the type parameter
* @param the type parameter
* @param the type parameter
* @author David B. Bracewell
*/
@Getter
@Setter
public class Tuple4 extends Tuple {
private static final long serialVersionUID = 1L;
/**
* the first value
*/
public final A v1;
/**
* The second value
*/
public final B v2;
/**
* The third value
*/
public final C v3;
/**
* The fourth value
*/
public final D v4;
/**
* Instantiates a new Tuple 4.
*
* @param a the first value
* @param b the second value
* @param c the third value
* @param d the fourth value
*/
public Tuple4(A a, B b, C c, D d) {
this.v1 = a;
this.v2 = b;
this.v3 = c;
this.v4 = d;
}
/**
* Of tuple 4.
*
* @param the type parameter
* @param the type parameter
* @param the type parameter
* @param the type parameter
* @param a the a
* @param b the b
* @param c the c
* @param d the d
* @return the tuple 4
*/
public static Tuple4 of(A a, B b, C c, D d) {
return new Tuple4<>(a, b, c, d);
}
@Override
public Tuple4 copy() {
return new Tuple4<>(this.v1, this.v2, this.v3, this.v4);
}
@Override
public int degree() {
return 4;
}
@Override
public Object[] array() {
return new Object[]{v1, v2, v3, v4};
}
@Override
public String toString() {
return "(" + v1 + ", " + v2 + "," + v3 + "," + v4 + ")";
}
@Override
public Tuple3 shiftLeft() {
return Tuple3.of(v2, v3, v4);
}
@Override
public Tuple3 shiftRight() {
return Tuple3.of(v1, v2, v3);
}
}//END OF Tuple2
© 2015 - 2025 Weber Informatics LLC | Privacy Policy