| Modifier and Type | Interface | Description |
|---|---|---|
interface |
CanonicalMap |
The
CanonicalMap is an "intermediate" type adding type and
Data-Structure related functionality to any implementing class. |
static interface |
CanonicalMap.CanonicalMapBuilder |
The Interface CanonicalMapBuilder.
|
static interface |
CanonicalMap.MutableCanonicalMap |
The Interface MutableCanonicalMap.
|
interface |
ClassStructMap |
The
ClassStructMap disects a Class into its simple types
(considering String and Enum types as well as primitive
types). |
static interface |
ClassStructMap.ClassStructMapBuilder |
The Interface ClassStructMapBuilder.
|
static interface |
ClassStructMap.MutableClassStructMap |
The Interface MutableClassStructMap.
|
interface |
InterOperableMap<T> |
The
InterOperableMap provides convenience accessor default methods
for supporting primitive data types. |
static interface |
InterOperableMap.InterOperableMapBuilder<T> |
The
InterOperableMap.InterOperableMapBuilder provides convenience accessor default
methods for supporting primitive data types. |
static interface |
InterOperableMap.MutableInterOperableMap<T> |
The
InterOperableMap.InterOperableMapBuilder provides convenience accessor default
methods for supporting primitive data types. |
static interface |
PathMap.MutablePathMap<T> |
The
PathMap.MutablePathMap adds mutable functionality to the
PathMap. |
static interface |
PathMap.PathMapBuilder<T> |
The
PathMap.PathMapBuilder adds builder functionality to the
PathMap.MutablePathMap. |
interface |
SimpleTypeMap |
|
static interface |
SimpleTypeMap.MutableSimpleTypeMap |
The
SimpleTypeMap.MutableSimpleTypeMap adds functionality for manipulating the
internal state to the SimpleTypeMap. |
static interface |
SimpleTypeMap.SimpleTypeMapBuilder |
A
SimpleTypeMap.SimpleTypeMapBuilder sets builder functionality (as of the
builder pattern) on top of the SimpleTypeMap.MutableSimpleTypeMap. |
| Modifier and Type | Class | Description |
|---|---|---|
class |
CanonicalMapBuilderImpl |
The Class CanonicalMapBuilderImpl.
|
class |
CanonicalMapImpl |
The Class CanonicalMapImpl.
|
class |
ClassStructMapBuilderImpl |
The Class ClassStructBuilderImpl.
|
class |
ClassStructMapImpl |
The Class ClassStructMapImpl.
|
class |
PathMapBuilderImpl<T> |
The Class PathMapBuilderImpl.
|
class |
PathMapImpl<T> |
The Class PathMapImpl.
|
class |
SimpleTypeMapBuilderImpl |
An implementation of the
SimpleTypeMap.SimpleTypeMapBuilder. |
class |
SimpleTypeMapImpl |
An implementation of the
SimpleTypeMap. |
| Modifier and Type | Method | Description |
|---|---|---|
protected PathMap<String> |
CanonicalMapBuilderImpl.fromObject(Object aFrom) |
|
protected PathMap<Class<?>> |
ClassStructMapBuilderImpl.fromObject(Object aFrom) |
|
protected PathMap<T> |
PathMapBuilderImpl.fromObject(Object aFrom) |
|
protected PathMap<Object> |
SimpleTypeMapBuilderImpl.fromObject(Object aFrom) |
|
default PathMap<T> |
PathMap.getDir(Object aPath) |
Gets the children elements of the provided parent's path, excluding the
parent's path.
|
default PathMap<T> |
PathMap.getDir(Object... aPathElements) |
Gets the children elements of the provided parent's path elements,
excluding the parent's path.
|
default PathMap<T> |
PathMap.getDir(String aPath) |
|
default PathMap<T> |
PathMap.getDir(String... aPathElements) |
Gets the children elements of the provided parent's path elements,
excluding the parent's path.
|
default PathMap<T> |
PathMap.getDir(Collection<?> aPathElements) |
Gets the children elements of the provided parent's path elements,
excluding the parent's path.
|
default PathMap<T> |
PathMap.getDirAt(int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.getDirAt(Object[] aPathElements,
int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.getDirAt(Object aPath,
int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.getDirAt(String[] aPathElements,
int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.getDirAt(String aPath,
int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.getDirAt(Collection<?> aPathElements,
int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(Object[] aPathElements,
int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(Object[] aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(Object aPath,
int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(Object aPath,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(String[] aPathElements,
int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(String[] aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(String aPath,
int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(String aPath,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(Collection<?> aPathElements,
int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(Collection<?> aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.query(Object... aQueryElements) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.query(String aPathQuery) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.query(String... aQueryElements) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.query(Collection<?> aQueryElements) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.query(Pattern aRegExp) |
Queries the keys of the instance using a regular expression as of the
provided
Pattern instance. |
default PathMap<T> |
PathMap.queryBetween(Object[] aFromPath,
Object[] aPathQuery,
Object[] aToPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryBetween(Object aFromPath,
Object aPathQuery,
Object aToPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryBetween(String[] aFromPath,
String[] aPathQuery,
String[] aToPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryBetween(String aFromPath,
String aPathQuery,
String aToPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryBetween(String aFromPath,
Pattern aRegExp,
String aToPath) |
Queries the keys of the instance using a regular expression as of the
provided
Pattern. |
default PathMap<T> |
PathMap.queryBetween(Collection<?> aFromPath,
Collection<?> aPathQuery,
Collection<?> aToPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryFrom(Object[] aPathQuery,
Object[] aFromPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryFrom(Object aPathQuery,
Object aFromPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryFrom(String[] aPathQuery,
String[] aFromPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryFrom(String aPathQuery,
String aFromPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryFrom(Collection<?> aPathQuery,
Collection<?> aFromPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryFrom(Pattern aRegExp,
String aFromPath) |
Queries the keys of the instance using a regular expression as of the
provided
Pattern. |
default PathMap<T> |
PathMap.queryTo(Object[] aPathQuery,
String aToPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryTo(Object aPathQuery,
String aToPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryTo(String[] aPathQuery,
String aToPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryTo(String aPathQuery,
String aToPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryTo(Collection<?> aPathQuery,
String aToPath) |
Queries the keys of the instance using the
PathMatcher' matching
patterns, similar to the wildcards '*', '?' |
default PathMap<T> |
PathMap.queryTo(Pattern aRegExp,
String aToPath) |
Queries the keys of the instance using a regular expression as of the
provided
Pattern. |
default PathMap<T> |
PathMap.MutablePathMap.removeAll(Object aPathQuery) |
Removes all elements which's keys match the provided path query.
|
default PathMap<T> |
PathMap.MutablePathMap.removeAll(Object... aPathQueryElements) |
Removes all elements which's keys match the provided path query.
|
default PathMap<T> |
PathMap.MutablePathMap.removeAll(String aPathQuery) |
Removes all elements which's keys match the provided path query.
|
default PathMap<T> |
PathMap.MutablePathMap.removeAll(String... aPathQueryElements) |
Removes all elements which's keys match the provided path query.
|
default PathMap<T> |
PathMap.MutablePathMap.removeAll(Collection<?> aPathQueryElements) |
Removes all elements which's keys match the provided path query.
|
default PathMap<T> |
PathMap.MutablePathMap.removeAll(Pattern aRegExp) |
Removes all elements which's keys match the provided regular
expression: Queries the keys of the instance using the provided
Pattern |
default PathMap<T> |
PathMap.MutablePathMap.removeDirAt(int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.removeDirAt(Object[] aPathElements,
int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.removeDirAt(Object aPath,
int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.removeDirAt(String[] aPathElements,
int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.removeDirAt(String aPath,
int aIndex) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.removeFrom(Object aPath) |
Removes all properties below the provided path and returns the
PathMap with the removed elements, by which the paths exclude
the parent's path. |
default PathMap<T> |
PathMap.MutablePathMap.removeFrom(Object... aPathElements) |
Removes all properties below the provided path and returns the
PathMap with the removed elements, by which the paths exclude
the parent's path. |
default PathMap<T> |
PathMap.MutablePathMap.removeFrom(String aPath) |
Removes all properties below the provided path and returns the
PathMap with the removed elements, by which the paths exclude
the parent's path. |
default PathMap<T> |
PathMap.MutablePathMap.removeFrom(String... aPathElements) |
Removes all properties below the provided path and returns the
PathMap with the removed elements, by which the paths exclude
the parent's path. |
default PathMap<T> |
PathMap.MutablePathMap.removeFrom(Collection<?> aPathElements) |
Removes all properties below the provided path and returns the
PathMap with the removed elements, by which the paths exclude
the parent's path. |
default PathMap<T> |
PathMap.MutablePathMap.removePaths(String... aPaths) |
Removes the paths contained in the provided collection.
|
default PathMap<T> |
PathMap.MutablePathMap.removePaths(Collection<?> aPaths) |
Removes the paths contained in the provided collection.
|
default PathMap<T> |
PathMap.retrieveBetween(Object[] aFromPath,
Object[] aToPath) |
|
default PathMap<T> |
PathMap.retrieveBetween(Object aFromPath,
Object aToPath) |
|
default PathMap<T> |
PathMap.retrieveBetween(String[] aFromPath,
String[] aToPath) |
|
default PathMap<T> |
PathMap.retrieveBetween(String aFromPath,
String aToPath) |
|
default PathMap<T> |
PathMap.retrieveBetween(Collection<?> aFromPath,
Collection<?> aToPath) |
|
default PathMap<T> |
PathMap.retrieveFrom(Object aParentPath) |
Gets the children elements of the provided parent's path, excluding the
parent's path.
|
default PathMap<T> |
PathMap.retrieveFrom(Object... aPathElements) |
Gets the children elements of the provided parent's path elements,
excluding the parent's path.
|
PathMap<T> |
PathMap.retrieveFrom(String aFromPath) |
|
default PathMap<T> |
PathMap.retrieveFrom(String... aPathElements) |
Gets the children elements of the provided parent's path elements,
excluding the parent's path.
|
default PathMap<T> |
PathMap.retrieveFrom(Collection<?> aPathElements) |
Gets the children elements of the provided parent's path elements,
excluding the parent's path.
|
PathMap<T> |
PathMapBuilderImpl.retrieveFrom(String aFromPath) |
|
PathMap<T> |
PathMapImpl.retrieveFrom(String aFromPath) |
|
default PathMap<T> |
PathMap.retrieveTo(Object aToPath) |
|
default PathMap<T> |
PathMap.retrieveTo(Object... aToPathElements) |
|
PathMap<T> |
PathMap.retrieveTo(String aToPath) |
|
default PathMap<T> |
PathMap.retrieveTo(String... aToPathElements) |
|
default PathMap<T> |
PathMap.retrieveTo(Collection<?> aToPathElements) |
|
PathMap<T> |
PathMapBuilderImpl.retrieveTo(String aToPath) |
|
PathMap<T> |
PathMapImpl.retrieveTo(String aToPath) |
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(Object[] aPathElements,
int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(Object[] aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(Object aPath,
int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(Object aPath,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(String[] aPathElements,
int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(String[] aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(String aPath,
int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(String aPath,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(Collection<?> aPathElements,
int aIndex,
Object aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(Collection<?> aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
| Modifier and Type | Method | Description |
|---|---|---|
default void |
PathMap.MutablePathMap.appendDirTo(Object[] aPathElements,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default void |
PathMap.MutablePathMap.appendDirTo(Object aPath,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default void |
PathMap.MutablePathMap.appendDirTo(String[] aPathElements,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default void |
PathMap.MutablePathMap.appendDirTo(String aPath,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default void |
PathMap.MutablePathMap.appendDirTo(Collection<?> aPathElements,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default void |
PathMap.MutablePathMap.appendDirTo(PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default void |
PathMap.MutablePathMap.insert(PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertBetween(Object[] aToPathElements,
PathMap<T> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertBetween(Object aToPath,
PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertBetween(String[] aToPathElements,
PathMap<T> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertBetween(String aToPath,
PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertBetween(Collection<?> aToPathElements,
PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertFrom(PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertFrom(PathMap<T> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertFrom(PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertFrom(PathMap<T> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertFrom(PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertTo(Object[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertTo(Object aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertTo(String[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertTo(String aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.insertTo(Collection<?> aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default boolean |
PathMap.isEqualTo(PathMap<?> aOther) |
|
default void |
PathMap.MutablePathMap.merge(PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeBetween(Object[] aToPathElements,
PathMap<T> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeBetween(Object aToPath,
PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeBetween(String[] aToPathElements,
PathMap<T> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeBetween(String aToPath,
PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeBetween(Collection<?> aToPathElements,
PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeFrom(PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeFrom(PathMap<T> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeFrom(PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeFrom(PathMap<T> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeFrom(PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeTo(Object[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeTo(Object aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeTo(String[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeTo(String aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default void |
PathMap.MutablePathMap.mergeTo(Collection<?> aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap |
CanonicalMap.MutableCanonicalMap.putDirAt(int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default CanonicalMap |
CanonicalMap.MutableCanonicalMap.putDirAt(Object[] aPathElements,
int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default CanonicalMap |
CanonicalMap.MutableCanonicalMap.putDirAt(Object aPath,
int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default CanonicalMap |
CanonicalMap.MutableCanonicalMap.putDirAt(String[] aPathElements,
int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default CanonicalMap |
CanonicalMap.MutableCanonicalMap.putDirAt(String aPath,
int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default CanonicalMap |
CanonicalMap.MutableCanonicalMap.putDirAt(Collection<?> aPathElements,
int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap |
ClassStructMap.MutableClassStructMap.putDirAt(int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap |
ClassStructMap.MutableClassStructMap.putDirAt(Object[] aPathElements,
int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap |
ClassStructMap.MutableClassStructMap.putDirAt(Object aPath,
int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap |
ClassStructMap.MutableClassStructMap.putDirAt(String[] aPathElements,
int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap |
ClassStructMap.MutableClassStructMap.putDirAt(String aPath,
int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap |
ClassStructMap.MutableClassStructMap.putDirAt(Collection<?> aPathElements,
int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(Object[] aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(Object aPath,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(String[] aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(String aPath,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.MutablePathMap.putDirAt(Collection<?> aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap |
SimpleTypeMap.MutableSimpleTypeMap.putDirAt(int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap |
SimpleTypeMap.MutableSimpleTypeMap.putDirAt(Object[] aPathElements,
int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap |
SimpleTypeMap.MutableSimpleTypeMap.putDirAt(Object aPath,
int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap |
SimpleTypeMap.MutableSimpleTypeMap.putDirAt(String[] aPathElements,
int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap |
SimpleTypeMap.MutableSimpleTypeMap.putDirAt(String aPath,
int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap |
SimpleTypeMap.MutableSimpleTypeMap.putDirAt(Collection<?> aPathElements,
int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
static <T> void |
StructureUtility.retrieveFrom(PathMap<T> aFromPathMap,
String aFromPath,
PathMap.PathMapBuilder<T> aToPathMap) |
Hook method for implementing the
retrieveFrom(String)
method. |
static <T> void |
StructureUtility.retrieveTo(PathMap<T> aFromPathMap,
String aToPath,
PathMap.PathMapBuilder<T> aToPathMap) |
Hook method for implementing the
retrieveTo(String)
method. |
static Object |
StructureUtility.toDataStructure(PathMap<?> aPathMap,
String aFromPath) |
Hook method for implementing the
toDataStructure()
method. |
static String |
StructureUtility.toGenericPath(PathMap<?> aPathMap,
String aPath) |
Normalizes the path as of
toNormalizedPath(String) and
unifies it so that a path never ends with a delimiter
(DelimiterAccessor.getDelimiter()). |
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsert(PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsert(PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsert(PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsert(PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsert(PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertBetween(Object[] aToPathElements,
PathMap<String> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertBetween(Object aToPath,
PathMap<String> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertBetween(String[] aToPathElements,
PathMap<String> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertBetween(String aToPath,
PathMap<String> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertBetween(Collection<?> aToPathElements,
PathMap<String> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertBetween(Object[] aToPathElements,
PathMap<Class<?>> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertBetween(Object aToPath,
PathMap<Class<?>> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertBetween(String[] aToPathElements,
PathMap<Class<?>> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertBetween(String aToPath,
PathMap<Class<?>> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertBetween(Collection<?> aToPathElements,
PathMap<Class<?>> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertBetween(Object[] aToPathElements,
PathMap<T> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertBetween(Object aToPath,
PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertBetween(String[] aToPathElements,
PathMap<T> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertBetween(String aToPath,
PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertBetween(Collection<?> aToPathElements,
PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertBetween(Object[] aToPathElements,
PathMap<T> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertBetween(Object aToPath,
PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertBetween(String[] aToPathElements,
PathMap<T> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertBetween(String aToPath,
PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertBetween(Collection<?> aToPathElements,
PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertBetween(Object[] aToPathElements,
PathMap<Object> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertBetween(Object aToPath,
PathMap<Object> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertBetween(String[] aToPathElements,
PathMap<Object> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertBetween(String aToPath,
PathMap<Object> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertBetween(Collection<?> aToPathElements,
PathMap<Object> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertFrom(PathMap<String> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertFrom(PathMap<String> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertFrom(PathMap<String> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertFrom(PathMap<String> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertFrom(PathMap<String> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertFrom(PathMap<Class<?>> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertFrom(PathMap<Class<?>> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertFrom(PathMap<Class<?>> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertFrom(PathMap<Class<?>> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertFrom(PathMap<Class<?>> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertFrom(PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertFrom(PathMap<T> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertFrom(PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertFrom(PathMap<T> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertFrom(PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertFrom(PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertFrom(PathMap<T> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertFrom(PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertFrom(PathMap<T> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertFrom(PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertFrom(PathMap<Object> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertFrom(PathMap<Object> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertFrom(PathMap<Object> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertFrom(PathMap<Object> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertFrom(PathMap<Object> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertTo(Object[] aToPathElements,
PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertTo(Object aToPath,
PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertTo(String[] aToPathElements,
PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertTo(String aToPath,
PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withInsertTo(Collection<?> aToPathElements,
PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertTo(Object[] aToPathElements,
PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertTo(Object aToPath,
PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertTo(String[] aToPathElements,
PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertTo(String aToPath,
PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withInsertTo(Collection<?> aToPathElements,
PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertTo(Object[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertTo(Object aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertTo(String[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertTo(String aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withInsertTo(Collection<?> aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertTo(Object[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertTo(Object aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertTo(String[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertTo(String aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withInsertTo(Collection<?> aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertTo(Object[] aToPathElements,
PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertTo(Object aToPath,
PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertTo(String[] aToPathElements,
PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertTo(String aToPath,
PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withInsertTo(Collection<?> aToPathElements,
PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMerge(PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMerge(PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMerge(PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMerge(PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMerge(PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeBetween(Object[] aToPathElements,
PathMap<String> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeBetween(Object aToPath,
PathMap<String> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeBetween(String[] aToPathElements,
PathMap<String> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeBetween(String aToPath,
PathMap<String> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeBetween(Collection<?> aToPathElements,
PathMap<String> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeBetween(Object[] aToPathElements,
PathMap<Class<?>> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeBetween(Object aToPath,
PathMap<Class<?>> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeBetween(String[] aToPathElements,
PathMap<Class<?>> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeBetween(String aToPath,
PathMap<Class<?>> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeBetween(Collection<?> aToPathElements,
PathMap<Class<?>> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeBetween(Object[] aToPathElements,
PathMap<T> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeBetween(Object aToPath,
PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeBetween(String[] aToPathElements,
PathMap<T> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeBetween(String aToPath,
PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeBetween(Collection<?> aToPathElements,
PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeBetween(Object[] aToPathElements,
PathMap<T> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeBetween(Object aToPath,
PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeBetween(String[] aToPathElements,
PathMap<T> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeBetween(String aToPath,
PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeBetween(Collection<?> aToPathElements,
PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeBetween(Object[] aToPathElements,
PathMap<Object> aFrom,
Object[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeBetween(Object aToPath,
PathMap<Object> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeBetween(String[] aToPathElements,
PathMap<Object> aFrom,
String[] aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeBetween(String aToPath,
PathMap<Object> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeBetween(Collection<?> aToPathElements,
PathMap<Object> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeFrom(PathMap<String> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeFrom(PathMap<String> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeFrom(PathMap<String> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeFrom(PathMap<String> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeFrom(PathMap<String> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeFrom(PathMap<Class<?>> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeFrom(PathMap<Class<?>> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeFrom(PathMap<Class<?>> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeFrom(PathMap<Class<?>> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeFrom(PathMap<Class<?>> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeFrom(PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeFrom(PathMap<T> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeFrom(PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeFrom(PathMap<T> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeFrom(PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeFrom(PathMap<T> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeFrom(PathMap<T> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeFrom(PathMap<T> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeFrom(PathMap<T> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeFrom(PathMap<T> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeFrom(PathMap<Object> aFrom,
Object aFromPath) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeFrom(PathMap<Object> aFrom,
Object... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeFrom(PathMap<Object> aFrom,
String aFromPath) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeFrom(PathMap<Object> aFrom,
String... aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeFrom(PathMap<Object> aFrom,
Collection<?> aFromPathElements) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeTo(Object[] aToPathElements,
PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeTo(Object aToPath,
PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeTo(String[] aToPathElements,
PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeTo(String aToPath,
PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withMergeTo(Collection<?> aToPathElements,
PathMap<String> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeTo(Object[] aToPathElements,
PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeTo(Object aToPath,
PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeTo(String[] aToPathElements,
PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeTo(String aToPath,
PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withMergeTo(Collection<?> aToPathElements,
PathMap<Class<?>> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeTo(Object[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeTo(Object aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeTo(String[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeTo(String aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withMergeTo(Collection<?> aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeTo(Object[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeTo(Object aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeTo(String[] aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeTo(String aToPath,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default PathMap.PathMapBuilder<T> |
PathMap.PathMapBuilder.withMergeTo(Collection<?> aToPathElements,
PathMap<T> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeTo(Object[] aToPathElements,
PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeTo(Object aToPath,
PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeTo(String[] aToPathElements,
PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeTo(String aToPath,
PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withMergeTo(Collection<?> aToPathElements,
PathMap<Object> aFrom) |
Method to semantically emphasize that we support our own types.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withPutDirAt(int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withPutDirAt(Object[] aPathElements,
int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withPutDirAt(Object aPath,
int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withPutDirAt(String[] aPathElements,
int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withPutDirAt(String aPath,
int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default CanonicalMap.CanonicalMapBuilder |
CanonicalMap.CanonicalMapBuilder.withPutDirAt(Collection<?> aPathElements,
int aIndex,
PathMap<String> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withPutDirAt(int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withPutDirAt(Object[] aPathElements,
int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withPutDirAt(Object aPath,
int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withPutDirAt(String[] aPathElements,
int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withPutDirAt(String aPath,
int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default ClassStructMap.ClassStructMapBuilder |
ClassStructMap.ClassStructMapBuilder.withPutDirAt(Collection<?> aPathElements,
int aIndex,
PathMap<Class<?>> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withPutDirAt(int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withPutDirAt(Object[] aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withPutDirAt(Object aPath,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withPutDirAt(String[] aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default InterOperableMap.InterOperableMapBuilder<T> |
InterOperableMap.InterOperableMapBuilder.withPutDirAt(String aPath,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(Object[] aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(Object aPath,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(String[] aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(String aPath,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default PathMap<T> |
PathMap.PathMapBuilder.withPutDirAt(Collection<?> aPathElements,
int aIndex,
PathMap<T> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withPutDirAt(int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withPutDirAt(Object[] aPathElements,
int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withPutDirAt(Object aPath,
int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withPutDirAt(String[] aPathElements,
int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withPutDirAt(String aPath,
int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
default SimpleTypeMap.SimpleTypeMapBuilder |
SimpleTypeMap.SimpleTypeMapBuilder.withPutDirAt(Collection<?> aPathElements,
int aIndex,
PathMap<Object> aDir) |
An indexed directory represents all elements which begin with a path
which's last path element represents an index.
|
| Constructor | Description |
|---|---|
PathMapImpl(PathMap<T> aPathMap) |
Create a
PathMap instance from the provided PathMap
instance containing the elements as of
PathMap.MutablePathMap.insert(Object) using the PathMap's path
delimiter for the path declarations the the type of the PathMap. |
Copyright © 2021. All rights reserved.