On this page
Class RowFilter.Entry<M,I>
- Type Parameters:
M
- the type of the model; for examplePersonModel
I
- the type of the identifier; when usingTableRowSorter
this will beInteger
public abstract static class RowFilter.Entry<M,I> extends Object
Entry
object is passed to instances of RowFilter
, allowing the filter to get the value of the entry's data, and thus to determine whether the entry should be shown. An Entry
object contains information about the model as well as methods for getting the underlying values from the model.
- Since:
- 1.6
- See Also:
Constructor Summary
Constructor | Description |
---|---|
Entry() |
Creates an Entry .
|
Method Summary
Modifier and Type | Method | Description |
---|---|---|
abstract I |
getIdentifier() |
Returns the identifer (in the model) of the entry.
|
abstract M |
getModel() |
Returns the underlying model.
|
String |
getStringValue |
Returns the string value at the specified index.
|
abstract Object |
getValue |
Returns the value at the specified index.
|
abstract int |
getValueCount() |
Returns the number of values in the entry.
|
Constructor Details
Entry
public Entry()
Entry
.
Method Details
getModel
public abstract M getModel()
- Returns:
- the model containing the data that this entry represents
getValueCount
public abstract int getValueCount()
- Returns:
- number of values in the object being filtered
getValue
public abstract Object getValue(int index)
null
. When used with a table, index corresponds to the column number in the model.
- Parameters:
index
- the index of the value to get- Returns:
- value at the specified index
- Throws:
IndexOutOfBoundsException
- if index < 0 or >= getValueCount
getStringValue
public 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.
- Parameters:
index
- the index of the value to get- Returns:
non-null
string at the specified index- Throws:
IndexOutOfBoundsException
- if index < 0 || >= getValueCount
getIdentifier
public abstract I getIdentifier()
Integer
.
- Returns:
- a model-based (not view-based) identifier for this entry
© 1993, 2021, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
https://docs.oracle.com/en/java/javase/17/docs/api/java.desktop/javax/swing/RowFilter.Entry.html