JavaTM 2 Platform
Standard Ed. 6

javax.swing.table
类 TableStringConverter

java.lang.Object
  继承者 javax.swing.table.TableStringConverter

public abstract class TableStringConverter
extends Object

TableStringConverter 用于将对象从模型转换为字符串。当模型返回不具有有意义的 toString 实现的对象时,此类用于过滤和搜索操作。

从以下版本开始:
1.6

构造方法摘要
TableStringConverter()
           
 
方法摘要
abstract  String toString(TableModel model, int row, int column)
          返回指定位置处值的字符串表示形式。
 
从类 java.lang.Object 继承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

构造方法详细信息

TableStringConverter

public TableStringConverter()
方法详细信息

toString

public abstract String toString(TableModel model,
                                int row,
                                int column)
返回指定位置处值的字符串表示形式。

参数:
model - 要从中获取值的 TableModel
row - 向其请求字符串的行
column - 向其请求字符串的列
返回:
字符串表示形式。此方法不返回 null。
抛出:
NullPointerException - 如果 model 为 null
IndexOutOfBoundsException - 如果参数超出模型的范围

JavaTM 2 Platform
Standard Ed. 6

提交错误或意见

版权所有 2008 Sun Microsystems, Inc. 保留所有权利。请遵守GNU General Public License, version 2 only