
collections.Bundle Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Utilities Show documentation
Show all versions of Utilities Show documentation
Java Utilities library containing general use utilities
package collections;
/**
* A record that represents a bundle of three values of different types.
*
* @param the type of the first value in the bundle
* @param the type of the second value in the bundle
* @param the type of the third value in the bundle
*/
public record Bundle(A alpha, B beta, T theta) {}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy