public static enum Telemetry.Log.DisplayOrder extends java.lang.Enum<Telemetry.Log.DisplayOrder>
Telemetry.Log.DisplayOrder
instances indicate the desired ordering of a Telemetry.log()
.Enum Constant and Description |
---|
NEWEST_FIRST |
OLDEST_FIRST |
Modifier and Type | Method and Description |
---|---|
static Telemetry.Log.DisplayOrder |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Telemetry.Log.DisplayOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Telemetry.Log.DisplayOrder NEWEST_FIRST
public static final Telemetry.Log.DisplayOrder OLDEST_FIRST
public static Telemetry.Log.DisplayOrder[] values()
for (Telemetry.Log.DisplayOrder c : Telemetry.Log.DisplayOrder.values()) System.out.println(c);
public static Telemetry.Log.DisplayOrder valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null