public class BulkTimer
extends java.lang.Object
Modifier and Type | Field | Description |
---|---|---|
static BulkTimer |
LOAD |
A BulkTimer that can be used by classes that need to
time their loading phase.
|
Constructor | Description |
---|---|
BulkTimer() |
Creates a bulk timer.
|
Modifier and Type | Method | Description |
---|---|---|
Timer |
getTimer(java.lang.String name) |
Gets the timer with the given name.
|
boolean |
isVerbose() |
Checks to see if we are in verbose mode.
|
void |
setVerbose(boolean verbose) |
Sets verbose mode.
|
void |
show(java.lang.String title) |
Shows all of the collected times.
|
void |
start() |
Starts the bulk timer.
|
void |
start(java.lang.String name) |
Starts the timer with the given name.
|
void |
stop() |
Stops the bulk timer.
|
void |
stop(java.lang.String name) |
Stops the timer with the given name.
|
public static final BulkTimer LOAD
public void start(java.lang.String name)
name
- the name of the timer to startpublic void stop(java.lang.String name)
name
- the name of the timerpublic void start()
start
and end
calls on the
BulkTimer
.public void stop()
public void setVerbose(boolean verbose)
verbose
- the verbose modepublic boolean isVerbose()
true
if verbose mode; otherwise
false
.public Timer getTimer(java.lang.String name)
name
- the timer namepublic void show(java.lang.String title)
title
- the title for the display