Enum Class KibanaLogTypeNames

java.lang.Object
java.lang.Enum<KibanaLogTypeNames>
org.hawaiiframework.logging.model.KibanaLogTypeNames
All Implemented Interfaces:
Serializable, Comparable<KibanaLogTypeNames>, Constable

public enum KibanaLogTypeNames extends Enum<KibanaLogTypeNames>
Enumeration for values of the Kibana Log Field LOG_TYPE.
Since:
2.0.0
  • Enum Constant Details

    • START

      public static final KibanaLogTypeNames START
      The start of a transaction.
    • END

      public static final KibanaLogTypeNames END
      The end of a transaction.
    • REQUEST_BODY

      public static final KibanaLogTypeNames REQUEST_BODY
      The request body. (incoming)
    • RESPONSE_BODY

      public static final KibanaLogTypeNames RESPONSE_BODY
      The response body. (returning)
    • CALL_START

      public static final KibanaLogTypeNames CALL_START
      The start of a call to another system.
    • CALL_REQUEST_BODY

      public static final KibanaLogTypeNames CALL_REQUEST_BODY
      The call requests body.
    • CALL_RESPONSE_BODY

      public static final KibanaLogTypeNames CALL_RESPONSE_BODY
      The call response body.
    • CALL_END

      public static final KibanaLogTypeNames CALL_END
      The end of a call to another system.
  • Method Details

    • values

      public static KibanaLogTypeNames[] 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 KibanaLogTypeNames 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