public static enum ExponentialTimer.Result extends Enum<ExponentialTimer.Result>
ExponentialTimer.tick()
.Modifier and Type | Method and Description |
---|---|
static ExponentialTimer.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExponentialTimer.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExponentialTimer.Result EXPIRED
public static final ExponentialTimer.Result NOT_READY
public static final ExponentialTimer.Result READY
public static ExponentialTimer.Result[] values()
for (ExponentialTimer.Result c : ExponentialTimer.Result.values()) System.out.println(c);
public static ExponentialTimer.Result 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 nullCopyright © 2023. All Rights Reserved.