Package com.irurueta.units
Enum Class SpeedUnit
- All Implemented Interfaces:
Serializable,Comparable<SpeedUnit>,Constable
Enumerator containing recognized typical speed units.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionFeet per second (ft/s)Kilometers per hour (Km/h)Kilometers per second (Km/s)Meters per second (m/s).Miles per hour (mph) -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic SpeedUnit[]Gets all supported imperial speed units.static SpeedUnit[]Gets all supported metric speed units.static UnitSystemgetUnitSystem(SpeedUnit unit) Returns unit system for provided speed unit.static booleanisImperial(SpeedUnit unit) Indicates whether provided unit belongs to the imperial unit system.static booleanIndicates whether provided unit belongs to the metric unit system.static SpeedUnitReturns the enum constant of this class with the specified name.static SpeedUnit[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
METERS_PER_SECOND
Meters per second (m/s). -
KILOMETERS_PER_HOUR
Kilometers per hour (Km/h) -
KILOMETERS_PER_SECOND
Kilometers per second (Km/s) -
FEET_PER_SECOND
Feet per second (ft/s) -
MILES_PER_HOUR
Miles per hour (mph)
-
-
Constructor Details
-
SpeedUnit
private SpeedUnit()
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
getUnitSystem
Returns unit system for provided speed unit.- Parameters:
unit- speed unit to be checked.- Returns:
- unit system (metric or imperial).
- Throws:
IllegalArgumentException- if unit is null or not supported.
-
getMetricUnits
Gets all supported metric speed units.- Returns:
- all supported metric speed units.
-
getImperialUnits
Gets all supported imperial speed units.- Returns:
- all supported imperial speed units.
-
isMetric
Indicates whether provided unit belongs to the metric unit system.- Parameters:
unit- speed unit to be checked.- Returns:
- true if unit belongs to metric unit system.
- Throws:
IllegalArgumentException- if unit is null or not supported.
-
isImperial
Indicates whether provided unit belongs to the imperial unit system.- Parameters:
unit- speed unit to be checked.- Returns:
- true if unit belongs to imperial unit system.
- Throws:
IllegalArgumentException- if unit is null or not supported.
-