Class WatchType


  • public final class WatchType
    extends Enum
    Represents the type of Watch packet. The type of Watch specifies its variable type.

    For example, if a Watch packet has a type of WatchType.String, the represented variable is treated as string in the Console.

    This class is fully threadsafe.

    • Field Detail

      • Char

        public static final WatchType Char
        Instructs the Console to treat a Watch value as char.
      • String

        public static final WatchType String
        Instructs the Console to treat a Watch value as string.
      • Integer

        public static final WatchType Integer
        Instructs the Console to treat a Watch value as integer.
      • Float

        public static final WatchType Float
        Instructs the Console to treat a Watch value as float.
      • Boolean

        public static final WatchType Boolean
        Instructs the Console to treat a Watch value as boolean.
      • Address

        public static final WatchType Address
        Instructs the Console to treat a Watch value as address.
      • Timestamp

        public static final WatchType Timestamp
        Instructs the Console to treat a Watch value as timestamp.
      • Object

        public static final WatchType Object
        Instructs the Console to treat a Watch value as object.