View Table
| **Feature or Property value** | **DataType** | **DataFormat** | **Type of data returned
by `GetCurrentValue()`** | **Example output** |
| ------------------------------------------------------------------------------------------------------------------ | ------------ | -------------- | ----------------------------------------------------- | -------------------------------------------------------------------- |
| `true` | BOOLEAN | not applicable | `java.lang.Boolean` | `true` |
| `25` | NUMERIC | not applicable | `java.lang.Integer` | `25` |
| "a string text" | STRING | TEXT | `java.lang.String` | `a string text` |
| {
"firefox": {
"name": "Firefox",
"pref_url": "about:config"
}
} | STRING | JSON | `org.json.JSONObject` | `{"firefox": {"name": "Firefox", "pref_url": "about:config"}}` |
| men:
- John Smith
- Bill Jones
women:
- Mary Smith
- Susan Williams
| STRING | YAML | `java.lang.String` | `"men:\n - John Smith\n - Bill Jones\nwomen:\n - Mary Smith\n - Susan Williams"` |