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

com.github.zhangxd1989.basetool.lang.mutable.Mutable Maven / Gradle / Ivy

package com.github.zhangxd1989.basetool.lang.mutable;

/**
 * 提供可变值类型接口
 *
 * @param  值得类型
 * @author sheldon
 */
public interface Mutable {

    /**
     * 获得原始值
     *
     * @return 原始值
     */
    T get();

    /**
     * 设置值
     *
     * @param value 值
     */
    void set(T value);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy