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

com.xiaoleilu.hutool.mutable.Mutable Maven / Gradle / Ivy

There is a newer version: 3.3.2
Show newest version
package com.xiaoleilu.hutool.mutable;

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

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

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy