Enum TimerEvent.State
- java.lang.Object
-
- java.lang.Enum<TimerEvent.State>
-
- com.google.cloud.tools.jib.event.events.TimerEvent.State
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<TimerEvent.State>
- Enclosing class:
- TimerEvent
public static enum TimerEvent.State extends java.lang.Enum<TimerEvent.State>
The state of the timing.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TimerEvent.State
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TimerEvent.State[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
START
public static final TimerEvent.State START
The timer has started timing.TimerEvent.getDuration()
is 0.TimerEvent.getElapsed()
is 0.
-
LAP
public static final TimerEvent.State LAP
The timer timed a lap.TimerEvent.getDuration()
is the time since the last event.TimerEvent.getElapsed()
is the total elapsed time.
-
FINISHED
public static final TimerEvent.State FINISHED
The timer has finished timing.TimerEvent.getDuration()
is the time since the last event.TimerEvent.getElapsed()
is the total elapsed time.
-
-
Method Detail
-
values
public static TimerEvent.State[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (TimerEvent.State c : TimerEvent.State.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TimerEvent.State valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-