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