Adds the specified boolean to self. @param bool the boolean that needs to be added to the array. @since 2.4
(Boolean bool)
| 84 | * @since 2.4 |
| 85 | */ |
| 86 | public void add(Boolean bool) { |
| 87 | elements.add(bool == null ? JsonNull.INSTANCE : new JsonPrimitive(bool)); |
| 88 | } |
| 89 | |
| 90 | /** |
| 91 | * Adds the specified character to self. |
no outgoing calls