public enum TRange extends Enum<TRange>
| Modifier and Type | Method and Description |
|---|---|
String |
val() |
static TRange |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TRange[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TRange ALL
public static final TRange INDICES
public static final TRange INTERVAL
public static TRange[] values()
for (TRange c : TRange.values()) System.out.println(c);
public static TRange 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 String val()
Copyright © 2023. All rights reserved.