![JAR search and dependency download from the Maven repository](/logo.png)
org.jsimpledb.tuple.Has4 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsimpledb-util Show documentation
Show all versions of jsimpledb-util Show documentation
Common utility classes used by JSimpleDB.
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package org.jsimpledb.tuple;
/**
* Implemented by tuples that have at least four values.
*/
public interface Has4 extends Has3 {
/**
* Get the fourth value.
*
* @return fourth value in this tuple
*/
V4 getValue4();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy