final class Area in Physical Fields 8
Provides a value object for area amounts.
Usage example:
$area = new Area('7.00', AreaUnit::SQUARE_CENTIMETER);
Hierarchy
- class \Drupal\physical\Measurement
- class \Drupal\physical\Area
Expanded class hierarchy of Area
1 file declares its use of Area
- AreaTest.php in tests/
src/ Unit/ AreaTest.php
1 string reference to 'Area'
- MeasurementType::getLabels in src/
MeasurementType.php - Gets the labels for the defined measurement types.
File
- src/
Area.php, line 13
Namespace
Drupal\physicalView source
final class Area extends Measurement {
/**
* The measurement type.
*
* @var string
*/
protected $type = MeasurementType::AREA;
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Area:: |
protected | property |
The measurement type. Overrides Measurement:: |
|
Measurement:: |
protected | property | The number. | |
Measurement:: |
protected | property | The unit. | |
Measurement:: |
public | function | Adds the given measurement to the current one. | |
Measurement:: |
public | function | Compares the current measurement with the given one. | |
Measurement:: |
public | function | Converts the current measurement to a new unit. | 1 |
Measurement:: |
public | function | Divides the current measurement by the given number. | |
Measurement:: |
public | function | Gets whether the current measurement is equivalent to the given one. | |
Measurement:: |
public | function | Gets the number. | |
Measurement:: |
public | function | Gets the unit. | |
Measurement:: |
public | function | Gets whether the current measurement is greater than the given one. | |
Measurement:: |
public | function | Gets whether the current measurement is greater than or equal to the given one. | |
Measurement:: |
public | function | Gets whether the current measurement is zero. | |
Measurement:: |
public | function | Gets whether the current measurement is lesser than the given measurement. | |
Measurement:: |
public | function | Gets whether the current measurement is lesser than or equal to the given measurement. | |
Measurement:: |
public | function | Multiplies the current measurement by the given number. | |
Measurement:: |
public | function | Rounds the current measurement. | |
Measurement:: |
public | function | Subtracts the given measurement from the current one. | |
Measurement:: |
public | function | Gets the array representation of the measurement. | |
Measurement:: |
public | function | Constructs a new Measurement object. | |
Measurement:: |
public | function | Gets the string representation of the measurement. |