RowFilter的相关函数

Module java.desktop

Package javax.swing

Class RowFilter

  • java.lang.Object
    • javax.swing.RowFilter
  • Type Parameters:

    M - the type of the model; for example PersonModel

    I - the type of the identifier; when using TableRowSorter this will be Integer

RowFilter用于过滤模型中的条目,这样它们就不会显示在视图中。
例如,与JTable关联的行过滤器可能只允许包含具有特定字符串的列的行。条目的含义取决于组件类型。例如,当一个过滤器与一个JTable相关联时,一个条目对应一行;当与JTree关联时,一个条目对应于一个节点。

public abstract boolean include​(RowFilter.Entry entry)

如果要显示指定的项,则返回true;
如果条目应该隐藏,则返回false。entry参数仅在调用期间有效。调用返回后使用entry将导致未定义的行为

 

 

 

你可能感兴趣的:(Java,GUI(JDK类说明))