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

io.datakernel.common.ref.Ref Maven / Gradle / Ivy

package io.datakernel.common.ref;

public final class Ref {
	public T value;

	public Ref(T value) {
		this.value = value;
	}

	public Ref() {
		this(null);
	}

	public T get() {
		return value;
	}

	public void set(T peer) {
		this.value = peer;
	}

	public void unset() {
		this.value = null;
	}

	@Override
	public String toString() {
		return "→" + value;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy