public enum RangeUnits extends Enum<RangeUnits>
Enum Constant and Description |
---|
km
Range in kilometers.
|
RU
Range in "Range Units" with changing frequency.
|
s
Range in seconds.
|
Modifier and Type | Method and Description |
---|---|
static RangeUnits |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RangeUnits[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RangeUnits km
public static final RangeUnits s
public static final RangeUnits RU
public static RangeUnits[] values()
for (RangeUnits c : RangeUnits.values()) System.out.println(c);
public static RangeUnits 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 © 2002-2022 CS GROUP. All rights reserved.