|
Préférences
Moteurs de recherche
|
||||||||||||||||||
JavaTM 2 Platform Std. Ed. v1.6.0
javax.swing
|
Constructor Summary | |
---|---|
RowFilter.Entry()
Creates an Entry . |
Method Summary | |
---|---|
abstract I |
getIdentifier()
Returns the identifer (in the model) of the entry. |
abstract M |
getModel()
Returns the underlying model. |
String |
getStringValue(int index)
Returns the string value at the specified index. |
abstract Object |
getValue(int index)
Returns the value at the specified index. |
abstract int |
getValueCount()
Returns the number of values in the entry. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public RowFilter.Entry()
Entry
.
Method Detail |
---|
public abstract M getModel()
public abstract int getValueCount()
public abstract Object getValue(int index)
null
. When used with a table, index
corresponds to the column number in the model.
index
- the index of the value to get
IndexOutOfBoundsException
- if index < 0 or
>= getValueCountpublic String getStringValue(int index)
String
values
this method is preferred to that of getValue
as getValue(index).toString()
may return a
different result than getStringValue(index)
.
This implementation calls getValue(index).toString()
after checking for null
. Subclasses that provide
different string conversion should override this method if
necessary.
index
- the index of the value to get
non-null
string at the specified index
IndexOutOfBoundsException
- if index < 0 ||
>= getValueCountpublic abstract I getIdentifier()
Integer
.