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

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

The newest version!

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

package io.permazen.tuple;

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

    /**
     * Get the second value.
     *
     * @return second value in this tuple
     */
    V2 getValue2();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy