Package kieker.common.util.dataformat
Enum Class FormatIdentifier
- All Implemented Interfaces:
Serializable,Comparable<FormatIdentifier>,Constable
Format identifiers used by Kieker.
- Since:
- 1.13
- Author:
- Holger Knoche
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIdentifier for the container format.Identifier for the default binary encoding. -
Method Summary
Modifier and TypeMethodDescriptionintstatic FormatIdentifierReturns the enum constant of this class with the specified name.static FormatIdentifier[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
CONTAINER_FORMAT
Identifier for the container format. Reads "KIKA" in ASCII encoding. -
DEFAULT_BINARY_FORMAT
Identifier for the default binary encoding. Reads "DFLT" in ASCII encoding.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-
getIdentifierValue
public int getIdentifierValue()
-