Class WatchType
- java.lang.Object
-
- com.gurock.smartinspect.Enum
-
- com.gurock.smartinspect.packets.watch.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 Summary
Fields Modifier and Type Field Description static WatchTypeAddressInstructs the Console to treat a Watch value as address.static WatchTypeBooleanInstructs the Console to treat a Watch value as boolean.static WatchTypeCharInstructs the Console to treat a Watch value as char.static WatchTypeFloatInstructs the Console to treat a Watch value as float.static WatchTypeIntegerInstructs the Console to treat a Watch value as integer.static WatchTypeObjectInstructs the Console to treat a Watch value as object.static WatchTypeStringInstructs the Console to treat a Watch value as string.static WatchTypeTimestampInstructs the Console to treat a Watch value as timestamp.
-
-
-
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.
-
-