Package io.jenkins.plugins.datatables
Enum TableColumn.ColumnType
- Alle implementierten Schnittstellen:
Serializable
,Comparable<TableColumn.ColumnType>
- Umschließende Klasse:
TableColumn
Supported DataTables column types. When operating in client-side processing mode, DataTables can process the data
used for the display in each cell in a manner suitable for the action being performed. For example, HTML tags
will be removed from the strings used for filter matching, while sort formatting may remove currency symbols to
allow currency values to be sorted numerically. The formatting action performed to normalise the data, so it can
be ordered and searched depends upon the column's type.
-
Enum-Konstanten - Übersicht
Enum-KonstanteBeschreibungDate or time values.Formatted numbers will be shown right aligned, and use numeric sorting of formatted numbers.Formatted numbers will be shown right aligned, and use numeric sorting of formatted numbers.Numbers will be shown right aligned, and use a simple number sorting.Numbers will be shown right aligned, and use a simple number sorting.Fall back type if the data in the column does not match the requirements for the other data types (above). -
Methodenübersicht
Modifizierer und TypMethodeBeschreibungtoString()
static TableColumn.ColumnType
Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück.static TableColumn.ColumnType[]
values()
Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.
-
Enum-Konstanten - Details
-
DATE
Date or time values. -
NUMBER
Numbers will be shown right aligned, and use a simple number sorting. -
HTML_NUMBER
Numbers will be shown right aligned, and use a simple number sorting. May contain HTML tags also in the data. -
FORMATTED_NUMBER
Formatted numbers will be shown right aligned, and use numeric sorting of formatted numbers. Numbers which are formatted with thousands separators, currency symbols or a percentage indicator will be sorted numerically automatically by DataTables. -
FORMATTED_HTML_NUMBER
Formatted numbers will be shown right aligned, and use numeric sorting of formatted numbers. Numbers which are formatted with thousands separators, currency symbols or a percentage indicator will be sorted numerically automatically by DataTables. May contain HTML tags also in the data. -
STRING
Fall back type if the data in the column does not match the requirements for the other data types (above).
-
-
Methodendetails
-
values
Gibt ein Array mit den Konstanten dieses Enum-Typs in der Reihenfolge ihrer Deklaration zurück.- Gibt zurück:
- ein Array mit den Konstanten dieses Enumerationstyps in der Reihenfolge ihrer Deklaration
-
valueOf
Gibt die Enumerationskonstante dieses Typs mit dem angegebenen Namen zurück. Die Zeichenfolge muss exakt mit einer ID übereinstimmen, mit der eine Enumerationskonstante in diesem Typ deklariert wird. (Zusätzliche Leerzeichen sind nicht zulässig.)- Parameter:
name
- Name der zurückzugebenden Enumerationskonstante.- Gibt zurück:
- Enumerationskonstante mit dem angegebenen Namen
- Löst aus:
IllegalArgumentException
- wenn dieser Enumerationstyp keine Konstante mit dem angegebenen Namen enthältNullPointerException
- wenn das Argument nicht angegeben wird
-
toString
- Setzt außer Kraft:
toString
in KlasseEnum<TableColumn.ColumnType>
-