Liking cljdoc? Tell your friends :D

javax.swing.RowFilter$Entry

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.

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.
raw docstring

->entryclj

(->entry)

Constructor.

Creates an Entry.

Constructor.

Creates an Entry.
raw docstring

get-identifierclj

(get-identifier this)

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 - I

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 - `I`
raw docstring

get-modelclj

(get-model this)

Returns the underlying model.

returns: the model containing the data that this entry represents - M

Returns the underlying model.

returns: the model containing the data that this entry represents - `M`
raw docstring

get-string-valueclj

(get-string-value this 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.

index - the index of the value to get - int

returns: non-null string at the specified index - java.lang.String

throws: java.lang.IndexOutOfBoundsException - if index < 0 || >= getValueCount

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.

index - the index of the value to get - `int`

returns: non-null string at the specified index - `java.lang.String`

throws: java.lang.IndexOutOfBoundsException - if index < 0 || >= getValueCount
raw docstring

get-valueclj

(get-value this 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.

index - the index of the value to get - int

returns: value at the specified index - java.lang.Object

throws: java.lang.IndexOutOfBoundsException - if index < 0 or >= getValueCount

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.

index - the index of the value to get - `int`

returns: value at the specified index - `java.lang.Object`

throws: java.lang.IndexOutOfBoundsException - if index < 0 or >= getValueCount
raw docstring

get-value-countclj

(get-value-count this)

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 - int

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 - `int`
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close