> For the complete documentation index, see [llms.txt](https://regulaforensics.gitbook.io/android/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://regulaforensics.gitbook.io/android/enumerations/rglmeasuresystem.md).

# RGLMeasureSystem

The constants of `RGLMeasureSystem` enumeration identify the system for measuring distances and weight.

```java
public class RGLMeasureSystem {
    public static final int METRIC = 0;
    public static final int IMPERIAL = 1;
}
```

| Constant     | Description                                                                                                                                                               |
| ------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **METRIC**   | It's the Metric System of Measurement, which uses the measuring units such as meters and grams and adds prefixes like kilo, milli and centi to count orders of magnitude. |
| **IMPERIAL** | It's the Imperial System of Measurement, where things are measured in feet, inches and pounds.                                                                            |
