|
Java™ Platform Standard Ed. 6 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<RowFilter.ComparisonType> javax.swing.RowFilter.ComparisonType
public static enum RowFilter.ComparisonType
Enumeration of the possible comparison values supported by
some of the default RowFilter
s.
RowFilter
Enum Constant Summary | |
---|---|
AFTER
Indicates that entries with a value after the supplied value should be included. |
|
BEFORE
Indicates that entries with a value before the supplied value should be included. |
|
EQUAL
Indicates that entries with a value equal to the supplied value should be included. |
|
NOT_EQUAL
Indicates that entries with a value not equal to the supplied value should be included. |
Method Summary | |
---|---|
static RowFilter.ComparisonType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static RowFilter.ComparisonType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final RowFilter.ComparisonType BEFORE
public static final RowFilter.ComparisonType AFTER
public static final RowFilter.ComparisonType EQUAL
public static final RowFilter.ComparisonType NOT_EQUAL
Method Detail |
---|
public static RowFilter.ComparisonType[] values()
for (RowFilter.ComparisonType c : RowFilter.ComparisonType.values()) System.out.println(c);
public static RowFilter.ComparisonType valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
Java™ Platform Standard Ed. 6 |
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
Copyright © 1993, 2010, Oracle and/or its affiliates. All rights reserved.