Enum TableColumn.ColumnType

java.lang.Object
java.lang.Enum<TableColumn.ColumnType>
io.jenkins.plugins.datatables.TableColumn.ColumnType
Alle implementierten Schnittstellen:
Serializable, Comparable<TableColumn.ColumnType>
Umschließende Klasse:
TableColumn

public static enum TableColumn.ColumnType extends Enum<TableColumn.ColumnType>
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 - Details

    • DATE

      public static final TableColumn.ColumnType DATE
      Date or time values.
    • NUMBER

      public static final TableColumn.ColumnType NUMBER
      Numbers will be shown right aligned, and use a simple number sorting.
    • HTML_NUMBER

      public static final TableColumn.ColumnType HTML_NUMBER
      Numbers will be shown right aligned, and use a simple number sorting. May contain HTML tags also in the data.
    • FORMATTED_NUMBER

      public static final TableColumn.ColumnType 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

      public static final TableColumn.ColumnType 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

      public static final TableColumn.ColumnType STRING
      Fall back type if the data in the column does not match the requirements for the other data types (above).
  • Methodendetails

    • values

      public static TableColumn.ColumnType[] 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

      public static TableColumn.ColumnType valueOf(String name)
      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ält
      NullPointerException - wenn das Argument nicht angegeben wird
    • toString

      public String toString()
      Setzt außer Kraft:
      toString in Klasse Enum<TableColumn.ColumnType>