Name | ElementTag(Boolean) |
Description | When "ElementTag(Boolean)" appears in meta documentation, this means the input/output is an ElementTag
(refer to ElementTag) that is a boolean. Boolean means either a "true" or a "false". |
Group | Object System |
Source | https://github.com/DenizenScript/Denizen-Core/blob/master/src/main/java/com/denizenscript/denizencore/objects/core/ElementTag.java#L66 |
Name | ElementTag(Decimal) |
Description | When "ElementTag(Decimal)" appears in meta documentation, this means the input/output is an ElementTag
(refer to ElementTag) that is a decimal number. That is, for example: 0, 1, 5, -4, 10002325, 4.2, -18.281241 or any other number. While this is specifically for decimal numbers, the decimal itself is optional (will be assumed as ".0"). In some cases, this will also be documented as "<#.#>". |
Group | Object System |
Source | https://github.com/DenizenScript/Denizen-Core/blob/master/src/main/java/com/denizenscript/denizencore/objects/core/ElementTag.java#L87 |
Name | ElementTag(Number) |
Description | When "ElementTag(Number)" appears in meta documentation, this means the input/output is an ElementTag
(refer to ElementTag) that is an integer number. That is, for example: 0, 1, 5, -4, 10002325 or any other number. This does NOT include decimal numbers (like 1.5). Those will be documented as ElementTag(Decimal). In some cases, this will also be documented as "<#>". |
Group | Object System |
Source | https://github.com/DenizenScript/Denizen-Core/blob/master/src/main/java/com/denizenscript/denizencore/objects/core/ElementTag.java#L75 |