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

io.permazen.tuple.Tuple4 Maven / Gradle / Ivy

The newest version!

/*
 * Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
 */

package io.permazen.tuple;

/**
 * A tuple of four values.
 *
 * 

* Instances are immutable. * * @param first value type * @param second value type * @param third value type * @param fourth value type */ public class Tuple4 extends AbstractHas4 { /** * Constructor. * * @param v1 the first value * @param v2 the second value * @param v3 the third value * @param v4 the fouth value */ public Tuple4(V1 v1, V2 v2, V3 v3, V4 v4) { super(v1, v2, v3, v4); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy