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

commons.box.app.bean.MetaAccess Maven / Gradle / Ivy

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