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

com.github.housepower.jdbc.misc.Container Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package com.github.housepower.jdbc.misc;

public class Container {
    private final T left;
    private final T right;

    private boolean isLeft = true;

    public Container(T left, T right) {
        this.left = left;
        this.right = right;
    }

    public void select(boolean isRight) {
        isLeft = (isLeft == isRight) ? !isRight : isLeft;
    }

    public T get() {
        return isLeft ? left : right;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy