Enum Class EntryType

java.lang.Object
java.lang.Enum<EntryType>
dev.doglog.internal.log_thread.entries.EntryType
All Implemented Interfaces:
Serializable, Comparable<EntryType>, Constable

public enum EntryType extends Enum<EntryType>
The type of a queued log entry.
  • Enum Constant Details

    • BOOLEAN_ARRAY

      public static final EntryType BOOLEAN_ARRAY
    • BOOLEAN

      public static final EntryType BOOLEAN
    • DOUBLE_ARRAY

      public static final EntryType DOUBLE_ARRAY
    • DOUBLE

      public static final EntryType DOUBLE
    • FLOAT_ARRAY

      public static final EntryType FLOAT_ARRAY
    • FLOAT

      public static final EntryType FLOAT
    • INTEGER_ARRAY

      public static final EntryType INTEGER_ARRAY
    • INTEGER

      public static final EntryType INTEGER
    • STRING_ARRAY

      public static final EntryType STRING_ARRAY
    • STRING

      public static final EntryType STRING
    • STRUCT_ARRAY

      public static final EntryType STRUCT_ARRAY
    • STRUCT

      public static final EntryType STRUCT
  • Method Details

    • values

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