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

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

The newest version!

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

package org.jsimpledb.tuple;

/**
 * Implemented by tuples that have at least three values.
 */
public interface Has3 extends Has2 {

    /**
     * Get the third value.
     *
     * @return third value in this tuple
     */
    V3 getValue3();
}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy