A B C D E F G H I J K L M N O P R S T U V W Y

R

READ - Static variable in class javax.microedition.io.Connector
Access mode
READ_WRITE - Static variable in class javax.microedition.io.Connector
Access mode
REALIZED - Static variable in interface com.siemens.mp.media.Player
The state of the Player indicating that it has acquired the required information but not the resources to function.
RECORD_ERROR - Static variable in interface com.siemens.mp.media.PlayerListener
Posted when an error occurs during the recording.
RECORD_STARTED - Static variable in interface com.siemens.mp.media.PlayerListener
Posted when recording is started.
RECORD_STOPPED - Static variable in interface com.siemens.mp.media.PlayerListener
Posted when recording is stopped.
REPEAT - Static variable in interface com.siemens.mp.media.control.ToneControl
The REPEAT event tag.
RESOLUTION - Static variable in interface com.siemens.mp.media.control.ToneControl
The RESOLUTION event tag.
RIGHT - Static variable in class javax.microedition.lcdui.Canvas
Constant for the RIGHT game action.
RIGHT - Static variable in class javax.microedition.lcdui.Canvas
Constant for the RIGHT game action.
RIGHT - Static variable in class javax.microedition.lcdui.Graphics
Constant for positioning the anchor point of text and images to the right of the text or image.
RIGHT - Static variable in class javax.microedition.lcdui.Graphics
Constant for positioning the anchor point of text and images to the right of the text or image.
RIGHT_PRESSED - Static variable in class com.siemens.mp.color_game.GameCanvas
 
Random - class java.util.Random.
An instance of this class is used to generate a stream of pseudorandom numbers.
Random() - Constructor for class java.util.Random
Creates a new random number generator.
Random(long) - Constructor for class java.util.Random
Creates a new random number generator using a single long seed: public Random(long seed) { setSeed(seed); } Used by method next to hold the state of the pseudorandom number generator.
Reader - class java.io.Reader.
Abstract class for reading character streams.
Reader() - Constructor for class java.io.Reader
Create a new character-stream reader whose critical sections will synchronize on the reader itself.
Reader(Object) - Constructor for class java.io.Reader
Create a new character-stream reader whose critical sections will synchronize on the given object.
RecordComparator - interface javax.microedition.rms.RecordComparator.
An interface defining a comparator which compares two records (in an implementation-defined manner) to see if they match or what their relative sort order is.
RecordEnumeration - interface javax.microedition.rms.RecordEnumeration.
A class representing a bidirectional record store Record enumerator.
RecordFilter - interface javax.microedition.rms.RecordFilter.
An interface defining a filter which examines a record to see if it matches (based on an application-defined criteria).
RecordListener - interface javax.microedition.rms.RecordListener.
A listener interface for receiving Record Changed/Added/Deleted events from a record store.
RecordStore - class javax.microedition.rms.RecordStore.
A class representing a record store.
RecordStoreException - exception javax.microedition.rms.RecordStoreException.
Thrown to indicate a general exception occurred in a record store operation.
RecordStoreException(String) - Constructor for class javax.microedition.rms.RecordStoreException
Constructs a new RecordStoreException with the specified detail message.
RecordStoreException() - Constructor for class javax.microedition.rms.RecordStoreException
Constructs a new RecordStoreException with no detail message.
RecordStoreFullException - exception javax.microedition.rms.RecordStoreFullException.
Thrown to indicate an operation could not be completed because the record store system storage is full.
RecordStoreFullException(String) - Constructor for class javax.microedition.rms.RecordStoreFullException
Constructs a new RecordStoreFullException with the specified detail message.
RecordStoreFullException() - Constructor for class javax.microedition.rms.RecordStoreFullException
Constructs a new RecordStoreFullException with no detail message.
RecordStoreNotFoundException - exception javax.microedition.rms.RecordStoreNotFoundException.
Thrown to indicate an operation could not be completed because the record store could not be found.
RecordStoreNotFoundException(String) - Constructor for class javax.microedition.rms.RecordStoreNotFoundException
Constructs a new RecordStoreNotFoundException with the specified detail message.
RecordStoreNotFoundException() - Constructor for class javax.microedition.rms.RecordStoreNotFoundException
Constructs a new RecordStoreNotFoundException with no detail message.
RecordStoreNotOpenException - exception javax.microedition.rms.RecordStoreNotOpenException.
Thrown to indicate that an operation was attempted on a closed record store.
RecordStoreNotOpenException(String) - Constructor for class javax.microedition.rms.RecordStoreNotOpenException
Constructs a new RecordStoreNotOpenException with the specified detail message.
RecordStoreNotOpenException() - Constructor for class javax.microedition.rms.RecordStoreNotOpenException
Constructs a new RecordStoreNotOpenException with no detail message.
Runnable - interface java.lang.Runnable.
The Runnable interface should be implemented by any class whose instances are intended to be executed by a thread.
Runtime - class java.lang.Runtime.
Every Java application has a single instance of class Runtime that allows the application to interface with the environment in which the application is running.
RuntimeException - exception java.lang.RuntimeException.
RuntimeException is the superclass of those exceptions that can be thrown during the normal operation of the Java Virtual Machine.
RuntimeException() - Constructor for class java.lang.RuntimeException
Constructs a RuntimeException with no detail message.
RuntimeException(String) - Constructor for class java.lang.RuntimeException
Constructs a RuntimeException with the specified detail message.
read(int, byte[], int, int) - Method in class com.siemens.mp.io.File
Reads a maximum of numBytes bytes into a buffer from a file.
read() - Method in class java.io.ByteArrayInputStream
Reads the next byte of data from this input stream.
read(byte[], int, int) - Method in class java.io.ByteArrayInputStream
Reads up to len bytes of data into an array of bytes from this input stream.
read() - Method in class java.io.DataInputStream
Reads the next byte of data from this input stream.
read(byte[]) - Method in class java.io.DataInputStream
See the general contract of the read method of DataInput.
read(byte[], int, int) - Method in class java.io.DataInputStream
Reads up to len bytes of data from this input stream into an array of bytes.
read() - Method in class java.io.InputStream
Reads the next byte of data from the input stream.
read(byte[]) - Method in class java.io.InputStream
Reads some number of bytes from the input stream and stores them into the buffer array b.
read(byte[], int, int) - Method in class java.io.InputStream
Reads up to len bytes of data from the input stream into an array of bytes.
read() - Method in class java.io.InputStreamReader
Read a single character.
read(char[], int, int) - Method in class java.io.InputStreamReader
Read characters into a portion of an array.
read() - Method in class java.io.Reader
Read a single character.
read(char[]) - Method in class java.io.Reader
Read characters into an array.
read(char[], int, int) - Method in class java.io.Reader
Read characters into a portion of an array.
readBoolean() - Method in interface java.io.DataInput
Reads one input byte and returns true if that byte is nonzero, false if that byte is zero.
readBoolean() - Method in class java.io.DataInputStream
See the general contract of the readBoolean method of DataInput.
readByte() - Method in interface java.io.DataInput
Reads and returns one input byte.
readByte() - Method in class java.io.DataInputStream
See the general contract of the readByte method of DataInput.
readChar() - Method in interface java.io.DataInput
Reads an input char and returns the char value.
readChar() - Method in class java.io.DataInputStream
See the general contract of the readChar method of DataInput.
readFully(byte[]) - Method in interface java.io.DataInput
Reads some bytes from an input stream and stores them into the buffer array b.
readFully(byte[], int, int) - Method in interface java.io.DataInput
Reads len bytes from an input stream.
readFully(byte[]) - Method in class java.io.DataInputStream
See the general contract of the readFully method of DataInput.
readFully(byte[], int, int) - Method in class java.io.DataInputStream
See the general contract of the readFully method of DataInput.
readInt() - Method in interface java.io.DataInput
Reads four input bytes and returns an int value.
readInt() - Method in class java.io.DataInputStream
See the general contract of the readInt method of DataInput.
readLong() - Method in interface java.io.DataInput
Reads eight input bytes and returns a long value.
readLong() - Method in class java.io.DataInputStream
See the general contract of the readLong method of DataInput.
readShort() - Method in interface java.io.DataInput
Reads two input bytes and returns a short value.
readShort() - Method in class java.io.DataInputStream
See the general contract of the readShort method of DataInput.
readUTF() - Method in interface java.io.DataInput
Reads in a string that has been encoded using a modified UTF-8 format.
readUTF() - Method in class java.io.DataInputStream
See the general contract of the readUTF method of DataInput.
readUTF(DataInput) - Static method in class java.io.DataInputStream
Reads from the stream in a representation of a Unicode character string encoded in Java modified UTF-8 format; this string of characters is then returned as a String.
readUnsignedByte() - Method in interface java.io.DataInput
Reads one input byte, zero-extends it to type int, and returns the result, which is therefore in the range 0 through 255.
readUnsignedByte() - Method in class java.io.DataInputStream
See the general contract of the readUnsignedByte method of DataInput.
readUnsignedShort() - Method in interface java.io.DataInput
Reads two input bytes and returns an int value in the range 0 through 65535.
readUnsignedShort() - Method in class java.io.DataInputStream
See the general contract of the readUnsignedShort method of DataInput.
ready() - Method in class java.io.InputStreamReader
Tell whether this stream is ready to be read.
ready() - Method in class java.io.Reader
Tell whether this stream is ready to be read.
realize() - Method in interface com.siemens.mp.media.Player
Constructs portions of the Player without acquiring the scarce and exclusive resources.
rebuild() - Method in interface javax.microedition.rms.RecordEnumeration
Request that the enumeration be updated to reflect the current record set.
receive(Datagram) - Method in interface javax.microedition.io.DatagramConnection
Receive a datagram
receiveData(byte[]) - Method in interface com.siemens.mp.io.ConnectionListener
The callback method, which will be called by the runtime system each time incoming data arrive from the connection, if an implementation class object is registered as listener for that connection.
recordAdded(RecordStore, int) - Method in interface javax.microedition.rms.RecordListener
Called when a record has been added to a record store.
recordChanged(RecordStore, int) - Method in interface javax.microedition.rms.RecordListener
Called after a record in a record store has been changed.
recordDeleted(RecordStore, int) - Method in interface javax.microedition.rms.RecordListener
Called after a record has been deleted from a record store.
regionMatches(boolean, int, String, int, int) - Method in class java.lang.String
Tests if two string regions are equal.
rehash() - Method in class java.util.Hashtable
Rehashes the contents of the hashtable into a hashtable with a larger capacity.
remove(Layer) - Method in class com.siemens.mp.color_game.LayerManager
Removes the specified Layer from this LayerManager.
remove(Object) - Method in class java.util.Hashtable
Removes the key (and its corresponding value) from this hashtable.
removeAllElements() - Method in class java.util.Vector
Removes all components from this vector and sets its size to zero.
removeCommand(Command) - Method in class javax.microedition.lcdui.Displayable
Removes a command from the Displayable.
removeCommand(Command) - Method in class javax.microedition.lcdui.Displayable
Removes a command from the Displayable.
removeElement(Object) - Method in class java.util.Vector
Removes the first occurrence of the argument from this vector.
removeElementAt(int) - Method in class java.util.Vector
Deletes the component at the specified index.
removeLayer(NativeMem, Layer) - Method in class com.siemens.mp.color_game.LayerManager
 
