|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use StoreAccess | |
---|---|
org.magnos.data | |
org.magnos.data.error | |
org.magnos.data.store |
Uses of StoreAccess in org.magnos.data |
---|
Fields in org.magnos.data declared as StoreAccess | |
---|---|
StoreAccess |
StoreAccess.next
The next access if this state could not be applied. |
Methods in org.magnos.data that return StoreAccess | |
---|---|
StoreAccess |
Store.create(StoreAccess initialAccess,
int initialCapacity)
Creates the store by opening it with the given access and setting the initial capacity. |
StoreAccess |
Store.getAccess()
Returns the current access of this store to its persisted medium if any exists. |
StoreAccess |
Store.open(StoreAccess initialAccess)
Explicitly opens this store for reading and writing. |
StoreAccess |
Store.setAccess(StoreAccess newAccess)
Sets the access of this store to its persisted medium. |
static StoreAccess |
StoreAccess.valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static StoreAccess[] |
StoreAccess.values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods in org.magnos.data with parameters of type StoreAccess | |
---|---|
StoreAccess |
Store.create(StoreAccess initialAccess,
int initialCapacity)
Creates the store by opening it with the given access and setting the initial capacity. |
StoreAccess |
Store.open(StoreAccess initialAccess)
Explicitly opens this store for reading and writing. |
StoreAccess |
Store.setAccess(StoreAccess newAccess)
Sets the access of this store to its persisted medium. |
Uses of StoreAccess in org.magnos.data.error |
---|
Methods in org.magnos.data.error that return StoreAccess | |
---|---|
StoreAccess |
StoreAccessException.getAccess()
The access which was not sufficient. |
Constructors in org.magnos.data.error with parameters of type StoreAccess | |
---|---|
StoreAccessException(Store store,
StoreAccess access)
Instantiates a new StoreAccessException. |
Uses of StoreAccess in org.magnos.data.store |
---|
Methods in org.magnos.data.store that return StoreAccess | |
---|---|
StoreAccess |
AbstractStore.create(StoreAccess initialAccess,
int initialCapacity)
Creates the store by opening it with the given access and setting the initial capacity. |
StoreAccess |
AbstractStore.getAccess()
Returns the current access of this store to its persisted medium if any exists. |
StoreAccess |
AbstractStore.open(StoreAccess initialAccess)
Explicitly opens this store for reading and writing. |
StoreAccess |
AbstractStore.setAccess(StoreAccess newAccess)
Sets the access of this store to its persisted medium. |
Methods in org.magnos.data.store with parameters of type StoreAccess | |
---|---|
StoreAccess |
AbstractStore.create(StoreAccess initialAccess,
int initialCapacity)
Creates the store by opening it with the given access and setting the initial capacity. |
StoreAccess |
AbstractStore.open(StoreAccess initialAccess)
Explicitly opens this store for reading and writing. |
StoreAccess |
AbstractStore.setAccess(StoreAccess newAccess)
Sets the access of this store to its persisted medium. |
protected int |
MemoryStore.storeOpen(StoreAccess access)
Should open the store and return the capacity. |
protected abstract int |
AbstractStore.storeOpen(StoreAccess access)
Should open the store and return the capacity. |
protected int |
MappedStore.storeOpen(StoreAccess access)
Should open the store and return the capacity. |
protected int |
FileStore.storeOpen(StoreAccess access)
Should open the store and return the capacity. |
Constructors in org.magnos.data.store with parameters of type StoreAccess | |
---|---|
FileStore(java.io.File file,
StoreAccess access,
int capacity)
Instantiates a new FileStore while opening it with the given access and setting it to the given capacity. |
|
FileStore(java.lang.String filename,
StoreAccess access,
int capacity)
Instantiates a new FileStore while opening it with the given access and setting it to the given capacity. |
|
MappedStore(java.io.File file,
StoreAccess access,
int capacity)
Instantiates a new MappedStore while opening it with the given access and setting it the given capacity. |
|
MappedStore(java.lang.String filename,
StoreAccess access,
int capacity)
Instantiates a new MappedStore while opening it with the given access and setting it the given capacity. |
|
MemoryStore(java.lang.String name,
StoreAccess access,
int capacity)
Instantiates a MemoryStore. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |