Package org.dmfs.express.json.elementary
Class Array
- java.lang.Object
-
- org.dmfs.express.json.elementary.Array
-
-
Constructor Summary
Constructors Constructor Description Array()Array(java.lang.Boolean... elements)Array(java.lang.CharSequence... elements)Creates aJsonValuearray ofCharSequences.Array(java.lang.Iterable<JsonValue> elements)Array(java.lang.Number... elements)Array(Jsonable... elements)Array(JsonValue... elements)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidserialize(JsonSink jsonSink)
-
-
-
Constructor Detail
-
Array
public Array()
-
Array
public Array(Jsonable... elements)
- Parameters:
elements- the elements of the Array
-
Array
public Array(java.lang.Boolean... elements)
- Parameters:
elements- the elements of the Array
-
Array
public Array(java.lang.Number... elements)
- Parameters:
elements- the elements of the Array
-
Array
public Array(java.lang.CharSequence... elements)
Creates aJsonValuearray ofCharSequences.- Parameters:
elements- the elements of the Array
-
Array
public Array(JsonValue... elements)
- Parameters:
elements- the elements of the Array
-
-