TrackingLevel Class
- public class TrackingLevel
extends Object
implements Serializable
Typesafe enumerated class for describing tracking levels for processes. Tracking level of a
process indicates what data related to the execution of an instance will be logged.
-
Hierarchy
-
Object
TrackingLevel
-
All Implemented Interfaces
-
Serializable
public static final TrackingLevel |
-
DEFAULT
- TrackingLevel indicating that the system wide default TrackingLevel should be used
|
public static final TrackingLevel |
-
FULL
- TrackingLevel for tracking event information and messages
|
public static final TrackingLevel |
-
MINIMUM
- TrackingLevel for tracking global events only, such as process start,end, suspend, resume, etc
|
public static final TrackingLevel |
-
NODE
- TrackingLevel for logging event information only, no messages are logged.
|
public static final TrackingLevel |
-
NONE
- TrackingLevel for not tracking any events
|
public static final List |
-
VALUES
- List of all TrackingLevel enumerated types.
|
public int |
-
intValue ()
- Returns an integer representation for this TrackingLevel
|
public String |
-
toString ()
- Returns string representation of this TrackingLevel
|
public static TrackingLevel |
-
toTrackingLevel (int val)
- Returns the Trackinglevel object whose integer representation is the given integer value.
|
public static TrackingLevel |
-
toTrackingLevel (String s)
- Returns the Trackinglevel object whose String representation is the given String value.
|
DEFAULT
public static final TrackingLevel
DEFAULT
- TrackingLevel indicating that the system wide default TrackingLevel should be used
FULL
public static final TrackingLevel
FULL
- TrackingLevel for tracking event information and messages
MINIMUM
public static final TrackingLevel
MINIMUM
- TrackingLevel for tracking global events only, such as process start,end, suspend, resume, etc
NODE
public static final TrackingLevel
NODE
- TrackingLevel for logging event information only, no messages are logged.
NONE
public static final TrackingLevel
NONE
- TrackingLevel for not tracking any events
VALUES
public static final List
VALUES
- List of all TrackingLevel enumerated types.
intValue() Method
public int intValue()
Returns an integer representation for this TrackingLevel
Related Topics
TrackingLevel.toTrackingLevel(int)
toString() Method
public String
toString()
Returns string representation of this TrackingLevel
-
Overrides
-
Object.toString()
toTrackingLevel(int) Method
public static TrackingLevel
toTrackingLevel(int val)
Returns the Trackinglevel object whose integer representation is the given integer value.
toTrackingLevel(String) Method
public static TrackingLevel
toTrackingLevel(String
s)
Returns the Trackinglevel object whose String representation is the given String value.