Package | Description |
---|---|
javax.microedition.rms |
The Mobile Information Device Profile provides a mechanism for
MIDlets to persistently store data and later retrieve it.
|
Modifier and Type | Method and Description |
---|---|
int |
RecordStore.addRecord(byte[] data,
int offset,
int numBytes)
Adds a new record to the record store.
|
static RecordStore |
RecordStore.openRecordStore(String recordStoreName,
boolean createIfNecessary)
Open (and possibly create) a record store associated with the
given MIDlet suite.
|
static RecordStore |
RecordStore.openRecordStore(String recordStoreName,
boolean createIfNecessary,
int authmode,
boolean writable)
Open (and possibly create) a record store that can be shared
with other MIDlet suites.
|
void |
RecordStore.setRecord(int recordId,
byte[] newData,
int offset,
int numBytes)
Sets the data in the given record to that passed in.
|
Copyright (c) 1990, 2012, Oracle and/or its affiliates. All rights reserved.