Package org.refcodes.net
Interface HttpBodyMap
-
- All Superinterfaces:
org.refcodes.structure.CanonicalMap,org.refcodes.structure.CanonicalMap.CanonicalMapBuilder,org.refcodes.structure.CanonicalMap.MutableCanonicalMap,org.refcodes.structure.Clearable,org.refcodes.structure.Containable,org.refcodes.mixin.DelimiterAccessor,org.refcodes.structure.Dictionary<java.lang.String,T>,org.refcodes.structure.Dictionary.MutableDictionary<java.lang.String,T>,org.refcodes.structure.Dictionary.MutableDictionary.DictionaryBuilder<java.lang.String,T,org.refcodes.structure.PathMap.PathMapBuilder<T>>,org.refcodes.mixin.Dumpable,org.refcodes.structure.Keys<java.lang.String,T>,org.refcodes.structure.Keys.MutableKeys<java.lang.String,T>,org.refcodes.structure.Keys.MutableValues<java.lang.String,T>,java.util.Map<java.lang.String,T>,org.refcodes.structure.PathMap<java.lang.String>,org.refcodes.structure.PathMap.MutablePathMap<java.lang.String>,org.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>,org.refcodes.structure.PropertiesAccessorMixin,org.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>,org.refcodes.structure.PropertiesAccessorMixin.PropertiesMixin,org.refcodes.structure.PropertiesAccessorMixin.PropertiesMutatorMixin,org.refcodes.mixin.TypeAccessor<java.lang.String>
- All Known Implementing Classes:
HttpBodyMapImpl
public interface HttpBodyMap extends org.refcodes.structure.CanonicalMap.CanonicalMapBuilderTheHttpBodyMaptype is a "dynamic" type in terms of it's structure being represented by paths'. When a data structure is parsed e.g. from JSON or XML, then the data structure's internal structure and values are reflected by according paths's and values in theHttpBodyMap. TheHttpBodyMapis actually a specialization of thePathMapusingStringobjects as values and a slash ("/") as path delimiter. Using theHttpBodyMapit is convenient to navigate or address elements from unknown or dynamic data structures. The other way round theHttpBodyMapmay be used to construct dynamic data types by adding the according paths's and values for marshaling into e.g. JSON or XML. Think of anHttpBodyMapas a flattened JSON or XML structure. TheHttpClientResponseImpl,HttpServerRequestImpl,HttpServerResponseImplas well as theHttpClientResponseImplimplementations directly support theHttpBodyMap, given that theMediaTypeFactorybeing used supports marshaling and unmarshaling from and to nestedMapinstances. TheHttpBodyMapacts as a view of the nestedMapstructures, which are somehow inconvenient to navigate through. TheHttpClientRequest.setRequest(Object)implementation supports theHttpBodyMapto marshal anHttpBodyMapinto an HTTP Request-Body. TheHttpClientResponse.getResponse(Class)implementation supports theHttpBodyMapto unmarshal an HTTP Response-Body into anHttpBodyMap. TheHttpServerRequest.getRequest(Class)implementation supports theHttpBodyMapto unmarshal an HTTP Request-Body into anHttpBodyMap. TheHttpServerResponse.setResponse(Object)implementation supports theHttpBodyMapto marshal anHttpBodyMapinto an HTTP Request-Body.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.structure.CanonicalMap
org.refcodes.structure.CanonicalMap.CanonicalMapBuilder, org.refcodes.structure.CanonicalMap.MutableCanonicalMap
-
Nested classes/interfaces inherited from interface org.refcodes.mixin.DelimiterAccessor
org.refcodes.mixin.DelimiterAccessor.DelimiterBuilder<B extends org.refcodes.mixin.DelimiterAccessor.DelimiterBuilder<B>>, org.refcodes.mixin.DelimiterAccessor.DelimiterMutator, org.refcodes.mixin.DelimiterAccessor.DelimiterProperty
-
Nested classes/interfaces inherited from interface org.refcodes.structure.Dictionary
org.refcodes.structure.Dictionary.MutableDictionary<K extends java.lang.Object,V extends java.lang.Object>
-
Nested classes/interfaces inherited from interface org.refcodes.structure.Dictionary.MutableDictionary
org.refcodes.structure.Dictionary.MutableDictionary.DictionaryBuilder<K extends java.lang.Object,V extends java.lang.Object,B extends org.refcodes.structure.Dictionary.MutableDictionary.DictionaryBuilder<K,V,B>>
-
Nested classes/interfaces inherited from interface java.util.Map
java.util.Map.Entry<K extends java.lang.Object,V extends java.lang.Object>
-
Nested classes/interfaces inherited from interface org.refcodes.structure.PathMap
org.refcodes.structure.PathMap.MutablePathMap<T extends java.lang.Object>, org.refcodes.structure.PathMap.PathMapBuilder<T extends java.lang.Object>
-
Nested classes/interfaces inherited from interface org.refcodes.structure.PropertiesAccessorMixin
org.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<T extends java.lang.Object>, org.refcodes.structure.PropertiesAccessorMixin.PropertiesMixin, org.refcodes.structure.PropertiesAccessorMixin.PropertiesMutatorMixin
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringSTATUS_ALIAS_PATHstatic java.lang.StringSTATUS_CODE_PATHstatic java.lang.StringSTATUS_EXCEPTION_PATHstatic java.lang.StringSTATUS_MESSAGE_PATHstatic java.lang.StringSTATUS_TIMESTAMP_PATH
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.lang.Stringdelete(java.lang.String aKey)default HttpBodyMapgetDirAt(int aIndex)default HttpBodyMapgetDirAt(java.lang.String aPath, int aIndex)default java.lang.StringgetStatusAlias()Retrieves the default path's ("status/alias") status alias.default HttpStatusCodegetStatusCode()Retrieves the default path's ("status/code") status code.default java.lang.Class<?>getStatusException()Retrieves the default path's ("status/exception") status exception.default java.lang.StringgetStatusMessage()Retrieves the default path's ("status/message") status message.default java.lang.LonggetStatusTimeStamp()Retrieves the default path's ("status/Time-Stamp") status Time-Stamp.default booleanhasStatusAlias()Determines whether a default path's ("status/alias") status alias exists.default booleanhasStatusCode()Determines whether a default path's ("status/code") status code exists.default booleanhasStatusException()Determines whether a default path's ("status/exception") status exception exists.default booleanhasStatusMessage()Determines whether a default path's ("status/message") status message exists.default booleanhasStatusTimeStamp()Determines whether a default path's ("status/Time-Stamp") status Time-Stamp in milliseconds exists.default HttpBodyMapputDirAt(int aIndex, java.lang.Object aDir)default HttpBodyMapputDirAt(int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapputDirAt(java.lang.Object[] aPathElements, int aIndex, java.lang.Object aDir)default HttpBodyMapputDirAt(java.lang.Object[] aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapputDirAt(java.lang.Object aPath, int aIndex, java.lang.Object aDir)default HttpBodyMapputDirAt(java.lang.Object aPath, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapputDirAt(java.lang.String[] aPathElements, int aIndex, java.lang.Object aDir)default HttpBodyMapputDirAt(java.lang.String[] aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapputDirAt(java.lang.String aPath, int aIndex, java.lang.Object aDir)default HttpBodyMapputDirAt(java.lang.String aPath, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapputDirAt(java.util.Collection<?> aPathElements, int aIndex, java.lang.Object aDir)default HttpBodyMapputDirAt(java.util.Collection<?> aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default java.lang.StringputStatusAlias(java.lang.String aStatusAlias)Puts a default path's ("status/alias") status alias.default java.lang.StringputStatusAlias(HttpStatusCode aStatusCode)Puts a default path's ("status/alias") status alias.default java.lang.StringputStatusCode(int aStatusCode)Puts a default path's ("status/code") status code.default java.lang.StringputStatusCode(HttpStatusCode aStatusCode)Puts a default path's ("status/code") status code.default java.lang.StringputStatusException(java.lang.Class<java.lang.Exception> aStatusException)Puts a default path's ("status/exception") status exception.default java.lang.StringputStatusException(java.lang.Exception aStatusException)Puts a default path's ("status/exception") status exception.default java.lang.StringputStatusMessage(java.lang.String aStatusMessage)Puts a default path's ("status/message") status message.default java.lang.StringputStatusTimeStamp()Puts a default path's ("status/Time-Stamp") status Time-Stamp to the current time in milliseconds as ofSystem.currentTimeMillis()default java.lang.StringputStatusTimeStamp(long aStatusTimeStamp)Puts a default path's ("status/Time-Stamp") status Time-Stamp in milliseconds.default HttpBodyMapquery(java.lang.Object... aQueryElements)default HttpBodyMapquery(java.lang.String aPathQuery)default HttpBodyMapquery(java.lang.String... aQueryElements)default HttpBodyMapquery(java.util.Collection<?> aQueryElements)default HttpBodyMapqueryBetween(java.lang.Object[] aFromPath, java.lang.Object[] aPathQuery, java.lang.Object[] aToPath)default HttpBodyMapqueryBetween(java.lang.Object aFromPath, java.lang.Object aPathQuery, java.lang.Object aToPath)default HttpBodyMapqueryBetween(java.lang.String[] aFromPath, java.lang.String[] aPathQuery, java.lang.String[] aToPath)default HttpBodyMapqueryBetween(java.lang.String aFromPath, java.lang.String aPathQuery, java.lang.String aToPath)default HttpBodyMapqueryBetween(java.util.Collection<?> aFromPath, java.util.Collection<?> aPathQuery, java.util.Collection<?> aToPath)default HttpBodyMapqueryFrom(java.lang.Object[] aPathQuery, java.lang.Object[] aFromPath)default HttpBodyMapqueryFrom(java.lang.Object aPathQuery, java.lang.Object aFromPath)default HttpBodyMapqueryFrom(java.lang.String[] aPathQuery, java.lang.String[] aFromPath)default HttpBodyMapqueryFrom(java.lang.String aPathQuery, java.lang.String aFromPath)default HttpBodyMapqueryFrom(java.util.Collection<?> aPathQuery, java.util.Collection<?> aFromPath)default HttpBodyMapqueryTo(java.lang.Object[] aPathQuery, java.lang.String aToPath)default HttpBodyMapqueryTo(java.lang.Object aPathQuery, java.lang.String aToPath)default HttpBodyMapqueryTo(java.lang.String[] aPathQuery, java.lang.String aToPath)default HttpBodyMapqueryTo(java.lang.String aPathQuery, java.lang.String aToPath)default HttpBodyMapqueryTo(java.util.Collection<?> aPathQuery, java.lang.String aToPath)default HttpBodyMapremoveAll(java.lang.String aPathQuery)default HttpBodyMapremoveAll(java.util.Set<java.lang.String> aPaths)default HttpBodyMapremoveDirAt(int aIndex)default HttpBodyMapremoveDirAt(java.lang.Object[] aPathElements, int aIndex)default HttpBodyMapremoveDirAt(java.lang.Object aPath, int aIndex)default HttpBodyMapremoveDirAt(java.lang.String[] aPathElements, int aIndex)default HttpBodyMapremoveDirAt(java.lang.String aPath, int aIndex)default HttpBodyMapremoveFrom(java.lang.Object aPath)default HttpBodyMapremoveFrom(java.lang.Object... aPathElements)default HttpBodyMapremoveFrom(java.lang.String aPath)default HttpBodyMapremoveFrom(java.lang.String... aPathElements)default HttpBodyMapretrieveBetween(java.lang.Object[] aFromPath, java.lang.Object[] aToPath)default HttpBodyMapretrieveBetween(java.lang.Object aFromPath, java.lang.Object aToPath)default HttpBodyMapretrieveBetween(java.lang.String[] aFromPath, java.lang.String[] aToPath)HttpBodyMapretrieveBetween(java.lang.String aFromPath, java.lang.String aToPath)default HttpBodyMapretrieveBetween(java.util.Collection<?> aFromPath, java.util.Collection<?> aToPath)default HttpBodyMapretrieveFrom(java.lang.Object aParentPath)default HttpBodyMapretrieveFrom(java.lang.Object... aPathElements)HttpBodyMapretrieveFrom(java.lang.String aFromPath)default HttpBodyMapretrieveFrom(java.lang.String... aPathElements)default HttpBodyMapretrieveFrom(java.util.Collection<?> aPathElements)default HttpBodyMapretrieveTo(java.lang.Object aToPath)default HttpBodyMapretrieveTo(java.lang.Object... aToPathElements)HttpBodyMapretrieveTo(java.lang.String aToPath)default HttpBodyMapretrieveTo(java.lang.String... aToPathElements)default HttpBodyMapretrieveTo(java.util.Collection<?> aToPathElements)default HttpBodyMapwithInsert(java.lang.Object aObj)default HttpBodyMapwithInsert(org.refcodes.structure.PathMap<java.lang.String> aFrom)default HttpBodyMapwithInsertBetween(java.lang.Object[] aToPathElements, java.lang.Object aFrom, java.lang.Object[] aFromPathElements)default HttpBodyMapwithInsertBetween(java.lang.Object[] aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.Object[] aFromPathElements)default HttpBodyMapwithInsertBetween(java.lang.Object aToPath, java.lang.Object aFrom, java.lang.Object aFromPath)default HttpBodyMapwithInsertBetween(java.lang.Object aToPath, org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.Object aFromPath)default HttpBodyMapwithInsertBetween(java.lang.String[] aToPathElements, java.lang.Object aFrom, java.lang.String[] aFromPathElements)default HttpBodyMapwithInsertBetween(java.lang.String[] aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.String[] aFromPathElements)default HttpBodyMapwithInsertBetween(java.lang.String aToPath, java.lang.Object aFrom, java.lang.String aFromPath)default HttpBodyMapwithInsertBetween(java.lang.String aToPath, org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.String aFromPath)default HttpBodyMapwithInsertBetween(java.util.Collection<?> aToPathElements, java.lang.Object aFrom, java.util.Collection<?> aFromPathElements)default HttpBodyMapwithInsertBetween(java.util.Collection<?> aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom, java.util.Collection<?> aFromPathElements)default HttpBodyMapwithInsertFrom(java.lang.Object aFrom, java.lang.Object aFromPath)default HttpBodyMapwithInsertFrom(java.lang.Object aFrom, java.lang.Object[] aFromPathElements)default HttpBodyMapwithInsertFrom(java.lang.Object aFrom, java.lang.String aFromPath)default HttpBodyMapwithInsertFrom(java.lang.Object aFrom, java.lang.String[] aFromPathElements)default HttpBodyMapwithInsertFrom(java.lang.Object aFrom, java.util.Collection<?> aFromPathElements)default HttpBodyMapwithInsertFrom(org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.Object aFromPath)default HttpBodyMapwithInsertFrom(org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.Object[] aFromPathElements)default HttpBodyMapwithInsertFrom(org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.String aFromPath)default HttpBodyMapwithInsertFrom(org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.String[] aFromPathElements)default HttpBodyMapwithInsertFrom(org.refcodes.structure.PathMap<java.lang.String> aFrom, java.util.Collection<?> aFromPathElements)default HttpBodyMapwithInsertTo(java.lang.Object[] aToPathElements, java.lang.Object aFrom)default HttpBodyMapwithInsertTo(java.lang.Object[] aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom)default HttpBodyMapwithInsertTo(java.lang.Object aToPath, java.lang.Object aFrom)default HttpBodyMapwithInsertTo(java.lang.Object aToPath, org.refcodes.structure.PathMap<java.lang.String> aFrom)default HttpBodyMapwithInsertTo(java.lang.String[] aToPathElements, java.lang.Object aFrom)default HttpBodyMapwithInsertTo(java.lang.String[] aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom)default HttpBodyMapwithInsertTo(java.lang.String aToPath, java.lang.Object aFrom)default HttpBodyMapwithInsertTo(java.lang.String aToPath, org.refcodes.structure.PathMap<java.lang.String> aFrom)default HttpBodyMapwithInsertTo(java.util.Collection<?> aToPathElements, java.lang.Object aFrom)default HttpBodyMapwithInsertTo(java.util.Collection<?> aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom)default HttpBodyMapwithPut(java.lang.Object[] aPathElements, java.lang.String aValue)default HttpBodyMapwithPut(java.lang.Object aPath, java.lang.String aValue)default HttpBodyMapwithPut(java.lang.String[] aPathElements, java.lang.String aValue)default HttpBodyMapwithPut(java.lang.String aKey, java.lang.String aValue)default HttpBodyMapwithPut(java.util.Collection<?> aPathElements, java.lang.String aValue)default HttpBodyMapwithPut(org.refcodes.structure.Relation<java.lang.String,java.lang.String> aRelation)default HttpBodyMapwithPutBoolean(java.lang.Object[] aPathElements, java.lang.Boolean aValue)default HttpBodyMapwithPutBoolean(java.lang.Object aKey, java.lang.Boolean aValue)default HttpBodyMapwithPutBoolean(java.lang.String[] aPathElements, java.lang.Boolean aValue)default HttpBodyMapwithPutBoolean(java.lang.String aKey, java.lang.Boolean aValue)default HttpBodyMapwithPutBoolean(java.util.Collection<?> aPathElements, java.lang.Boolean aValue)default HttpBodyMapwithPutByte(java.lang.Object[] aPathElements, java.lang.Byte aValue)default HttpBodyMapwithPutByte(java.lang.Object aKey, java.lang.Byte aValue)default HttpBodyMapwithPutByte(java.lang.String[] aPathElements, java.lang.Byte aValue)default HttpBodyMapwithPutByte(java.lang.String aKey, java.lang.Byte aValue)default HttpBodyMapwithPutByte(java.util.Collection<?> aPathElements, java.lang.Byte aValue)default HttpBodyMapwithPutDirAt(int aIndex, java.lang.Object aDir)default HttpBodyMapwithPutDirAt(int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapwithPutDirAt(java.lang.Object[] aPathElements, int aIndex, java.lang.Object aDir)default HttpBodyMapwithPutDirAt(java.lang.Object[] aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapwithPutDirAt(java.lang.Object aPath, int aIndex, java.lang.Object aDir)default HttpBodyMapwithPutDirAt(java.lang.Object aPath, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapwithPutDirAt(java.lang.String[] aPathElements, int aIndex, java.lang.Object aDir)default HttpBodyMapwithPutDirAt(java.lang.String[] aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapwithPutDirAt(java.lang.String aPath, int aIndex, java.lang.Object aDir)default HttpBodyMapwithPutDirAt(java.lang.String aPath, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapwithPutDirAt(java.util.Collection<?> aPathElements, int aIndex, java.lang.Object aDir)default HttpBodyMapwithPutDirAt(java.util.Collection<?> aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir)default HttpBodyMapwithPutDouble(java.lang.Object[] aPathElements, java.lang.Double aValue)default HttpBodyMapwithPutDouble(java.lang.Object aKey, java.lang.Double aValue)default HttpBodyMapwithPutDouble(java.lang.String[] aPathElements, java.lang.Double aValue)default HttpBodyMapwithPutDouble(java.lang.String aKey, java.lang.Double aValue)default HttpBodyMapwithPutDouble(java.util.Collection<?> aPathElements, java.lang.Double aValue)default HttpBodyMapwithPutFloat(java.lang.Object[] aPathElements, java.lang.Float aValue)default HttpBodyMapwithPutFloat(java.lang.Object aKey, java.lang.Float aValue)default HttpBodyMapwithPutFloat(java.lang.String[] aPathElements, java.lang.Float aValue)default HttpBodyMapwithPutFloat(java.lang.String aKey, java.lang.Float aValue)default HttpBodyMapwithPutFloat(java.util.Collection<?> aPathElements, java.lang.Float aValue)default HttpBodyMapwithPutInteger(java.lang.Object[] aPathElements, java.lang.Integer aValue)default HttpBodyMapwithPutInteger(java.lang.Object aKey, java.lang.Integer aValue)default HttpBodyMapwithPutInteger(java.lang.String[] aPathElements, java.lang.Integer aValue)default HttpBodyMapwithPutInteger(java.lang.String aKey, java.lang.Integer aValue)default HttpBodyMapwithPutInteger(java.util.Collection<?> aPathElements, java.lang.Integer aValue)default HttpBodyMapwithPutLong(java.lang.Object[] aPathElements, java.lang.Long aValue)default HttpBodyMapwithPutLong(java.lang.Object aKey, java.lang.Long aValue)default HttpBodyMapwithPutLong(java.lang.String[] aPathElements, java.lang.Long aValue)default HttpBodyMapwithPutLong(java.lang.String aKey, java.lang.Long aValue)default HttpBodyMapwithPutLong(java.util.Collection<?> aPathElements, java.lang.Long aValue)default HttpBodyMapwithPutShort(java.lang.Object[] aPathElements, java.lang.Short aValue)default HttpBodyMapwithPutShort(java.lang.Object aKey, java.lang.Short aValue)default HttpBodyMapwithPutShort(java.lang.String[] aPathElements, java.lang.Short aValue)default HttpBodyMapwithPutShort(java.lang.String aKey, java.lang.Short aValue)default HttpBodyMapwithPutShort(java.util.Collection<?> aPathElements, java.lang.Short aValue)default HttpBodyMapwithPutStatusAlias(java.lang.String aStatusAlias)Puts a default path's ("status/alias") status alias.default HttpBodyMapwithPutStatusAlias(HttpStatusCode aStatusCode)Puts a default path's ("status/alias") status alias.default HttpBodyMapwithPutStatusCode(int aStatusCode)Puts a default path's ("status/code") status code.default HttpBodyMapwithPutStatusCode(HttpStatusCode aStatusCode)Puts a default path's ("status/code") status code.default HttpBodyMapwithRemoveFrom(java.lang.Object aPath)default HttpBodyMapwithRemoveFrom(java.lang.Object... aPathElements)default HttpBodyMapwithRemoveFrom(java.lang.String aPath)default HttpBodyMapwithRemoveFrom(java.lang.String... aPathElements)default HttpBodyMapwithRemoveFrom(java.util.Collection<?> aPathElements)-
Methods inherited from interface org.refcodes.structure.CanonicalMap
getBoolean, getBoolean, getBooleanOr, getBooleanOr, getByte, getByte, getByteOr, getByteOr, getCharacter, getCharacter, getCharacterOr, getCharacterOr, getDouble, getDouble, getDoubleOr, getDoubleOr, getFloat, getFloat, getFloatOr, getFloatOr, getInteger, getInteger, getIntegerOr, getIntegerOr, getLong, getLong, getLongOr, getLongOr, getShort, getShort, getShortOr, getShortOr, toInstance, toInstance, toMap, toProperties, toType, toType
-
Methods inherited from interface org.refcodes.structure.CanonicalMap.MutableCanonicalMap
containsValue, insert, insertBetween, insertFrom, insertTo, put, put, put, putAll, putAll, putAll, putBoolean, putBoolean, putByte, putByte, putDouble, putDouble, putFloat, putFloat, putInteger, putInteger, putLong, putLong, putShort, putShort, removeFrom, toDump, toSourceCode, toSourceCode
-
Methods inherited from interface java.util.Map
clear, compute, computeIfAbsent, computeIfPresent, containsKey, entry, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keySet, merge, of, of, of, of, of, of, of, of, of, of, of, ofEntries, put, putIfAbsent, remove, remove, replace, replace, replaceAll, size, values
-
Methods inherited from interface org.refcodes.structure.PathMap
children, children, children, children, children, children, containsKey, containsKey, containsKey, dirs, dirs, dirs, dirs, dirs, dirs, fromExternalPath, get, get, get, getArray, getArray, getArray, getArray, getArray, getArrayIndexes, getArrayIndexes, getArrayIndexes, getArrayIndexes, getArrayIndexes, getDirAt, getDirAt, getDirAt, getDirAt, getDirIndexes, getDirIndexes, getDirIndexes, getDirIndexes, getDirIndexes, getRootPath, getValueAt, getValueAt, getValueAt, getValueAt, getValueAt, getValueAt, hasChildren, hasChildren, hasChildren, hasChildren, hasChildren, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasDirAt, hasParentPath, hasPath, hasPath, hasPath, hasPath, hasValueAt, hasValueAt, hasValueAt, hasValueAt, hasValueAt, hasValueAt, hasValueAt, hasValueAt, isArray, isArray, isArray, isArray, isArray, isArray, isArrayIndex, isArrayIndex, isArrayIndex, isArrayIndex, isArrayIndex, isArrayIndex, isChild, isChild, isChild, isChild, isDir, isDir, isDir, isDir, isDir, isDirIndex, isDirIndex, isDirIndex, isDirIndex, isDirIndex, isLeaf, isLeaf, isLeaf, isLeaf, isLeaf, isRootPath, keySet, lastArrayIndex, lastArrayIndex, lastArrayIndex, lastArrayIndex, lastArrayIndex, lastArrayIndex, lastDirIndex, lastDirIndex, lastDirIndex, lastDirIndex, lastDirIndex, lastDirIndex, leaves, leaves, leaves, leaves, leaves, leaves, nextArrayIndex, nextArrayIndex, nextArrayIndex, nextArrayIndex, nextArrayIndex, nextArrayIndex, nextDirIndex, nextDirIndex, nextDirIndex, nextDirIndex, nextDirIndex, nextDirIndex, paths, paths, paths, paths, paths, paths, queryPaths, queryPaths, queryPaths, queryPaths, queryPaths, toDataStructure, toDataStructure, toExternalPath, toLeaf, toMap, toNormalizedPath, toParentPath, toPath, toPath, toPath, toPathElements, toPathList, toPropertyPath
-
Methods inherited from interface org.refcodes.structure.PathMap.MutablePathMap
appendDirTo, appendDirTo, appendDirTo, appendDirTo, appendDirTo, appendDirTo, appendDirTo, appendDirTo, appendDirTo, appendDirTo, appendDirTo, appendDirTo, appendValueTo, appendValueTo, appendValueTo, appendValueTo, appendValueTo, appendValueTo, delete, delete, delete, delete, insert, insert, insertBetween, insertBetween, insertBetween, insertBetween, insertBetween, insertBetween, insertBetween, insertBetween, insertBetween, insertBetween, insertFrom, insertFrom, insertFrom, insertFrom, insertFrom, insertFrom, insertFrom, insertFrom, insertFrom, insertFrom, insertTo, insertTo, insertTo, insertTo, insertTo, insertTo, insertTo, insertTo, insertTo, insertTo, put, putArray, putArray, putArray, putArray, putArray, putArray, putArray, putArray, putArray, putArray, putArray, putArray, putValueAt, putValueAt, putValueAt, putValueAt, putValueAt, remove, remove, removeValueAt, removeValueAt, removeValueAt, removeValueAt, removeValueAt
-
Methods inherited from interface org.refcodes.structure.PropertiesAccessorMixin
asArray, asArray, asArray, asArray, asBooleanArray, asBooleanArray, asBooleanArray, asBooleanArray, asByteArray, asByteArray, asByteArray, asByteArray, asCharacterArray, asCharacterArray, asCharacterArray, asCharacterArray, asDoubleArray, asDoubleArray, asDoubleArray, asDoubleArray, asFloatArray, asFloatArray, asFloatArray, asFloatArray, asIntegerArray, asIntegerArray, asIntegerArray, asIntegerArray, asLongArray, asLongArray, asLongArray, asLongArray, asShortArray, asShortArray, asShortArray, asShortArray, getBoolean, getBoolean, getBooleanOr, getBooleanOr, getByte, getByte, getByteOr, getByteOr, getCharacter, getCharacter, getCharacterOr, getCharacterOr, getDouble, getDouble, getDoubleOr, getDoubleOr, getFloat, getFloat, getFloatOr, getFloatOr, getInteger, getInteger, getIntegerOr, getIntegerOr, getLong, getLong, getLongOr, getLongOr, getShort, getShort, getShortOr, getShortOr
-
Methods inherited from interface org.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin
withPut
-
-
-
-
Field Detail
-
STATUS_CODE_PATH
static final java.lang.String STATUS_CODE_PATH
- See Also:
- Constant Field Values
-
STATUS_ALIAS_PATH
static final java.lang.String STATUS_ALIAS_PATH
- See Also:
- Constant Field Values
-
STATUS_MESSAGE_PATH
static final java.lang.String STATUS_MESSAGE_PATH
- See Also:
- Constant Field Values
-
STATUS_EXCEPTION_PATH
static final java.lang.String STATUS_EXCEPTION_PATH
- See Also:
- Constant Field Values
-
STATUS_TIMESTAMP_PATH
static final java.lang.String STATUS_TIMESTAMP_PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
delete
default java.lang.String delete(java.lang.String aKey)
- Specified by:
deletein interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
deletein interfaceorg.refcodes.structure.Keys.MutableKeys<java.lang.String,T extends java.lang.Object>- Specified by:
deletein interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
getDirAt
default HttpBodyMap getDirAt(int aIndex)
- Specified by:
getDirAtin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
getDirAtin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
getDirAt
default HttpBodyMap getDirAt(java.lang.String aPath, int aIndex)
- Specified by:
getDirAtin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
getDirAtin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
getStatusAlias
default java.lang.String getStatusAlias()
Retrieves the default path's ("status/alias") status alias.- Returns:
- The previously set value for the status alias default path.
-
getStatusCode
default HttpStatusCode getStatusCode()
Retrieves the default path's ("status/code") status code.- Returns:
- The previously set value for the status code default path.
-
getStatusException
default java.lang.Class<?> getStatusException()
Retrieves the default path's ("status/exception") status exception.- Returns:
- The previously set value for the status exception default path.
-
getStatusMessage
default java.lang.String getStatusMessage()
Retrieves the default path's ("status/message") status message.- Returns:
- The previously set value for the status message default path.
-
getStatusTimeStamp
default java.lang.Long getStatusTimeStamp()
Retrieves the default path's ("status/Time-Stamp") status Time-Stamp.- Returns:
- The previously set value for the status Time-Stamp default path.
-
hasStatusAlias
default boolean hasStatusAlias()
Determines whether a default path's ("status/alias") status alias exists.- Returns:
- True in case there is a valid value for the status alias default path.
-
hasStatusCode
default boolean hasStatusCode()
Determines whether a default path's ("status/code") status code exists.- Returns:
- True in case there is a valid value for the status code default path.
-
hasStatusException
default boolean hasStatusException()
Determines whether a default path's ("status/exception") status exception exists.- Returns:
- True in case there is a valid value for the status exception default path.
-
hasStatusMessage
default boolean hasStatusMessage()
Determines whether a default path's ("status/message") status message exists.- Returns:
- True in case there is a valid value for the status message default path.
-
hasStatusTimeStamp
default boolean hasStatusTimeStamp()
Determines whether a default path's ("status/Time-Stamp") status Time-Stamp in milliseconds exists.- Returns:
- True in case there is a valid value for the status Time-Stamp default path.
-
putDirAt
default HttpBodyMap putDirAt(java.util.Collection<?> aPathElements, int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(java.util.Collection<?> aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(java.lang.Object aPath, int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(java.lang.Object aPath, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(java.lang.Object[] aPathElements, int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(java.lang.Object[] aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(java.lang.String aPath, int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(java.lang.String aPath, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(java.lang.String[] aPathElements, int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putDirAt
default HttpBodyMap putDirAt(java.lang.String[] aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
putDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
putDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
putStatusAlias
default java.lang.String putStatusAlias(HttpStatusCode aStatusCode)
Puts a default path's ("status/alias") status alias.- Parameters:
aStatusCode- TheHttpStatusCode, which's verbose alias is to be set.- Returns:
- The previously set value for the status alias default path.
-
putStatusAlias
default java.lang.String putStatusAlias(java.lang.String aStatusAlias)
Puts a default path's ("status/alias") status alias.- Parameters:
aStatusAlias- The status alias value to be set.- Returns:
- The previously set value for the status alias default path.
-
putStatusCode
default java.lang.String putStatusCode(HttpStatusCode aStatusCode)
Puts a default path's ("status/code") status code.- Parameters:
aStatusCode- TheHttpStatusCodeto be set.- Returns:
- The previously set value for the status code default path.
-
putStatusCode
default java.lang.String putStatusCode(int aStatusCode)
Puts a default path's ("status/code") status code.- Parameters:
aStatusCode- The status code value to be set.- Returns:
- The previously set value for the status code default path.
-
putStatusException
default java.lang.String putStatusException(java.lang.Class<java.lang.Exception> aStatusException)
Puts a default path's ("status/exception") status exception.- Parameters:
aStatusException- The status exception value to be set.- Returns:
- The previously set value for the status exception default path.
-
putStatusException
default java.lang.String putStatusException(java.lang.Exception aStatusException)
Puts a default path's ("status/exception") status exception.- Parameters:
aStatusException- The status exception value to be set.- Returns:
- The previously set value for the status exception default path.
-
putStatusMessage
default java.lang.String putStatusMessage(java.lang.String aStatusMessage)
Puts a default path's ("status/message") status message.- Parameters:
aStatusMessage- The status message value to be set.- Returns:
- The previously set value for the status message default path.
-
putStatusTimeStamp
default java.lang.String putStatusTimeStamp()
Puts a default path's ("status/Time-Stamp") status Time-Stamp to the current time in milliseconds as ofSystem.currentTimeMillis()- Returns:
- The previously set value for the status Time-Stamp default path.
-
putStatusTimeStamp
default java.lang.String putStatusTimeStamp(long aStatusTimeStamp)
Puts a default path's ("status/Time-Stamp") status Time-Stamp in milliseconds.- Parameters:
aStatusTimeStamp- The status Time-Stamp value to be set.- Returns:
- The previously set value for the status Time-Stamp default path.
-
query
default HttpBodyMap query(java.util.Collection<?> aQueryElements)
- Specified by:
queryin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
query
default HttpBodyMap query(java.lang.Object... aQueryElements)
- Specified by:
queryin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
query
default HttpBodyMap query(java.lang.String aPathQuery)
- Specified by:
queryin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
query
default HttpBodyMap query(java.lang.String... aQueryElements)
- Specified by:
queryin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryBetween
default HttpBodyMap queryBetween(java.util.Collection<?> aFromPath, java.util.Collection<?> aPathQuery, java.util.Collection<?> aToPath)
- Specified by:
queryBetweenin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryBetweenin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryBetween
default HttpBodyMap queryBetween(java.lang.Object aFromPath, java.lang.Object aPathQuery, java.lang.Object aToPath)
- Specified by:
queryBetweenin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryBetweenin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryBetween
default HttpBodyMap queryBetween(java.lang.Object[] aFromPath, java.lang.Object[] aPathQuery, java.lang.Object[] aToPath)
- Specified by:
queryBetweenin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryBetweenin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryBetween
default HttpBodyMap queryBetween(java.lang.String aFromPath, java.lang.String aPathQuery, java.lang.String aToPath)
- Specified by:
queryBetweenin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryBetweenin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryBetween
default HttpBodyMap queryBetween(java.lang.String[] aFromPath, java.lang.String[] aPathQuery, java.lang.String[] aToPath)
- Specified by:
queryBetweenin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryBetweenin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryFrom
default HttpBodyMap queryFrom(java.util.Collection<?> aPathQuery, java.util.Collection<?> aFromPath)
- Specified by:
queryFromin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryFromin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryFrom
default HttpBodyMap queryFrom(java.lang.Object aPathQuery, java.lang.Object aFromPath)
- Specified by:
queryFromin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryFromin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryFrom
default HttpBodyMap queryFrom(java.lang.Object[] aPathQuery, java.lang.Object[] aFromPath)
- Specified by:
queryFromin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryFromin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryFrom
default HttpBodyMap queryFrom(java.lang.String aPathQuery, java.lang.String aFromPath)
- Specified by:
queryFromin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryFromin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryFrom
default HttpBodyMap queryFrom(java.lang.String[] aPathQuery, java.lang.String[] aFromPath)
- Specified by:
queryFromin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryFromin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryTo
default HttpBodyMap queryTo(java.util.Collection<?> aPathQuery, java.lang.String aToPath)
- Specified by:
queryToin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryToin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryTo
default HttpBodyMap queryTo(java.lang.Object aPathQuery, java.lang.String aToPath)
- Specified by:
queryToin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryToin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryTo
default HttpBodyMap queryTo(java.lang.Object[] aPathQuery, java.lang.String aToPath)
- Specified by:
queryToin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryToin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryTo
default HttpBodyMap queryTo(java.lang.String aPathQuery, java.lang.String aToPath)
- Specified by:
queryToin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryToin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
queryTo
default HttpBodyMap queryTo(java.lang.String[] aPathQuery, java.lang.String aToPath)
- Specified by:
queryToin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
queryToin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
removeAll
default HttpBodyMap removeAll(java.util.Set<java.lang.String> aPaths)
- Specified by:
removeAllin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeAllin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
removeAll
default HttpBodyMap removeAll(java.lang.String aPathQuery)
- Specified by:
removeAllin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeAllin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
removeDirAt
default HttpBodyMap removeDirAt(int aIndex)
- Specified by:
removeDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
removeDirAt
default HttpBodyMap removeDirAt(java.lang.Object aPath, int aIndex)
- Specified by:
removeDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
removeDirAt
default HttpBodyMap removeDirAt(java.lang.Object[] aPathElements, int aIndex)
- Specified by:
removeDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
removeDirAt
default HttpBodyMap removeDirAt(java.lang.String aPath, int aIndex)
- Specified by:
removeDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
removeDirAt
default HttpBodyMap removeDirAt(java.lang.String[] aPathElements, int aIndex)
- Specified by:
removeDirAtin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeDirAtin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
removeFrom
default HttpBodyMap removeFrom(java.lang.Object... aPathElements)
- Specified by:
removeFromin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeFromin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
removeFrom
default HttpBodyMap removeFrom(java.lang.Object aPath)
- Specified by:
removeFromin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeFromin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
removeFrom
default HttpBodyMap removeFrom(java.lang.String aPath)
- Specified by:
removeFromin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeFromin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
removeFrom
default HttpBodyMap removeFrom(java.lang.String... aPathElements)
- Specified by:
removeFromin interfaceorg.refcodes.structure.CanonicalMap.MutableCanonicalMap- Specified by:
removeFromin interfaceorg.refcodes.structure.PathMap.MutablePathMap<java.lang.String>
-
retrieveBetween
default HttpBodyMap retrieveBetween(java.util.Collection<?> aFromPath, java.util.Collection<?> aToPath)
- Specified by:
retrieveBetweenin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveBetweenin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveBetween
default HttpBodyMap retrieveBetween(java.lang.Object aFromPath, java.lang.Object aToPath)
- Specified by:
retrieveBetweenin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveBetweenin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveBetween
default HttpBodyMap retrieveBetween(java.lang.Object[] aFromPath, java.lang.Object[] aToPath)
- Specified by:
retrieveBetweenin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveBetweenin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveBetween
HttpBodyMap retrieveBetween(java.lang.String aFromPath, java.lang.String aToPath)
- Specified by:
retrieveBetweenin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveBetweenin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveBetween
default HttpBodyMap retrieveBetween(java.lang.String[] aFromPath, java.lang.String[] aToPath)
- Specified by:
retrieveBetweenin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveBetweenin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveFrom
default HttpBodyMap retrieveFrom(java.util.Collection<?> aPathElements)
- Specified by:
retrieveFromin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveFromin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveFrom
default HttpBodyMap retrieveFrom(java.lang.Object aParentPath)
- Specified by:
retrieveFromin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveFromin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveFrom
default HttpBodyMap retrieveFrom(java.lang.Object... aPathElements)
- Specified by:
retrieveFromin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveFromin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveFrom
HttpBodyMap retrieveFrom(java.lang.String aFromPath)
- Specified by:
retrieveFromin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveFromin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveFrom
default HttpBodyMap retrieveFrom(java.lang.String... aPathElements)
- Specified by:
retrieveFromin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveFromin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveTo
default HttpBodyMap retrieveTo(java.util.Collection<?> aToPathElements)
- Specified by:
retrieveToin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveToin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveTo
default HttpBodyMap retrieveTo(java.lang.Object aToPath)
- Specified by:
retrieveToin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveToin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveTo
default HttpBodyMap retrieveTo(java.lang.Object... aToPathElements)
- Specified by:
retrieveToin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveToin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveTo
HttpBodyMap retrieveTo(java.lang.String aToPath)
- Specified by:
retrieveToin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveToin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
retrieveTo
default HttpBodyMap retrieveTo(java.lang.String... aToPathElements)
- Specified by:
retrieveToin interfaceorg.refcodes.structure.CanonicalMap- Specified by:
retrieveToin interfaceorg.refcodes.structure.PathMap<java.lang.String>
-
withInsert
default HttpBodyMap withInsert(java.lang.Object aObj)
- Specified by:
withInsertin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsert
default HttpBodyMap withInsert(org.refcodes.structure.PathMap<java.lang.String> aFrom)
- Specified by:
withInsertin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertBetween
default HttpBodyMap withInsertBetween(java.util.Collection<?> aToPathElements, java.lang.Object aFrom, java.util.Collection<?> aFromPathElements)
- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertBetween
default HttpBodyMap withInsertBetween(java.util.Collection<?> aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom, java.util.Collection<?> aFromPathElements)
- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertBetween
default HttpBodyMap withInsertBetween(java.lang.Object aToPath, java.lang.Object aFrom, java.lang.Object aFromPath)
- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertBetween
default HttpBodyMap withInsertBetween(java.lang.Object aToPath, org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.Object aFromPath)
- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertBetween
default HttpBodyMap withInsertBetween(java.lang.Object[] aToPathElements, java.lang.Object aFrom, java.lang.Object[] aFromPathElements)
- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertBetween
default HttpBodyMap withInsertBetween(java.lang.Object[] aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.Object[] aFromPathElements)
- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertBetween
default HttpBodyMap withInsertBetween(java.lang.String aToPath, java.lang.Object aFrom, java.lang.String aFromPath)
- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertBetween
default HttpBodyMap withInsertBetween(java.lang.String aToPath, org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.String aFromPath)
- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertBetween
default HttpBodyMap withInsertBetween(java.lang.String[] aToPathElements, java.lang.Object aFrom, java.lang.String[] aFromPathElements)
- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertBetween
default HttpBodyMap withInsertBetween(java.lang.String[] aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.String[] aFromPathElements)
- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertBetweenin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertFrom
default HttpBodyMap withInsertFrom(java.lang.Object aFrom, java.util.Collection<?> aFromPathElements)
- Specified by:
withInsertFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertFrom
default HttpBodyMap withInsertFrom(java.lang.Object aFrom, java.lang.Object aFromPath)
- Specified by:
withInsertFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertFrom
default HttpBodyMap withInsertFrom(java.lang.Object aFrom, java.lang.Object[] aFromPathElements)
- Specified by:
withInsertFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertFrom
default HttpBodyMap withInsertFrom(java.lang.Object aFrom, java.lang.String aFromPath)
- Specified by:
withInsertFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertFrom
default HttpBodyMap withInsertFrom(java.lang.Object aFrom, java.lang.String[] aFromPathElements)
- Specified by:
withInsertFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertFrom
default HttpBodyMap withInsertFrom(org.refcodes.structure.PathMap<java.lang.String> aFrom, java.util.Collection<?> aFromPathElements)
- Specified by:
withInsertFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertFrom
default HttpBodyMap withInsertFrom(org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.Object aFromPath)
- Specified by:
withInsertFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertFrom
default HttpBodyMap withInsertFrom(org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.Object[] aFromPathElements)
- Specified by:
withInsertFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertFrom
default HttpBodyMap withInsertFrom(org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.String aFromPath)
- Specified by:
withInsertFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertFrom
default HttpBodyMap withInsertFrom(org.refcodes.structure.PathMap<java.lang.String> aFrom, java.lang.String[] aFromPathElements)
- Specified by:
withInsertFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertTo
default HttpBodyMap withInsertTo(java.util.Collection<?> aToPathElements, java.lang.Object aFrom)
- Specified by:
withInsertToin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertToin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertTo
default HttpBodyMap withInsertTo(java.util.Collection<?> aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom)
- Specified by:
withInsertToin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertToin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertTo
default HttpBodyMap withInsertTo(java.lang.Object aToPath, java.lang.Object aFrom)
- Specified by:
withInsertToin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertToin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertTo
default HttpBodyMap withInsertTo(java.lang.Object aToPath, org.refcodes.structure.PathMap<java.lang.String> aFrom)
- Specified by:
withInsertToin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertToin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertTo
default HttpBodyMap withInsertTo(java.lang.Object[] aToPathElements, java.lang.Object aFrom)
- Specified by:
withInsertToin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertToin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertTo
default HttpBodyMap withInsertTo(java.lang.Object[] aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom)
- Specified by:
withInsertToin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertToin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertTo
default HttpBodyMap withInsertTo(java.lang.String aToPath, java.lang.Object aFrom)
- Specified by:
withInsertToin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertToin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertTo
default HttpBodyMap withInsertTo(java.lang.String aToPath, org.refcodes.structure.PathMap<java.lang.String> aFrom)
- Specified by:
withInsertToin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertToin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertTo
default HttpBodyMap withInsertTo(java.lang.String[] aToPathElements, java.lang.Object aFrom)
- Specified by:
withInsertToin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertToin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withInsertTo
default HttpBodyMap withInsertTo(java.lang.String[] aToPathElements, org.refcodes.structure.PathMap<java.lang.String> aFrom)
- Specified by:
withInsertToin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withInsertToin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withPut
default HttpBodyMap withPut(java.util.Collection<?> aPathElements, java.lang.String aValue)
- Specified by:
withPutin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withPut
default HttpBodyMap withPut(java.lang.Object aPath, java.lang.String aValue)
- Specified by:
withPutin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPut
default HttpBodyMap withPut(java.lang.Object[] aPathElements, java.lang.String aValue) throws java.lang.NumberFormatException
- Specified by:
withPutin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.NumberFormatException
-
withPut
default HttpBodyMap withPut(org.refcodes.structure.Relation<java.lang.String,java.lang.String> aRelation)
- Specified by:
withPutin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutin interfaceorg.refcodes.structure.Dictionary.MutableDictionary.DictionaryBuilder<java.lang.String,T extends java.lang.Object,org.refcodes.structure.PathMap.PathMapBuilder<T extends java.lang.Object>>- Specified by:
withPutin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withPut
default HttpBodyMap withPut(java.lang.String aKey, java.lang.String aValue)
- Specified by:
withPutin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutin interfaceorg.refcodes.structure.Dictionary.MutableDictionary.DictionaryBuilder<java.lang.String,T extends java.lang.Object,org.refcodes.structure.PathMap.PathMapBuilder<T extends java.lang.Object>>- Specified by:
withPutin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Specified by:
withPutin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPut
default HttpBodyMap withPut(java.lang.String[] aPathElements, java.lang.String aValue) throws java.lang.NumberFormatException
- Specified by:
withPutin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.NumberFormatException
-
withPutBoolean
default HttpBodyMap withPutBoolean(java.util.Collection<?> aPathElements, java.lang.Boolean aValue)
- Specified by:
withPutBooleanin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutBoolean
default HttpBodyMap withPutBoolean(java.lang.Object aKey, java.lang.Boolean aValue)
- Specified by:
withPutBooleanin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutBooleanin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutBoolean
default HttpBodyMap withPutBoolean(java.lang.Object[] aPathElements, java.lang.Boolean aValue)
- Specified by:
withPutBooleanin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutBoolean
default HttpBodyMap withPutBoolean(java.lang.String aKey, java.lang.Boolean aValue)
- Specified by:
withPutBooleanin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutBooleanin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutBoolean
default HttpBodyMap withPutBoolean(java.lang.String[] aPathElements, java.lang.Boolean aValue)
- Specified by:
withPutBooleanin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutByte
default HttpBodyMap withPutByte(java.util.Collection<?> aPathElements, java.lang.Byte aValue)
- Specified by:
withPutBytein interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutByte
default HttpBodyMap withPutByte(java.lang.Object aKey, java.lang.Byte aValue)
- Specified by:
withPutBytein interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutBytein interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutByte
default HttpBodyMap withPutByte(java.lang.Object[] aPathElements, java.lang.Byte aValue)
- Specified by:
withPutBytein interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutByte
default HttpBodyMap withPutByte(java.lang.String aKey, java.lang.Byte aValue)
- Specified by:
withPutBytein interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutBytein interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutByte
default HttpBodyMap withPutByte(java.lang.String[] aPathElements, java.lang.Byte aValue)
- Specified by:
withPutBytein interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutDirAt
default HttpBodyMap withPutDirAt(java.util.Collection<?> aPathElements, int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(java.util.Collection<?> aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(java.lang.Object aPath, int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(java.lang.Object aPath, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(java.lang.Object[] aPathElements, int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(java.lang.Object[] aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(java.lang.String aPath, int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(java.lang.String aPath, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(java.lang.String[] aPathElements, int aIndex, java.lang.Object aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDirAt
default HttpBodyMap withPutDirAt(java.lang.String[] aPathElements, int aIndex, org.refcodes.structure.PathMap<java.lang.String> aDir) throws java.lang.IllegalArgumentException
- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDirAtin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>- Throws:
java.lang.IllegalArgumentException
-
withPutDouble
default HttpBodyMap withPutDouble(java.util.Collection<?> aPathElements, java.lang.Double aValue)
- Specified by:
withPutDoublein interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutDouble
default HttpBodyMap withPutDouble(java.lang.Object aKey, java.lang.Double aValue)
- Specified by:
withPutDoublein interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDoublein interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutDouble
default HttpBodyMap withPutDouble(java.lang.Object[] aPathElements, java.lang.Double aValue)
- Specified by:
withPutDoublein interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutDouble
default HttpBodyMap withPutDouble(java.lang.String aKey, java.lang.Double aValue)
- Specified by:
withPutDoublein interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutDoublein interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutDouble
default HttpBodyMap withPutDouble(java.lang.String[] aPathElements, java.lang.Double aValue)
- Specified by:
withPutDoublein interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutFloat
default HttpBodyMap withPutFloat(java.util.Collection<?> aPathElements, java.lang.Float aValue)
- Specified by:
withPutFloatin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutFloat
default HttpBodyMap withPutFloat(java.lang.Object aKey, java.lang.Float aValue)
- Specified by:
withPutFloatin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutFloatin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutFloat
default HttpBodyMap withPutFloat(java.lang.Object[] aPathElements, java.lang.Float aValue)
- Specified by:
withPutFloatin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutFloat
default HttpBodyMap withPutFloat(java.lang.String aKey, java.lang.Float aValue)
- Specified by:
withPutFloatin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutFloatin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutFloat
default HttpBodyMap withPutFloat(java.lang.String[] aPathElements, java.lang.Float aValue)
- Specified by:
withPutFloatin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutInteger
default HttpBodyMap withPutInteger(java.util.Collection<?> aPathElements, java.lang.Integer aValue)
- Specified by:
withPutIntegerin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutInteger
default HttpBodyMap withPutInteger(java.lang.Object aKey, java.lang.Integer aValue)
- Specified by:
withPutIntegerin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutIntegerin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutInteger
default HttpBodyMap withPutInteger(java.lang.Object[] aPathElements, java.lang.Integer aValue)
- Specified by:
withPutIntegerin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutInteger
default HttpBodyMap withPutInteger(java.lang.String aKey, java.lang.Integer aValue)
- Specified by:
withPutIntegerin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutIntegerin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutInteger
default HttpBodyMap withPutInteger(java.lang.String[] aPathElements, java.lang.Integer aValue)
- Specified by:
withPutIntegerin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutLong
default HttpBodyMap withPutLong(java.util.Collection<?> aPathElements, java.lang.Long aValue)
- Specified by:
withPutLongin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutLong
default HttpBodyMap withPutLong(java.lang.Object aKey, java.lang.Long aValue)
- Specified by:
withPutLongin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutLongin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutLong
default HttpBodyMap withPutLong(java.lang.Object[] aPathElements, java.lang.Long aValue)
- Specified by:
withPutLongin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutLong
default HttpBodyMap withPutLong(java.lang.String aKey, java.lang.Long aValue)
- Specified by:
withPutLongin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutLongin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutLong
default HttpBodyMap withPutLong(java.lang.String[] aPathElements, java.lang.Long aValue)
- Specified by:
withPutLongin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutShort
default HttpBodyMap withPutShort(java.util.Collection<?> aPathElements, java.lang.Short aValue)
- Specified by:
withPutShortin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutShort
default HttpBodyMap withPutShort(java.lang.Object aKey, java.lang.Short aValue)
- Specified by:
withPutShortin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutShortin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutShort
default HttpBodyMap withPutShort(java.lang.Object[] aPathElements, java.lang.Short aValue)
- Specified by:
withPutShortin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutShort
default HttpBodyMap withPutShort(java.lang.String aKey, java.lang.Short aValue)
- Specified by:
withPutShortin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withPutShortin interfaceorg.refcodes.structure.PropertiesAccessorMixin.PropertiesBuilderMixin<java.lang.String>
-
withPutShort
default HttpBodyMap withPutShort(java.lang.String[] aPathElements, java.lang.Short aValue)
- Specified by:
withPutShortin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder
-
withPutStatusAlias
default HttpBodyMap withPutStatusAlias(HttpStatusCode aStatusCode)
Puts a default path's ("status/alias") status alias.- Parameters:
aStatusCode- TheHttpStatusCode, which's verbose alias is to be set.- Returns:
- The previously set value for the status alias default path.
-
withPutStatusAlias
default HttpBodyMap withPutStatusAlias(java.lang.String aStatusAlias)
Puts a default path's ("status/alias") status alias.- Parameters:
aStatusAlias- The status alias value to be set.- Returns:
- The previously set value for the status alias default path.
-
withPutStatusCode
default HttpBodyMap withPutStatusCode(HttpStatusCode aStatusCode)
Puts a default path's ("status/code") status code.- Parameters:
aStatusCode- TheHttpStatusCodeto be set.- Returns:
- The previously set value for the status code default path.
-
withPutStatusCode
default HttpBodyMap withPutStatusCode(int aStatusCode)
Puts a default path's ("status/code") status code.- Parameters:
aStatusCode- The status code value to be set.- Returns:
- The previously set value for the status code default path.
-
withRemoveFrom
default HttpBodyMap withRemoveFrom(java.util.Collection<?> aPathElements)
- Specified by:
withRemoveFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withRemoveFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withRemoveFrom
default HttpBodyMap withRemoveFrom(java.lang.Object aPath)
- Specified by:
withRemoveFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withRemoveFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withRemoveFrom
default HttpBodyMap withRemoveFrom(java.lang.Object... aPathElements)
- Specified by:
withRemoveFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withRemoveFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withRemoveFrom
default HttpBodyMap withRemoveFrom(java.lang.String... aPathElements)
- Specified by:
withRemoveFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withRemoveFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
withRemoveFrom
default HttpBodyMap withRemoveFrom(java.lang.String aPath)
- Specified by:
withRemoveFromin interfaceorg.refcodes.structure.CanonicalMap.CanonicalMapBuilder- Specified by:
withRemoveFromin interfaceorg.refcodes.structure.PathMap.PathMapBuilder<java.lang.String>
-
-