removePlayerListener(PlayerListener) - Method in interface com.siemens.mp.media.Player
Remove a player listener for this player.
removeRecordListener(RecordListener) - Method in class javax.microedition.rms.RecordStore
Removes the specified RecordListener.
rename(String, String) - Static method in class com.siemens.mp.io.File
Renames a file from source filename to destination filename.
repaint(int, int, int, int) - Method in class javax.microedition.lcdui.Canvas
Requests a repaint for the specified region of the Screen.
repaint() - Method in class javax.microedition.lcdui.Canvas
Requests a repaint for the entire Canvas.
repaint(int, int, int, int) - Method in class javax.microedition.lcdui.Canvas
Requests a repaint for the specified region of the Screen.
repaint() - Method in class javax.microedition.lcdui.Canvas
Requests a repaint for the entire Canvas.
replace(char, char) - Method in class java.lang.String
Returns a new string resulting from replacing all occurrences of oldChar in this string with newChar.
reset() - Method in class java.io.ByteArrayInputStream
Resets the buffer to the marked position.
reset() - Method in class java.io.ByteArrayOutputStream
Resets the count field of this byte array output stream to zero, so that all currently accumulated output in the output stream is discarded.
reset() - Method in class java.io.DataInputStream
Repositions this stream to the position at the time the mark method was last called on this input stream.
reset() - Method in class java.io.InputStream
Repositions this stream to the position at the time the mark method was last called on this input stream.
reset() - Method in class java.io.InputStreamReader
Reset the stream.
reset() - Method in class java.io.Reader
Reset the stream.
reset() - Method in interface javax.microedition.io.Datagram
Reset the read/write pointer and zeros the offset and length parameters.
reset() - Method in interface javax.microedition.rms.RecordEnumeration
Returns the enumeration index to the same state as right after the enumeration was created.
resetMelody() - Method in class com.siemens.mp.game.MelodyComposer
Resets the composed melody and makes it empty.
resumeRequest() - Method in class javax.microedition.midlet.MIDlet
Provides a MIDlet with a mechanism to indicate that it is interested in entering the Active state.
reverse() - Method in class java.lang.StringBuffer
The character sequence contained in this string buffer is replaced by the reverse of the sequence.
run() - Method in interface java.lang.Runnable
When an object implementing interface Runnable is used to create a thread, starting the thread causes the object's run method to be called in that separately executing thread.
run() - Method in class java.lang.Thread
If this thread was constructed using a separate Runnable run object, then that Runnable object's run method is called; otherwise, this method does nothing and returns.
run() - Method in class java.util.TimerTask
The action to be performed by this timer task.

A B C D E F G H I J K L M N O P R S T U V W Y
Generated on 2003-10-17For further information and updates, please visit Siemens mobile Developer Portal