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

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

There is a newer version: 1.0.0
Show newest version
package com.github.grignaak.collections.impl;

@Beta
public 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