LeakNodeStatus.kt
TLDR
The LeakNodeStatus.kt
file contains an enum class called LeakNodeStatus
which is used to represent the status of a leak node.
Classes
LeakNodeStatus
This enum class represents the status of a leak node. It has three possible values:
-
NOT_LEAKING
: Represents that a node is not leaking. -
LEAKING
: Represents that a node is leaking. -
UNKNOWN
: Represents that the status of a node is unknown.
This class is kept for backward compatibility deserialization purposes.
package shark
/**
* This class is kept to support backward compatible deserialization.
*/
internal enum class LeakNodeStatus {
NOT_LEAKING,
LEAKING,
UNKNOWN;
}