public static enum Current.Unit extends Enum<Current.Unit>
Enum Constant and Description |
---|
A
Ampere [A] SI unit.
|
mA
Milliampere [mA].
|
Modifier and Type | Method and Description |
---|---|
static Current.Unit |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Current.Unit[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Current.Unit A
public static final Current.Unit mA
public static Current.Unit[] values()
for (Current.Unit c : Current.Unit.values()) System.out.println(c);
public static Current.Unit 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.