public enum BusyPauser extends Enum<BusyPauser> implements Pauser
Enum Constant and Description |
---|
INSTANCE |
Modifier and Type | Method and Description |
---|---|
long |
countPaused() |
void |
pause() |
void |
reset() |
long |
timePaused() |
void |
unpause() |
static BusyPauser |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusyPauser[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusyPauser INSTANCE
public static BusyPauser[] values()
for (BusyPauser c : BusyPauser.values()) System.out.println(c);
public static BusyPauser valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic long timePaused()
timePaused
in interface Pauser
public long countPaused()
countPaused
in interface Pauser
Copyright © 2016. All rights reserved.