java.lang.Object
java.lang.Enum<Force>
org.tquadrat.foundation.value.Force
All Implemented Interfaces:
Serializable, Comparable<Force>, Constable, Dimension, DimensionWithLinearConversion

@ClassVersion(sourceVersion="$Id: Force.java 1073 2023-10-01 11:08:51Z tquadrat $") @API(status=STABLE, since="0.3.0") public enum Force extends Enum<Force> implements DimensionWithLinearConversion
The various instances of force …
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: Force.java 1073 2023-10-01 11:08:51Z tquadrat $
Since:
0.3.0
UML Diagram
UML Diagram for "org.tquadrat.foundation.value.Force"

UML Diagram for "org.tquadrat.foundation.value.Force"

UML Diagram for "org.tquadrat.foundation.value.Force"
  • Enum Constant Details

    • MICRONEWTON

      public static final Force MICRONEWTON
      A micro Newton.
    • DYN

      public static final Force DYN

      A dyn.

      This is the unit of force in the CGS unit system.

    • POND

      public static final Force POND
      A pond
    • NEWTON

      public static final Force NEWTON
      A Newton.
    • KILOPOND

      public static final Force KILOPOND
      A kilo pond
    • KILONEWTON

      public static final Force KILONEWTON
      A kilo Newton.
    • MEGAPOND

      public static final Force MEGAPOND
      A Mega pond
  • Field Details

  • Constructor Details

    • Force

      private Force(BigDecimal factor, String unitSymbol)
      Creates a new Force instance, with a default precision of zero mantissa digits.
      Parameters:
      factor - The factor.
      unitSymbol - The unit symbol String.
    • Force

      private Force(BigDecimal factor, String unitSymbol, int precision)
      Creates a new Force instance.
      Parameters:
      factor - The factor.
      unitSymbol - The unit symbol String.
      precision - The default precision.
  • Method Details

    • values

      public static Force[] 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

      public static Force valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • baseUnit

      public final Force baseUnit()

      Returns the base unit.

      E.g. for length, the base unit would be Meter (m), for mass, it is Kilogram (kg), and so on.

      Specified by:
      baseUnit in interface Dimension
      Returns:
      The base unit.
    • factor

      public final BigDecimal factor()

      Returns the factor that is used to convert a value from this unit to the base unit.

      For length, if you have to convert a Centimeter value to Meter, you will divide that by 100 or multiply it with a factor of 0.01.

      For the base unit, the factor is 1.0.

      Specified by:
      factor in interface DimensionWithLinearConversion
      Returns:
      The factor.
      See Also:
    • forUnit

      public static final Force forUnit(String unitSymbol) throws IllegalArgumentException
      Returns the Force instance for the given unit symbol.
      Parameters:
      unitSymbol - The unit symbol.
      Returns:
      The respective instance.
      Throws:
      IllegalArgumentException - The given unit is unknown.
    • getPrecision

      public final int getPrecision()
      Returns the default precision for this unit that is used when the respective value is converted to a String.
      Specified by:
      getPrecision in interface Dimension
      Returns:
      The mantissa length for a value with this unit.
    • unitSymbol

      public final String unitSymbol()

      Returns the unit symbol for the dimension as a single line string.

      For a length, this would be "m", for a speed "km/h", and for an acceleration, it could be "m/(s^2)".

      Specified by:
      unitSymbol in interface Dimension
      Returns:
      The unit.