- java.lang.Object
-
- javax.swing.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
AnEntry
object is passed to instances ofRowFilter
, allowing the filter to get the value of the entry's data, and thus to determine whether the entry should be shown. AnEntry
object contains information about the model as well as methods for getting the underlying values from the model.- Since:
- 1.6
- See Also:
RowFilter
,DefaultRowSorter.setRowFilter(javax.swing.RowFilter)
-
-
Constructor Summary
Constructors Constructor and Description RowFilter.Entry()
Creates anEntry
.
-
Method Summary
Methods Modifier and Type Method and Description 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.
-
-
-
Method Detail
-
getModel
public abstract M getModel()
Returns the underlying model.- Returns:
- the model containing the data that this entry represents
-
getValueCount
public abstract int getValueCount()
Returns the number of values in the entry. For example, when used with a table this corresponds to the number of columns.- Returns:
- number of values in the object being filtered
-
getValue
public abstract Object getValue(int index)
Returns the value at the specified index. This may returnnull
. 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:
- if index < 0 or >= getValueCountIndexOutOfBoundsException
-
getStringValue
public String getStringValue(int index)
Returns the string value at the specified index. If filtering is being done based onString
values this method is preferred to that ofgetValue
asgetValue(index).toString()
may return a different result thangetStringValue(index)
.This implementation calls
getValue(index).toString()
after checking fornull
. 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:
- if index < 0 || >= getValueCountIndexOutOfBoundsException
-
getIdentifier
public abstract I getIdentifier()
Returns the identifer (in the model) of the entry. For a table this corresponds to the index of the row in the model, expressed as anInteger
.- Returns:
- a model-based (not view-based) identifier for this entry
-
-
Deutsche Übersetzung
Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.
Vielen Dank im Voraus.
Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/swing/rowfilter.entry.html
Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.
Referenzen
Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.