Uses of Interface
org.apache.activemq.artemis.json.JsonValue
-
Packages that use JsonValue Package Description org.apache.activemq.artemis.json org.apache.activemq.artemis.json.impl -
-
Uses of JsonValue in org.apache.activemq.artemis.json
Subinterfaces of JsonValue in org.apache.activemq.artemis.json Modifier and Type Interface Description interfaceJsonArrayA JsonArray e.g.interfaceJsonNumberJsonValue which represents a number.interfaceJsonObjectA JsonObject, e.g.interfaceJsonStringJsonValue which represents a string.Fields in org.apache.activemq.artemis.json declared as JsonValue Modifier and Type Field Description static JsonValueJsonValue. FALSEA constant JsonValue for FALSEstatic JsonValueJsonValue. NULLA constant JsonValue for null valuesstatic JsonValueJsonValue. TRUEA constant JsonValue for TRUEMethods in org.apache.activemq.artemis.json with type parameters of type JsonValue Modifier and Type Method Description <T extends JsonValue>
java.util.List<T>JsonArray. getValuesAs(java.lang.Class<T> clazz)default <T,K extends JsonValue>
java.util.List<T>JsonArray. getValuesAs(java.util.function.Function<K,T> func)Returns a list for the array.Methods in org.apache.activemq.artemis.json with parameters of type JsonValue Modifier and Type Method Description default JsonArrayBuilderJsonArrayBuilder. add(int index, JsonValue value)JsonArrayBuilderJsonArrayBuilder. add(JsonValue value)JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, java.lang.String value, JsonValue defaultValue)JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, java.math.BigDecimal value, JsonValue defaultValue)JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, java.math.BigInteger value, JsonValue defaultValue)JsonObjectBuilderJsonObjectBuilder. add(java.lang.String name, JsonValue value)Add the given JsonValue value to the JsonObject to be created.default JsonArrayBuilderJsonArrayBuilder. set(int index, JsonValue value) -
Uses of JsonValue in org.apache.activemq.artemis.json.impl
Classes in org.apache.activemq.artemis.json.impl that implement JsonValue Modifier and Type Class Description classJsonArrayImplclassJsonNumberImplclassJsonObjectImplclassJsonStringImplclassJsonValueImplMethods in org.apache.activemq.artemis.json.impl with type parameters of type JsonValue Modifier and Type Method Description <T extends JsonValue>
java.util.List<T>JsonArrayImpl. getValuesAs(java.lang.Class<T> clazz)Methods in org.apache.activemq.artemis.json.impl that return JsonValue Modifier and Type Method Description JsonValueJsonArrayImpl. get(int index)JsonValueJsonObjectImpl. get(java.lang.Object key)JsonValueJsonObjectImpl. put(java.lang.String key, JsonValue value)JsonValueJsonArrayImpl. remove(int index)JsonValueJsonObjectImpl. remove(java.lang.Object key)JsonValueJsonArrayImpl. set(int index, JsonValue element)JsonValueJsonValueImpl. wrap(javax.json.JsonValue rawValue)Methods in org.apache.activemq.artemis.json.impl that return types with arguments of type JsonValue Modifier and Type Method Description java.util.Set<java.util.Map.Entry<java.lang.String,JsonValue>>JsonObjectImpl. entrySet()java.util.Iterator<JsonValue>JsonArrayImpl. iterator()java.util.ListIterator<JsonValue>JsonArrayImpl. listIterator()java.util.ListIterator<JsonValue>JsonArrayImpl. listIterator(int index)java.util.List<JsonValue>JsonArrayImpl. subList(int fromIndex, int toIndex)java.util.Collection<JsonValue>JsonObjectImpl. values()Methods in org.apache.activemq.artemis.json.impl with parameters of type JsonValue Modifier and Type Method Description JsonArrayBuilderJsonArrayBuilderImpl. add(JsonValue value)voidJsonArrayImpl. add(int index, JsonValue element)booleanJsonArrayImpl. add(JsonValue jsonValue)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, java.lang.String value, JsonValue defaultValue)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, java.math.BigDecimal value, JsonValue defaultValue)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, java.math.BigInteger value, JsonValue defaultValue)JsonObjectBuilderJsonObjectBuilderImpl. add(java.lang.String name, JsonValue value)JsonValueJsonObjectImpl. put(java.lang.String key, JsonValue value)JsonValueJsonArrayImpl. set(int index, JsonValue element)Method parameters in org.apache.activemq.artemis.json.impl with type arguments of type JsonValue Modifier and Type Method Description booleanJsonArrayImpl. addAll(int index, java.util.Collection<? extends JsonValue> c)booleanJsonArrayImpl. addAll(java.util.Collection<? extends JsonValue> c)voidJsonObjectImpl. putAll(java.util.Map<? extends java.lang.String,? extends JsonValue> m)
-