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

io.polaris.core.tuple.Tuple1 Maven / Gradle / Ivy

There is a newer version: 3.2.1
Show newest version
package io.polaris.core.tuple;

import lombok.*;

import java.io.Serializable;

/**
 * @author Qt
 * @since 1.8
 */
@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode
@ToString
public class Tuple1 implements Tuple, Serializable {

	private static final long serialVersionUID = 1L;
	private T1 first;

	public static  Tuple1 of(T1 first) {
		return new Tuple1<>(first);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy