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

cn.banny.rp.Attribute Maven / Gradle / Ivy

The newest version!
/**
 * 
 */
package cn.banny.rp;

/**
 * @author zhkl0228
 *
 */
public interface Attribute {
	
	void set(Object obj);
	void remove();
	
	 T get(Class clazz);
	
	String getString();
	int getInt();
	long getLong();
	boolean getBoolean();
	short getShort();
	float getFloat();
	double getDouble();
	byte getByte();
	
	void add();
	
	boolean hasValue();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy