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

org.nd4j.linalg.primitives.Quad Maven / Gradle / Ivy

There is a newer version: 1.0.0-M2.1
Show newest version
package org.nd4j.linalg.primitives;

import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.io.Serializable;

/**
 * Simple triple elements holder implementation
 * @author [email protected]
 */
@Data
@NoArgsConstructor
@AllArgsConstructor
@Builder
public class Quad implements Serializable {
    private static final long serialVersionUID = 119L;

    protected F first;
    protected S second;
    protected T third;
    protected O fourth;

    public static  Quad quadOf(F first, S second, T third, O fourth) {
        return new Quad<>(first, second, third, fourth);
    }

    public static  Quad of(F first, S second, T third, O fourth) {
        return new Quad<>(first, second, third, fourth);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy