public static enum Telemetry.Type extends Enum<Telemetry.Type>
| Enum Constant and Description |
|---|
ERROR |
INFO |
OP_END |
OP_START |
STEP |
WARNING |
| Modifier and Type | Method and Description |
|---|---|
static Telemetry.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Telemetry.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Telemetry.Type OP_START
public static final Telemetry.Type OP_END
public static final Telemetry.Type STEP
public static final Telemetry.Type INFO
public static final Telemetry.Type WARNING
public static final Telemetry.Type ERROR
public static Telemetry.Type[] values()
for (Telemetry.Type c : Telemetry.Type.values()) System.out.println(c);
public static Telemetry.Type 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 © 2021. All rights reserved.