Uses of Class
javax.swing.RowFilter
-
Packages that use RowFilter 软件包 描述 javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。 -
-
Uses of RowFilter in javax.swing
Methods in javax.swing that return RowFilter 变量和类型 方法 描述 static <M,I>
RowFilter<M,I>RowFilter. andFilter(Iterable<? extends RowFilter<? super M,? super I>> filters)
如果所有提供的过滤器都包含条目,则返回包含条目的RowFilter
。static <M,I>
RowFilter<M,I>RowFilter. dateFilter(RowFilter.ComparisonType type, Date date, int... indices)
返回RowFilter
,其中包含至少一个Date
值满足指定条件的条目。RowFilter<? super M,? super I>
DefaultRowSorter. getRowFilter()
返回用于确定应从视图中隐藏哪些行(如果有)的过滤器。static <M,I>
RowFilter<M,I>RowFilter. notFilter(RowFilter<M,I> filter)
如果提供的过滤器不包含条目,则返回包含条目的RowFilter
。static <M,I>
RowFilter<M,I>RowFilter. numberFilter(RowFilter.ComparisonType type, Number number, int... indices)
返回RowFilter
,其中包含至少有一个Number
值满足指定条件的条目。static <M,I>
RowFilter<M,I>RowFilter. orFilter(Iterable<? extends RowFilter<? super M,? super I>> filters)
如果任何提供的过滤器包含条目,则返回包含条目的RowFilter
。static <M,I>
RowFilter<M,I>RowFilter. regexFilter(String regex, int... indices)
返回使用正则表达式确定要包含的条目的RowFilter
。Methods in javax.swing with parameters of type RowFilter 变量和类型 方法 描述 static <M,I>
RowFilter<M,I>RowFilter. notFilter(RowFilter<M,I> filter)
如果提供的过滤器不包含条目,则返回包含条目的RowFilter
。void
DefaultRowSorter. setRowFilter(RowFilter<? super M,? super I> filter)
设置用于确定应从视图中隐藏哪些行(如果有)的过滤器。Method parameters in javax.swing with type arguments of type RowFilter 变量和类型 方法 描述 static <M,I>
RowFilter<M,I>RowFilter. andFilter(Iterable<? extends RowFilter<? super M,? super I>> filters)
如果所有提供的过滤器都包含条目,则返回包含条目的RowFilter
。static <M,I>
RowFilter<M,I>RowFilter. orFilter(Iterable<? extends RowFilter<? super M,? super I>> filters)
如果任何提供的过滤器包含条目,则返回包含条目的RowFilter
。
-