Uses of Class
org.apache.juneau.collections.JsonMap
Packages that use JsonMap
Package
Description
REST Server API
REST Client API
- 
Uses of JsonMap in org.apache.juneauMethods in org.apache.juneau that return JsonMapModifier and TypeMethodDescriptionfinal JsonMapBeanTraverseSession.getLastLocation()Returns information used to determine at what location in the parse a failure occurred.final JsonMapContextSession.getSessionProperties()Returns the session properties on this session.protected JsonMapBeanContext.properties()protected JsonMapBeanContextable.properties()protected JsonMapBeanTraverseContext.properties()protected JsonMapBeanTraverseSession.properties()protected JsonMapContext.properties()Returns the properties on this bean as a map for debugging.protected JsonMapContextSession.properties()Returns the properties on this bean as a map for debugging.
- 
Uses of JsonMap in org.apache.juneau.annotationMethods in org.apache.juneau.annotation that return JsonMapModifier and TypeMethodDescriptionstatic JsonMapConverts the specified@Schema annotation into a generic map.static JsonMapExternalDocsAnnotation.merge(JsonMap m, ExternalDocs a) Merges the contents of the specified annotation into the specified generic map.static JsonMapMerges the contents of the specified annotation into the specified generic map.AnnotationImpl.toMap()Returns this annotation as a map of key/value pairs.Methods in org.apache.juneau.annotation with parameters of type JsonMapModifier and TypeMethodDescriptionstatic JsonMapExternalDocsAnnotation.merge(JsonMap m, ExternalDocs a) Merges the contents of the specified annotation into the specified generic map.static JsonMapMerges the contents of the specified annotation into the specified generic map.
- 
Uses of JsonMap in org.apache.juneau.bean.openapi3Methods in org.apache.juneau.bean.openapi3 that return JsonMap
- 
Uses of JsonMap in org.apache.juneau.bean.swaggerMethods in org.apache.juneau.bean.swagger that return JsonMapModifier and TypeMethodDescriptionSwaggerElement.asMap()Returns a copy of this swagger element as a modifiable map.Methods in org.apache.juneau.bean.swagger that return types with arguments of type JsonMapMethods in org.apache.juneau.bean.swagger with parameters of type JsonMapModifier and TypeMethodDescriptionSwagger.addDefinition(String name, JsonMap schema) Bean property appender:definitions .Method parameters in org.apache.juneau.bean.swagger with type arguments of type JsonMapModifier and TypeMethodDescriptionSwagger.setDefinitions(Map<String, JsonMap> value) Bean property setter:definitions .
- 
Uses of JsonMap in org.apache.juneau.collectionsSubclasses of JsonMap in org.apache.juneau.collectionsModifier and TypeClassDescriptionclassUtility class to make it easier to work with command-line arguments pass in through amain(String[] args) method.Fields in org.apache.juneau.collections declared as JsonMapModifier and TypeFieldDescriptionstatic final JsonMapJsonMap.EMPTY_MAPAn empty read-only JsonMap.Methods in org.apache.juneau.collections that return JsonMapModifier and TypeMethodDescriptionAdds an entry to this map.Appends all the entries in the specified map to this map.final <T> JsonMapJsonMap.appendFirst(Predicate<T> test, String key, T... values) Adds the first value that matches the specified predicate.Add if flag istrue .<T> JsonMapAdd if predicate matches value.JsonMap.appendIfAbsent(String key, Object value) Adds a value in this map if the entry does not exist or the current value isnull .<T> JsonMapJsonMap.appendIfAbsentIf(Predicate<T> predicate, String key, T value) Adds a value in this map if the entry does not exist or the current value isnull and the value matches the specified predicate.static JsonMapJsonMap.create()Construct an empty map.Returns a copy of thisJsonMap without the specified keys.JsonMap.filtered()Enables filtering based on default values.Enables filtering based on a predicate test.static JsonMapJsonMap.filteredMap()Construct an empty map.static JsonMapJsonMap.filteredMap(Object... keyValuePairs) Construct a map initialized with the specified key/value pairs.Returns the first entry that exists converted to aJsonMap.JsonList.getMap(int index) Shortcut for callingget(index, JsonMap..class )Returns the specified entry value converted to aMap.Same asgetMap(String)but creates a new emptyJsonMapif it doesn't already exist.Returns the specified entry value converted to aJsonMap.Returns a copy of thisJsonMap with only the specified keys.Set an inner map in this map to allow for chained get calls.The opposite ofremoveAll(String...).JsonMap.modifiable()Returns a modifiable copy of this map if it's unmodifiable.static JsonMapConstruct a map initialized with the specified key/value pairs.static JsonMapConstruct a map initialized with the specified map.static JsonMapConstruct a map initialized with the specified reader containing JSON.static JsonMapJsonMap.ofJson(CharSequence json) Construct a map initialized with the specified JSON string.static JsonMapConstruct a map initialized with the specified string.static JsonMapJsonMap.ofText(CharSequence in, Parser p) Construct a map initialized with the specified string.JsonMap.session(BeanSession session) Override the default bean session used for converting POJOs.JsonMap.setBeanSession(BeanSession value) Sets theBeanSessioncurrently associated with this map.JsonMap.unmodifiable()Returns an unmodifiable copy of this map if it's modifiable.Convenience method for serializing this map to the specifiedWriter using theJsonSerializer.DEFAULTserializer.Methods in org.apache.juneau.collections with parameters of type JsonMap
- 
Uses of JsonMap in org.apache.juneau.configMethods in org.apache.juneau.config that return JsonMapModifier and TypeMethodDescriptionConfig.toMap()Returns the contents of this config as a simple map.Methods in org.apache.juneau.config that return types with arguments of type JsonMap
- 
Uses of JsonMap in org.apache.juneau.config.internalMethods in org.apache.juneau.config.internal that return JsonMap
- 
Uses of JsonMap in org.apache.juneau.config.storeMethods in org.apache.juneau.config.store that return JsonMap
- 
Uses of JsonMap in org.apache.juneau.cpMethods in org.apache.juneau.cp that return JsonMapModifier and TypeMethodDescriptionprotected JsonMapBeanStoreEntry.properties()Returns the properties in this object as a simple map for debugging purposes.
- 
Uses of JsonMap in org.apache.juneau.htmlMethods in org.apache.juneau.html that return JsonMapModifier and TypeMethodDescriptionprotected JsonMapHtmlDocSerializer.properties()protected JsonMapHtmlDocSerializerSession.properties()protected JsonMapHtmlSchemaSerializer.properties()protected JsonMapHtmlSerializer.properties()
- 
Uses of JsonMap in org.apache.juneau.internalSubclasses of JsonMap in org.apache.juneau.internalModifier and TypeClassDescriptionclassDelegateMap<T extends Map>Represents a wrappedMapwhere entries in the map can be removed without affecting the underlying map.Methods in org.apache.juneau.internal that return JsonMapModifier and TypeMethodDescriptionstatic JsonMapUtils2.toPropertyMap(Object o) Searches for allproperties() methods on the specified object and creates a combine map of them.
- 
Uses of JsonMap in org.apache.juneau.jsonMethods in org.apache.juneau.json that return JsonMapModifier and TypeMethodDescriptionprotected JsonMapJsonSchemaSerializer.properties()protected JsonMapJsonSerializer.properties()
- 
Uses of JsonMap in org.apache.juneau.jsonschemaMethods in org.apache.juneau.jsonschema that return JsonMapModifier and TypeMethodDescriptionprotected JsonMapJsonSchemaBeanPropertyMeta.getSchema()Returns the schema information gathered from all the@Schemaannotations on the bean property.protected JsonMapJsonSchemaClassMeta.getSchema()Returns the@Schemaannotation defined on the class.Returns the JSON-schema for the specified object.Returns the JSON-schema for the specified type.Returns the JSON-schema for the specified type.static JsonMapParses a generic object as JSON and converts it to anJsonMap.static JsonMapConcatenates and parses a string array as a JSON object.protected JsonMapJsonSchemaGenerator.properties()Methods in org.apache.juneau.jsonschema that return types with arguments of type JsonMapModifier and TypeMethodDescriptionJsonSchemaGeneratorSession.getBeanDefs()Returns the definitions that were gathered during this session.Methods in org.apache.juneau.jsonschema with parameters of type JsonMapModifier and TypeMethodDescriptionJsonSchemaGeneratorSession.addBeanDef(String id, JsonMap def) Adds a schema definition to this session.
- 
Uses of JsonMap in org.apache.juneau.microservice.resourcesMethods in org.apache.juneau.microservice.resources that return JsonMapModifier and TypeMethodDescriptionConfigResource.getConfig()ConfigResource.getConfigSection(String section) ConfigResource.setConfigContents(Reader contents) ConfigResource.setConfigContentsFormPost(String contents) ConfigResource.setConfigSection(String section, Map<String, Object> contents) 
- 
Uses of JsonMap in org.apache.juneau.msgpackMethods in org.apache.juneau.msgpack that return JsonMap
- 
Uses of JsonMap in org.apache.juneau.objecttoolsMethods in org.apache.juneau.objecttools that return JsonMapModifier and TypeMethodDescriptionObjectRest.getJsonMap(String url) Returns the specified entry value converted to aMap.ObjectRest.getJsonMap(String url, JsonMap defVal) Returns the specified entry value converted to aJsonMap.Methods in org.apache.juneau.objecttools with parameters of type JsonMapModifier and TypeMethodDescriptionObjectRest.getJsonMap(String url, JsonMap defVal) Returns the specified entry value converted to aJsonMap.
- 
Uses of JsonMap in org.apache.juneau.parserMethods in org.apache.juneau.parser that return JsonMapModifier and TypeMethodDescriptionfinal JsonMapParserSession.getLastLocation()Returns information used to determine at what location in the parse a failure occurred.protected JsonMapInputStreamParser.properties()protected JsonMapParser.properties()protected JsonMapParserSession.properties()protected JsonMapReaderParser.properties()protected JsonMapReaderParserSession.properties()Methods in org.apache.juneau.parser with parameters of type JsonMapModifier and TypeMethodDescriptionprotected final ObjectParserSession.cast(JsonMap m, BeanPropertyMeta pMeta, ClassMeta<?> eType) Converts the specifiedJsonMap into a bean identified by the"_type" property in the map.
- 
Uses of JsonMap in org.apache.juneau.reflectMethods in org.apache.juneau.reflect that return JsonMap
- 
Uses of JsonMap in org.apache.juneau.restMethods in org.apache.juneau.rest that return JsonMapModifier and TypeMethodDescriptionprotected JsonMapRestContext.properties()protected JsonMapRestOpContext.properties()
- 
Uses of JsonMap in org.apache.juneau.rest.clientMethods in org.apache.juneau.rest.client that return JsonMapModifier and TypeMethodDescriptionprotected JsonMapRestClient.properties()protected JsonMapRestRequest.properties()
- 
Uses of JsonMap in org.apache.juneau.serializerMethods in org.apache.juneau.serializer that return JsonMapModifier and TypeMethodDescriptionprotected JsonMapOutputStreamSerializer.properties()protected JsonMapSerializer.properties()protected JsonMapSerializerSession.properties()protected JsonMapWriterSerializer.properties()protected JsonMapWriterSerializerSession.properties()
- 
Uses of JsonMap in org.apache.juneau.soapMethods in org.apache.juneau.soap that return JsonMap
- 
Uses of JsonMap in org.apache.juneau.svlSubclasses of JsonMap in org.apache.juneau.svlModifier and TypeClassDescriptionclassSubclass of anJsonMapthat automatically resolves any SVL variables in values.
- 
Uses of JsonMap in org.apache.juneau.swapMethods in org.apache.juneau.swap that return JsonMapMethods in org.apache.juneau.swap with parameters of type JsonMapModifier and TypeMethodDescriptionMapSwap.unswap(BeanSession session, JsonMap f, ClassMeta<?> hint) 
- 
Uses of JsonMap in org.apache.juneau.uonMethods in org.apache.juneau.uon that return JsonMapModifier and TypeMethodDescriptionprotected JsonMapUonParser.properties()protected JsonMapUonParserSession.properties()protected JsonMapUonSerializer.properties()
- 
Uses of JsonMap in org.apache.juneau.urlencodingMethods in org.apache.juneau.urlencoding that return JsonMapModifier and TypeMethodDescriptionprotected JsonMapUrlEncodingParser.properties()protected JsonMapUrlEncodingSerializer.properties()
- 
Uses of JsonMap in org.apache.juneau.utilsSubclasses of JsonMap in org.apache.juneau.utilsModifier and TypeClassDescriptionclassUtility class for working with Jar manifest files.Methods in org.apache.juneau.utils that return JsonMap
- 
Uses of JsonMap in org.apache.juneau.xmlMethods in org.apache.juneau.xml that return JsonMapModifier and TypeMethodDescriptionprotected JsonMapXmlParser.properties()protected JsonMapXmlSerializer.properties()