
commons.box.app.bean.MetaAccess Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of commons-box-app Show documentation
Show all versions of commons-box-app Show documentation
Common utils for BOX projects.
The newest version!
package commons.box.app.bean;
import commons.box.app.DataName;
import java.util.Map;
import java.util.Set;
/**
*
*/
public interface MetaAccess extends DataName {
/**
* 获取目标类
*
* @return
*/
public Class type();
/**
* 获取属性
*
* @return
*/
public Map> props();
/**
* 获取属性名称
*
* @return
*/
public Set propNames();
/**
* 属性访问器
*
* @param name
* @return
*/
public MetaAccessProperty prop(String name);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy