package javax.microedition.rms;

public class RecordStore
{
 public static final int AUTHMODE_PRIVATE = 0;
 public static final int AUTHMODE_ANY = 1;

 public static void deleteRecordStore(String string_1) throws RecordStoreNotFoundException, RecordStoreException
 {
 }
 
 public static RecordStore openRecordStore(String string_1, boolean boolean_1) throws RecordStoreNotFoundException, RecordStoreFullException, RecordStoreException
 {
  return null;
 }
 
 public static RecordStore openRecordStore(String string_1, boolean boolean_1, int int_1, boolean boolean_2) throws RecordStoreNotFoundException, RecordStoreFullException, RecordStoreException
 {
  return null;
 }
 
 public static RecordStore openRecordStore(String string_1, String string_2, String string_3) throws RecordStoreNotFoundException, RecordStoreException
 {
  return null;
 }
 
 public void setMode(int int_1, boolean boolean_1) throws RecordStoreException
 {
 }
 
 public void closeRecordStore() throws RecordStoreNotOpenException, RecordStoreException
 {
 }
 
 public static String[] listRecordStores()
 {
  return null;
 }
 
 public String getName() throws RecordStoreNotOpenException
 {
  return null;
 }
 
 public int getVersion() throws RecordStoreNotOpenException
 {
  return 0;
 }
 
 public int getNumRecords() throws RecordStoreNotOpenException
 {
  return 0;
 }
 
 public int getSize() throws RecordStoreNotOpenException
 {
  return 0;
 }
 
 public int getSizeAvailable() throws RecordStoreNotOpenException
 {
  return 0;
 }
 
 public long getLastModified() throws RecordStoreNotOpenException
 {
  return 0;
 }
 
 public void addRecordListener(RecordListener recordlistener_1)
 {
 }
 
 public void removeRecordListener(RecordListener recordlistener_1)
 {
 }
 
 public int getNextRecordID() throws RecordStoreNotOpenException, RecordStoreException
 {
  return 0;
 }
 
 public int addRecord(byte[] bytes_1, int int_1, int int_2) throws RecordStoreNotOpenException, RecordStoreFullException, RecordStoreException
 {
  return 0;
 }
 
 public void deleteRecord(int int_1) throws RecordStoreNotOpenException, InvalidRecordIDException, RecordStoreException
 {
 }
 
 public int getRecordSize(int int_1) throws RecordStoreNotOpenException, InvalidRecordIDException, RecordStoreException
 {
  return 0;
 }
 
 public int getRecord(int int_1, byte[] bytes_1, int int_2) throws RecordStoreNotOpenException, InvalidRecordIDException, RecordStoreException
 {
  return 0;
 }
 
 public byte[] getRecord(int int_1) throws RecordStoreNotOpenException, InvalidRecordIDException, RecordStoreException
 {
  return null;
 }
 
 public void setRecord(int int_1, byte[] bytes_1, int int_2, int int_3) throws RecordStoreNotOpenException, RecordStoreFullException, InvalidRecordIDException, RecordStoreException
 {
 }
 
 public RecordEnumeration enumerateRecords(RecordFilter recordfilter_1, RecordComparator recordcomparator_1, boolean boolean_1) throws RecordStoreNotOpenException
 {
  return null;
 }
 
}