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

org.jsimpledb.tuple.Tuple5 Maven / Gradle / Ivy

There is a newer version: 3.6.1
Show newest version

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

package org.jsimpledb.tuple;

/**
 * A tuple of five values.
 *
 * 

* Instances are immutable. *

* * @param first value type * @param second value type * @param third value type * @param fourth value type * @param fifth value type */ public class Tuple5 extends AbstractHas5 { /** * Constructor. * * @param v1 the first value * @param v2 the second value * @param v3 the third value * @param v4 the fouth value * @param v5 the fifth value */ public Tuple5(V1 v1, V2 v2, V3 v3, V4 v4, V5 v5) { super(v1, v2, v3, v4, v5); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy