public static final enum

RowFilter.ComparisonType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ javax.swing.RowFilter.ComparisonType

Class Overview

Enumeration of the possible comparison values supported by some of the default RowFilters.

See Also

Summary

Enum Values
RowFilter.ComparisonType  AFTER  Indicates that entries with a value after the supplied value should be included. 
RowFilter.ComparisonType  BEFORE  Indicates that entries with a value before the supplied value should be included. 
RowFilter.ComparisonType  EQUAL  Indicates that entries with a value equal to the supplied value should be included. 
RowFilter.ComparisonType  NOT_EQUAL  Indicates that entries with a value not equal to the supplied value should be included. 
Public Methods
static RowFilter.ComparisonType valueOf(String name)
final static ComparisonType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final RowFilter.ComparisonType AFTER

Indicates that entries with a value after the supplied value should be included.

public static final RowFilter.ComparisonType BEFORE

Indicates that entries with a value before the supplied value should be included.

public static final RowFilter.ComparisonType EQUAL

Indicates that entries with a value equal to the supplied value should be included.

public static final RowFilter.ComparisonType NOT_EQUAL

Indicates that entries with a value not equal to the supplied value should be included.

Public Methods

public static RowFilter.ComparisonType valueOf (String name)

public static final ComparisonType[] values ()