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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 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
,其中包含条目。
-