com.github.andyshao.lang.Cleanable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Gear Show documentation
Show all versions of Gear Show documentation
Enhance and formating the coding of JDK
The newest version!
package com.github.andyshao.lang;
/**
*
* Title: Clean ability interface
* Descript: If a class implement this interface. It means that it support the
* clean action
* Copyright: Copryright(c) Feb 9, 2015
* Encoding:UNIX UTF-8
*
* @author Andy.Shao
*
*/
@FunctionalInterface
public interface Cleanable {
/**
* clean the memory
*/
public void clear();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy