java.lang.Object
java.lang.Enum<ColumnType>
de.bsvrz.ars.ars.persistence.index.backend.management.ColumnType
All Implemented Interfaces:
Serializable, Comparable<ColumnType>, Constable

public enum ColumnType extends Enum<ColumnType>
Sortierung/Art einer Spalte
  • Enum Constant Details

    • StrictlyIncreasing

      public static final ColumnType StrictlyIncreasing
      Streng Monoton steigend, eindeutige Einträge
    • Increasing

      public static final ColumnType Increasing
      Monoton steigend, doppelte Einträge möglich
    • Unique

      public static final ColumnType Unique
      Unsortiert und eindeutig
    • Unordered

      public static final ColumnType Unordered
      Unsortiert
    • String

      public static final ColumnType String
      Unsortierte Textwerte fester Länge
  • Method Details

    • values

      public static ColumnType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ColumnType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null