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

com.wselwood.mpcreader.columns.Container Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
package com.wselwood.mpcreader.columns;

/**
 * A container class to hold values as we work.
 *
 * Created by wselwood on 14/04/14.
 */
public class Container {

    T value = null;

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

    public T get() {
        return value;
    }

    public void reset() {
        value = null;
    }

    @Override
    public String toString() {
        return "Container{" +
                "value=" + value +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy