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

com.github.fartherp.framework.common.extension.Holder Maven / Gradle / Ivy

/*
 * Copyright (c) 2017. CK. All rights reserved.
 */
package com.github.fartherp.framework.common.extension;

/**
 * Helper Class for hold a value.
 *
 * @author william.liangf
 */
public class Holder {

    private volatile T value;

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

    public T get() {
        return value;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy