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

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

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

import lombok.*;

import java.io.Serializable;

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

    @Setter(AccessLevel.NONE) protected F first;
    @Setter(AccessLevel.NONE) protected S second;
    @Setter(AccessLevel.NONE) protected T third;
    @Setter(AccessLevel.NONE) protected O fourth;

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy