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

com.talk2object.plum.model.entity.Entity Maven / Gradle / Ivy

package com.talk2object.plum.model.entity;
/**
 * model entity
 * 
 * @author jackding
 *
 * @param 
 */
public interface Entity {
	
	String getName();
	
	int getFieldSize();

	Field getField(int index);
	
	Field[] getFields();
	
	Object getFieldValue();
	
	T createNewInstance();
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy