⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rowdataintrospector.java

📁 esri的ArcGIS Server超级学习模板程序(for java)
💻 JAVA
字号:
package com.esri.solutions.jitk.web.data.results;

public interface RowDataIntrospector {
    
    /**
     * Return the column names for the specified row data.
     * 
     * @param rowData the row data to introspect
     * 
     * @return the column names for the specified row data object
     * 
     * @throws ClassCastException if the row data is not of the correct type
     */
    public String[] getColumnNames(Object rowData);
    
    /**
     * Return the column values for the specified row data and specified columns.
     * 
     * @param rowData the row data to introspect
     * @param columnsNames the columns for which to return values
     * 
     * @return the column values for the specified row data
     * 
     * @throws ClassCastException if the row data is not of the correct type
     */
    public Object[] getValues(Object rowData, String[] columnNames);

    
    /**
     * Return the names of the available actions for the specified row data.
     *  
     * @param rowData the row data to introspect
     * 
     * @return the available action names
     */
    public String[] getActions(Object rowData);
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -