Geen cache-versie.

Caching uitgeschakeld. Standaardinstelling voor deze pagina:ingeschakeld (code LNG204)
Als het scherm te langzaam is, kunt u de gebruikersmodus uitschakelen om de cacheversie te bekijken.
javax.swing

Class RowFilter.Entry<M,I>

  • Type Parameters:
    M - the type of the model; for example PersonModel
    I - the type of the identifier; when using TableRowSorter this will be Integer
    Enclosing class:
    RowFilter<M,I>

    public abstract static class RowFilter.Entry<M,I>
    extends Object
    An 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:
    RowFilter, DefaultRowSorter.setRowFilter(javax.swing.RowFilter)
    • Constructor Detail

      • RowFilter.Entry

        public RowFilter.Entry()
        Creates an 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 return 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)
        Returns the string value at the specified index. If filtering is being done based on 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()
        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 an Integer.
        Returns:
        a model-based (not view-based) identifier for this entry

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 11/06/2005 gemaakt, de laatste keer de 04/03/2020 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/java-api-rf-javax/swing/RowFilter.Entry.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:fr Manuel PHP : https://docs.oracle.com

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut