io.permazen.tuple.Tuple1 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permazen-util Show documentation
Show all versions of permazen-util Show documentation
Common utility classes used by Permazen.
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package io.permazen.tuple;
/**
* A "tuple" of one value.
*
*
* Instances are immutable.
*
* @param value type
*/
public class Tuple1 extends AbstractHas1 {
/**
* Constructor.
*
* @param v1 the value
*/
public Tuple1(V1 v1) {
super(v1);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy