Enum Class FormatIdentifier

java.lang.Object
java.lang.Enum<FormatIdentifier>
kieker.common.util.dataformat.FormatIdentifier
All Implemented Interfaces:
Serializable, Comparable<FormatIdentifier>, Constable

public enum FormatIdentifier extends Enum<FormatIdentifier>
Format identifiers used by Kieker.
Since:
1.13
Author:
Holger Knoche
  • Enum Constant Details

    • CONTAINER_FORMAT

      public static final FormatIdentifier CONTAINER_FORMAT
      Identifier for the container format. Reads "KIKA" in ASCII encoding.
    • DEFAULT_BINARY_FORMAT

      public static final FormatIdentifier DEFAULT_BINARY_FORMAT
      Identifier for the default binary encoding. Reads "DFLT" in ASCII encoding.
  • Method Details

    • values

      public static FormatIdentifier[] 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 FormatIdentifier 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
    • getIdentifierValue

      public int getIdentifierValue()