io.permazen.tuple.Has5 Maven / Gradle / Ivy
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package io.permazen.tuple;
/**
* Implemented by tuples that have at least five values.
*/
public interface Has5 extends Has4 {
/**
* Get the fifth value.
*
* @return fifth value in this tuple
*/
V5 getValue5();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy