io.permazen.tuple.Tuple 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.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package io.permazen.tuple;
import java.util.List;
/**
* Implemented by all "tuple" classes.
*/
public interface Tuple {
/**
* Get the number of values in this tuple.
*
* @return the size of this tuple
*/
int getSize();
/**
* View this instance as a list.
*
* @return unmodifiable {@link List} view of this tuple
*/
List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy