Class FloatDirection

All Implemented Interfaces:
Serializable, Cloneable, Comparable<FloatDirection>, Absolute<DirectionUnit,FloatDirection,AngleUnit,FloatAngle>, Value<DirectionUnit,FloatDirection>

@Generated(value="org.djunits.generator.GenerateDJUNIT", date="2023-07-23T14:06:38.224104100Z") public class FloatDirection extends FloatScalarAbs<DirectionUnit,FloatDirection,AngleUnit,FloatAngle>
Easy access methods for the FloatDirection FloatScalar.

Copyright (c) 2013-2025 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands.
All rights reserved.
BSD-style license. See DJUNITS License.

Author:
Alexander Verbraeck, Peter Knoppers
See Also:
  • Field Details

    • ZERO

      public static final FloatDirection ZERO
      Constant with value zero.
  • Constructor Details

    • FloatDirection

      public FloatDirection(float value, DirectionUnit unit)
      Construct FloatDirection scalar.
      Parameters:
      value - the float value
      unit - unit for the float value
    • FloatDirection

      public FloatDirection(double value, DirectionUnit unit)
      Construct FloatDirection scalar using a double value.
      Parameters:
      value - the double value
      unit - unit for the resulting float value
    • FloatDirection

      public FloatDirection(FloatDirection value)
      Construct FloatDirection scalar.
      Parameters:
      value - Scalar from which to construct this instance
  • Method Details

    • instantiateAbs

      public final FloatDirection instantiateAbs(float value, DirectionUnit unit)
      Description copied from class: FloatScalarAbs
      Construct a new Absolute Immutable FloatScalar of the right type. Each extending class must implement this method.
      Specified by:
      instantiateAbs in class FloatScalarAbs<DirectionUnit,FloatDirection,AngleUnit,FloatAngle>
      Parameters:
      value - the float value
      unit - the absolute unit
      Returns:
      A a new absolute instance of the FloatScalar of the right type
    • instantiateRel

      public final FloatAngle instantiateRel(float value, AngleUnit unit)
      Description copied from class: FloatScalarAbs
      Construct a new Relative Immutable FloatScalar of the right type. Each extending class must implement this method.
      Specified by:
      instantiateRel in class FloatScalarAbs<DirectionUnit,FloatDirection,AngleUnit,FloatAngle>
      Parameters:
      value - the float value
      unit - the unit
      Returns:
      R a new relative instance of the FloatScalar of the right type
    • instantiateSI

      public static final FloatDirection instantiateSI(float value)
      Construct FloatDirection scalar.
      Parameters:
      value - the float value in BASE units
      Returns:
      the new scalar with the BASE value
    • interpolate

      public static FloatDirection interpolate(FloatDirection zero, FloatDirection one, float ratio)
      Interpolate between two values.
      Parameters:
      zero - the low value
      one - the high value
      ratio - the ratio between 0 and 1, inclusive
      Returns:
      a Scalar at the ratio between
    • max

      public static FloatDirection max(FloatDirection a1, FloatDirection a2)
      Return the maximum value of two absolute scalars.
      Parameters:
      a1 - the first scalar
      a2 - the second scalar
      Returns:
      the maximum value of two absolute scalars
    • max

      public static FloatDirection max(FloatDirection a1, FloatDirection a2, FloatDirection... an)
      Return the maximum value of more than two absolute scalars.
      Parameters:
      a1 - the first scalar
      a2 - the second scalar
      an - the other scalars
      Returns:
      the maximum value of more than two absolute scalars
    • min

      public static FloatDirection min(FloatDirection a1, FloatDirection a2)
      Return the minimum value of two absolute scalars.
      Parameters:
      a1 - the first scalar
      a2 - the second scalar
      Returns:
      the minimum value of two absolute scalars
    • min

      public static FloatDirection min(FloatDirection a1, FloatDirection a2, FloatDirection... an)
      Return the minimum value of more than two absolute scalars.
      Parameters:
      a1 - the first scalar
      a2 - the second scalar
      an - the other scalars
      Returns:
      the minimum value of more than two absolute scalars
    • valueOf

      public static FloatDirection valueOf(String text)
      Returns a FloatDirection representation of a textual representation of a value with a unit. The String representation that can be parsed is the double value in the unit, followed by a localized or English abbreviation of the unit. Spaces are allowed, but not required, between the value and the unit.
      Parameters:
      text - the textual representation to parse into a FloatDirection
      Returns:
      the Scalar representation of the value in its unit
      Throws:
      IllegalArgumentException - when the text cannot be parsed
      NullPointerException - when the text argument is null
    • of

      public static FloatDirection of(float value, String unitString)
      Returns a FloatDirection based on a value and the textual representation of the unit, which can be localized.
      Parameters:
      value - the value to use
      unitString - the textual representation of the unit
      Returns:
      the Scalar representation of the value in its unit
      Throws:
      IllegalArgumentException - when the unit cannot be parsed or is incorrect
      NullPointerException - when the unitString argument is null