public enum ElectricCurrent extends java.lang.Enum<ElectricCurrent> implements MeasurementUnit
Enum Constant and Description |
---|
ABAMPERE
Abampere electric current.
|
AMPERES
Amperes electric current.
|
BIOT
Biot electric current.
|
KILOAMPERE
Kiloampere electric current.
|
KILOBIOT
Kilobiot electric current.
|
MEGAAMPERE
Megaampere electric current.
|
MEGABIOT
Megabiot electric current.
|
MILLIAMPERE
Milliampere electric current.
|
MILLIBIOT
Millibiot electric current.
|
STATAMPERE
Statampere electric current.
|
Modifier and Type | Method and Description |
---|---|
Measurement |
getMeasurementGroup()
Gets measurement group.
|
static ElectricCurrent |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ElectricCurrent[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="abampere") public static final ElectricCurrent ABAMPERE
@SerializedName(value="milliampere") public static final ElectricCurrent MILLIAMPERE
@SerializedName(value="amperes") public static final ElectricCurrent AMPERES
@SerializedName(value="kiloampere") public static final ElectricCurrent KILOAMPERE
@SerializedName(value="megaampere") public static final ElectricCurrent MEGAAMPERE
@SerializedName(value="biot") public static final ElectricCurrent BIOT
@SerializedName(value="millibiot") public static final ElectricCurrent MILLIBIOT
@SerializedName(value="kilobiot") public static final ElectricCurrent KILOBIOT
@SerializedName(value="megabiot") public static final ElectricCurrent MEGABIOT
@SerializedName(value="statampere ") public static final ElectricCurrent STATAMPERE
public static ElectricCurrent[] values()
for (ElectricCurrent c : ElectricCurrent.values()) System.out.println(c);
public static ElectricCurrent 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 nullpublic Measurement getMeasurementGroup()
MeasurementUnit
getMeasurementGroup
in interface MeasurementUnit