All Implemented Interfaces:
Serializable, Cloneable, Comparable<DimensionedValue<Volume>>, Formattable, DimensionedValue<Volume>

@ClassVersion(sourceVersion="$Id: VolumeValue.java 1073 2023-10-01 11:08:51Z tquadrat $") @API(status=STABLE, since="0.1.0") public final class VolumeValue extends ValueBase<Volume,VolumeValue>
A value class for volumes.
Author:
Thomas Thrien (thomas.thrien@tquadrat.org)
Version:
$Id: VolumeValue.java 1073 2023-10-01 11:08:51Z tquadrat $
Since:
0.1.0
See Also:
UML Diagram
UML Diagram for "org.tquadrat.foundation.value.VolumeValue"

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

UML Diagram for "org.tquadrat.foundation.value.VolumeValue"
  • Field Details

  • Constructor Details

    • VolumeValue

      public VolumeValue(Volume dimension, BigDecimal value)
      Creates a new VolumeValue instance.
      Parameters:
      dimension - The dimension.
      value - The value.
    • VolumeValue

      public VolumeValue(Volume dimension, String value) throws NumberFormatException
      Creates a new VolumeValue instance.
      Parameters:
      dimension - The dimension.
      value - The value; it must be possible to parse the given String into a BigDecimal.
      Throws:
      NumberFormatException - The provided value cannot be converted into a BigDecimal.
    • VolumeValue

      public VolumeValue(Volume dimension, N value)
      Creates a new VolumeValue instance.
      Type Parameters:
      N - The type of value.
      Parameters:
      dimension - The dimension.
      value - The value.
    • VolumeValue

      public VolumeValue(Volume dimension, LengthValue length, LengthValue width, LengthValue height)

      Creates a new VolumeValue instance.

      A volume can be determined by multiplication of length, width and height.

      Parameters:
      dimension - The dimension.
      length - The length.
      width - The width.
      height - The height.
    • VolumeValue

      public VolumeValue(Volume dimension, AreaValue area, LengthValue height)

      Creates a new VolumeValue instance.

      A volume can be determined by multiplication of ground area and height.

      Parameters:
      dimension - The dimension.
      area - The ground area.
      height - The height.
  • Method Details