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

org.nd4j.linalg.primitives.ImmutablePair 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 pair implementation
 *
 * @author [email protected]
 */
@AllArgsConstructor
@Data
@Builder
public class ImmutablePair implements Serializable {
    private static final long serialVersionUID = 119L;

    protected ImmutablePair() {
        //
    }

    @Setter(AccessLevel.NONE) protected K key;
    @Setter(AccessLevel.NONE) protected V value;

    public K getLeft() {
        return key;
    }

    public V getRight() {
        return value;
    }

    public K getFirst() {
        return key;
    }

    public V getSecond() {
        return value;
    }


    public static  ImmutablePair of(T key, E value) {
        return new ImmutablePair(key, value);
    }

    public static  ImmutablePair makePair(T key, E value) {
        return new ImmutablePair(key, value);
    }

    public static  ImmutablePair create(T key, E value) {
        return new ImmutablePair(key, value);
    }

    public static  ImmutablePair pairOf(T key, E value) {
        return new ImmutablePair(key, value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy