| Package | Description |
|---|---|
| org.apache.jena.mem |
Various memory-based implementations of interfaces,
specifically GraphMem for memory-based Graphs.
|
| Modifier and Type | Class and Description |
|---|---|
class |
ArrayBunch
An ArrayBunch implements TripleBunch with a linear search of a short-ish
array of Triples.
|
class |
HashedTripleBunch |
class |
SetBunch |
| Modifier and Type | Method and Description |
|---|---|
TripleBunch |
WrappedHashMap.get(Object key) |
TripleBunch |
HashedBunchMap.get(Object key) |
TripleBunch |
BunchMap.get(Object key)
Answer the TripleBunch associated with
key, or
null if there isn't one. |
TripleBunch |
WrappedHashMap.getOrSet(Object key,
Function<Object,TripleBunch> setter) |
TripleBunch |
HashedBunchMap.getOrSet(Object key,
Function<Object,TripleBunch> setter) |
TripleBunch |
BunchMap.getOrSet(Object key,
Function<Object,TripleBunch> setter)
Get the
key and return the value found there; if nothing,
calculate the value and insert. |
| Modifier and Type | Method and Description |
|---|---|
void |
WrappedHashMap.put(Object key,
TripleBunch value) |
void |
HashedBunchMap.put(Object key,
TripleBunch value) |
void |
BunchMap.put(Object key,
TripleBunch value)
Associate
key and value. |
| Modifier and Type | Method and Description |
|---|---|
TripleBunch |
WrappedHashMap.getOrSet(Object key,
Function<Object,TripleBunch> setter) |
TripleBunch |
HashedBunchMap.getOrSet(Object key,
Function<Object,TripleBunch> setter) |
TripleBunch |
BunchMap.getOrSet(Object key,
Function<Object,TripleBunch> setter)
Get the
key and return the value found there; if nothing,
calculate the value and insert. |
| Constructor and Description |
|---|
HashedTripleBunch(TripleBunch b) |
SetBunch(TripleBunch b) |
Licenced under the Apache License, Version 2.0