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

com.github.grignaak.collections.Box Maven / Gradle / Ivy

The newest version!
package com.github.grignaak.collections;

class Box {
    private T boxed;

    public void box(T boxed) {
        this.boxed = boxed;
    }

    public T unbox() {
        return boxed;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy