クラス
javax.swing.RowFilterの使用

RowFilterを使用するパッケージ
パッケージ
説明
すべてのプラットフォーム上で可能なかぎり同じように機能する「軽量」(Java共通言語)コンポーネントのセットを提供します。
  • javax.swingでのRowFilterの使用

    RowFilterを返すjavax.swingのメソッド
    修飾子と型
    メソッド
    説明
    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)
    指定された基準を満たすDate値を少なくとも1つ以上持つエントリを含めるRowFilterを返します。
    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)
    指定された基準を満たすNumber値を少なくとも1つ以上持つエントリを含めるRowFilterを返します。
    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を返します。
    RowFilterのパラメータを持つjavax.swingのメソッド
    修飾子と型
    メソッド
    説明
    static <M, I> RowFilter<M,I>
    RowFilter.notFilter(RowFilter<M,I> filter)
    指定されたフィルタ条件にエントリが一致しない場合、一致しないエントリを示すRowFilterを返します。
    void
    DefaultRowSorter.setRowFilter(RowFilter<? super M,? super I> filter)
    必要に応じてビューに表示しない行を指定するフィルタを設定します。
    RowFilter型の型引数を持つjavax.swing内のメソッド・パラメータ
    修飾子と型
    メソッド
    説明
    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を返します。