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

I

IMPLICIT - Static variable in interface javax.microedition.lcdui.Choice
IMPLICIT is a choice in which the currently focused item is selected when a Command is initiated.
IMPLICIT - Static variable in interface javax.microedition.lcdui.Choice
IMPLICIT is a choice in which the currently focused item is selected when a Command is initiated.
INFO - Static variable in class javax.microedition.lcdui.AlertType
An INFO AlertType typically provides non-threatening information to the user.
INFO - Static variable in class javax.microedition.lcdui.AlertType
An INFO AlertType typically provides non-threatening information to the user.
INSIDE_STORAGE_PATH - Static variable in class com.siemens.mp.io.File
 
IOException - exception java.io.IOException.
Signals that an I/O exception of some sort has occurred.
IOException() - Constructor for class java.io.IOException
Constructs an IOException with null as its error detail message.
IOException(String) - Constructor for class java.io.IOException
Constructs an IOException with the specified detail message.
ITEM - Static variable in class javax.microedition.lcdui.Command
With this command type the application can hint to the implementation that the command is specific to a particular item on the screen.
ITEM - Static variable in class javax.microedition.lcdui.Command
With this command type the application can hint to the implementation that the command is specific to a particular item on the screen.
IllegalAccessException - exception java.lang.IllegalAccessException.
Thrown when an application tries to load in a class, but the currently executing method does not have access to the definition of the specified class, because the class is not public and in another package.
IllegalAccessException() - Constructor for class java.lang.IllegalAccessException
Constructs an IllegalAccessException without a detail message.
IllegalAccessException(String) - Constructor for class java.lang.IllegalAccessException
Constructs an IllegalAccessException with a detail message.
IllegalArgumentException - exception java.lang.IllegalArgumentException.
Thrown to indicate that a method has been passed an illegal or inappropriate argument.
IllegalArgumentException() - Constructor for class java.lang.IllegalArgumentException
Constructs an IllegalArgumentException with no detail message.
IllegalArgumentException(String) - Constructor for class java.lang.IllegalArgumentException
Constructs an IllegalArgumentException with the specified detail message.
IllegalMonitorStateException - exception java.lang.IllegalMonitorStateException.
Thrown to indicate that a thread has attempted to wait on an object's monitor or to notify other threads waiting on an object's monitor without owning the specified monitor.
IllegalMonitorStateException() - Constructor for class java.lang.IllegalMonitorStateException
Constructs an IllegalMonitorStateException with no detail message.
IllegalMonitorStateException(String) - Constructor for class java.lang.IllegalMonitorStateException
Constructs an IllegalMonitorStateException with the specified detail message.
IllegalStateException - exception java.lang.IllegalStateException.
Signals that a method has been invoked at an illegal or inappropriate time.
IllegalStateException() - Constructor for class java.lang.IllegalStateException
Constructs an IllegalStateException with no detail message.
IllegalStateException(String) - Constructor for class java.lang.IllegalStateException
Constructs an IllegalStateException with the specified detail message.
IllegalThreadStateException - exception java.lang.IllegalThreadStateException.
Thrown to indicate that a thread is not in an appropriate state for the requested operation.
IllegalThreadStateException() - Constructor for class java.lang.IllegalThreadStateException
Constructs an IllegalThreadStateException with no detail message.
IllegalThreadStateException(String) - Constructor for class java.lang.IllegalThreadStateException
Constructs an IllegalThreadStateException with the specified detail message.
Image - class com.siemens.mp.lcdui.Image.
Siemens LCDUI API provides an improved implementation of the javax.microedition.lcdui.Image class.
Image - class com.siemens.mp.ui.Image.
 
Image() - Constructor for class com.siemens.mp.ui.Image
blank constructor
Image(int, int) - Constructor for class com.siemens.mp.ui.Image
Create a new blank image
Image(Image) - Constructor for class com.siemens.mp.ui.Image
Create a new copy image
Image(byte[], int, int) - Constructor for class com.siemens.mp.ui.Image
Create a new b/w image from a b/w Siemens bitmap
Image(byte[], int, int, boolean) - Constructor for class com.siemens.mp.ui.Image
Creates a new b/w image with bpp = 2.
Image(String, boolean) - Constructor for class com.siemens.mp.ui.Image
Creates a new image from PNG/JPG/GIF/BMP resource
Image(byte[]) - Constructor for class com.siemens.mp.ui.Image
Creates a new image from PNG/JPG/GIF/BMP byte stream
Image(byte[], int, int, int) - Constructor for class com.siemens.mp.ui.Image
Creates a new image from uncompressed color data.
Image - class javax.microedition.lcdui.Image.
The Image class is used to hold graphical image data.
Image - class javax.microedition.lcdui.Image.
The Image class is used to hold graphical image data.
ImageItem - class javax.microedition.lcdui.ImageItem.
A class that provides layout control when Image objects are added to a Form or to an Alert.
ImageItem - class javax.microedition.lcdui.ImageItem.
A class that provides layout control when Image objects are added to a Form or to an Alert.
ImageItem(String, Image, int, String) - Constructor for class javax.microedition.lcdui.ImageItem
Creates a new ImageItem with the given label, image, layout directive, and alternate text string.
ImageItem(String, Image, int, String) - Constructor for class javax.microedition.lcdui.ImageItem
Creates a new ImageItem with the given label, image, layout directive, and alternate text string.
IndexOutOfBoundsException - exception java.lang.IndexOutOfBoundsException.
Thrown to indicate that an index of some sort (such as to an array, to a string, or to a vector) is out of range.
IndexOutOfBoundsException() - Constructor for class java.lang.IndexOutOfBoundsException
Constructs an IndexOutOfBoundsException with no detail message.
IndexOutOfBoundsException(String) - Constructor for class java.lang.IndexOutOfBoundsException
Constructs an IndexOutOfBoundsException with the specified detail message.
InputConnection - interface javax.microedition.io.InputConnection.
This interface defines the capabilities that an input stream connection must have.
InputStream - class java.io.InputStream.
This abstract class is the superclass of all classes representing an input stream of bytes.
InputStream() - Constructor for class java.io.InputStream
 
InputStreamReader - class java.io.InputStreamReader.
An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and translates them into characters.
InputStreamReader(InputStream) - Constructor for class java.io.InputStreamReader
Create an InputStreamReader that uses the default character encoding.
InputStreamReader(InputStream, String) - Constructor for class java.io.InputStreamReader
Create an InputStreamReader that uses the named character encoding.
InstantiationException - exception java.lang.InstantiationException.
Thrown when an application tries to create an instance of a class using the newInstance method in class Class, but the specified class object cannot be instantiated because it is an interface or is an abstract class.
InstantiationException() - Constructor for class java.lang.InstantiationException
Constructs an InstantiationException with no detail message.
InstantiationException(String) - Constructor for class java.lang.InstantiationException
Constructs an InstantiationException with the specified detail message.
Integer - class java.lang.Integer.
The Integer class wraps a value of the primitive type int in an object.
Integer(int) - Constructor for class java.lang.Integer
Constructs a newly allocated Integer object that represents the primitive int argument.
InterruptedException - exception java.lang.InterruptedException.
Thrown when a thread is waiting, sleeping, or otherwise paused for a long time and another thread interrupts it using the interrupt method in class Thread.
InterruptedException() - Constructor for class java.lang.InterruptedException
Constructs an InterruptedException with no detail message.
InterruptedException(String) - Constructor for class java.lang.InterruptedException
Constructs an InterruptedException with the specified detail message.
InterruptedIOException - exception java.io.InterruptedIOException.
Signals that an I/O operation has been interrupted.
InterruptedIOException() - Constructor for class java.io.InterruptedIOException
Constructs an InterruptedIOException with null as its error detail message.
InterruptedIOException(String) - Constructor for class java.io.InterruptedIOException
Constructs an InterruptedIOException with the specified detail message.
InvalidRecordIDException - exception javax.microedition.rms.InvalidRecordIDException.
Thrown to indicate an operation could not be completed because the record ID was invalid.
InvalidRecordIDException(String) - Constructor for class javax.microedition.rms.InvalidRecordIDException
Constructs a new InvalidRecordIDException with the specified detail message.
InvalidRecordIDException() - Constructor for class javax.microedition.rms.InvalidRecordIDException
Constructs a new InvalidRecordIDException with no detail message.
Item - class javax.microedition.lcdui.Item.
A superclass for components that can be added to a Form and Alert.
Item - class javax.microedition.lcdui.Item.
A superclass for components that can be added to a Form and Alert.
ItemStateListener - interface javax.microedition.lcdui.ItemStateListener.
This interface is used by applications which need to receive events that indicate changes in the internal state of the interactive items within a Form screen.
ItemStateListener - interface javax.microedition.lcdui.ItemStateListener.
This interface is used by applications which need to receive events that indicate changes in the internal state of the interactive items within a Form screen.
identityHashCode(Object) - Static method in class java.lang.System
Returns the same hashcode for the given object as would be returned by the default method hashCode(), whether or not the given object's class overrides hashCode().
in - Variable in class java.io.DataInputStream
The input stream
indexOf(int) - Method in class java.lang.String
Returns the index within this string of the first occurrence of the specified character.
indexOf(int, int) - Method in class java.lang.String
Returns the index within this string of the first occurrence of the specified character, starting the search at the specified index.
indexOf(String) - Method in class java.lang.String
Returns the index within this string of the first occurrence of the specified substring.
indexOf(String, int) - Method in class java.lang.String
Returns the index within this string of the first occurrence of the specified substring, starting at the specified index.
indexOf(Object) - Method in class java.util.Vector
Searches for the first occurence of the given argument, testing for equality using the equals method.
indexOf(Object, int) - Method in class java.util.Vector
Searches for the first occurence of the given argument, beginning the search at index, and testing for equality using the equals method.
insert(Layer, int) - Method in class com.siemens.mp.color_game.LayerManager
Inserts a new Layer in this LayerManager at the specified index.
insert(int, Object) - Method in class java.lang.StringBuffer
Inserts the string representation of the Object argument into this string buffer.
insert(int, String) - Method in class java.lang.StringBuffer
Inserts the string into this string buffer.
insert(int, char[]) - Method in class java.lang.StringBuffer
Inserts the string representation of the char array argument into this string buffer.
insert(int, boolean) - Method in class java.lang.StringBuffer
Inserts the string representation of the boolean argument into this string buffer.
insert(int, char) - Method in class java.lang.StringBuffer
Inserts the string representation of the char argument into this string buffer.
insert(int, int) - Method in class java.lang.StringBuffer
Inserts the string representation of the second int argument into this string buffer.
insert(int, long) - Method in class java.lang.StringBuffer
Inserts the string representation of the long argument into this string buffer.
insert(int, String, Image) - Method in interface javax.microedition.lcdui.Choice
Inserts an element into the Choice just before to the element specified.
insert(int, String, Image) - Method in interface javax.microedition.lcdui.Choice
Inserts an element into the Choice just before to the element specified.
insert(int, String, Image) - Method in class javax.microedition.lcdui.ChoiceGroup
 
insert(int, String, Image) - Method in class javax.microedition.lcdui.ChoiceGroup
 
insert(int, Item) - Method in class javax.microedition.lcdui.Form
Inserts an item into the Form just prior to the item specified.
insert(int, Item) - Method in class javax.microedition.lcdui.Form
Inserts an item into the Form just prior to the item specified.
insert(int, String, Image) - Method in class javax.microedition.lcdui.List
Implementation of insertElement of interface Choice.
insert(int, String, Image) - Method in class javax.microedition.lcdui.List
Implementation of insertElement of interface Choice.
insert(String, int) - Method in class javax.microedition.lcdui.TextBox
Inserts a string into the contents of the TextBox.
insert(char[], int, int, int) - Method in class javax.microedition.lcdui.TextBox
Inserts a subrange of an array of characters into the contents of the TextBox.
insert(String, int) - Method in class javax.microedition.lcdui.TextBox
Inserts a string into the contents of the TextBox.
insert(char[], int, int, int) - Method in class javax.microedition.lcdui.TextBox
Inserts a subrange of an array of characters into the contents of the TextBox.
insert(String, int) - Method in class javax.microedition.lcdui.TextField
Inserts a string into the contents of the TextField.
insert(char[], int, int, int) - Method in class javax.microedition.lcdui.TextField
Inserts a subrange of an array of characters into the contents of the TextField.
insert(String, int) - Method in class javax.microedition.lcdui.TextField
Inserts a string into the contents of the TextField.
insert(char[], int, int, int) - Method in class javax.microedition.lcdui.TextField
Inserts a subrange of an array of characters into the contents of the TextField.
insertElementAt(Object, int) - Method in class java.util.Vector
Inserts the specified object as a component in this vector at the specified index.
insertObject(GraphicObject, int) - Method in class com.siemens.mp.game.GraphicObjectManager
Inserts a new GraphicObject into the collection at the specified position.
intValue() - Method in class java.lang.Integer
Returns the value of this Integer as an int.
isAlive() - Method in class java.lang.Thread
Tests if this thread is alive.
isArray() - Method in class java.lang.Class
Determines if this Class object represents an array class.
isAssignableFrom(Class) - Method in class java.lang.Class
Determines if the class or interface represented by this Class object is either the same as, or is a superclass or superinterface of, the class or interface represented by the specified Class parameter.
isBold() - Method in class javax.microedition.lcdui.Font
Returns true if the font is bold.
isBold() - Method in class javax.microedition.lcdui.Font
Returns true if the font is bold.
isCollidingWith(Sprite) - Method in class com.siemens.mp.game.Sprite
Checks if the sprite collides with another one.
isCollidingWithPos(int, int) - Method in class com.siemens.mp.game.Sprite
Checks if the sprite collides with a specific point.
isColor() - Method in class javax.microedition.lcdui.Display
Gets information about color support of the device.
isColor() - Method in class javax.microedition.lcdui.Display
Gets information about color support of the device.
isDigit(char) - Static method in class java.lang.Character
Determines if the specified character is a digit.
isDirectory(String) - Static method in class com.siemens.mp.io.File
Checks if the given path specifies a directory
isDoubleBuffered() - Method in class javax.microedition.lcdui.Canvas
Checks if the Graphics is double buffered by the implementation.
isDoubleBuffered() - Method in class javax.microedition.lcdui.Canvas
Checks if the Graphics is double buffered by the implementation.
isEmpty() - Method in class java.util.Hashtable
Tests if this hashtable maps no keys to values.
isEmpty() - Method in class java.util.Vector
Tests if this vector has no components.
isInstance(Object) - Method in class java.lang.Class
Determines if the specified Object is assignment-compatible with the object represented by this Class.
isInteractive() - Method in class javax.microedition.lcdui.Gauge
Tells whether the user is allowed to change the value of the Gauge.
isInteractive() - Method in class javax.microedition.lcdui.Gauge
Tells whether the user is allowed to change the value of the Gauge.
isInterface() - Method in class java.lang.Class
Determines if the specified Class object represents an interface type.
isItalic() - Method in class javax.microedition.lcdui.Font
Returns true if the font is italic.
isItalic() - Method in class javax.microedition.lcdui.Font
Returns true if the font is italic.
isKeptUpdated() - Method in interface javax.microedition.rms.RecordEnumeration
Returns true if the enumeration keeps its enumeration current with any changes in the records.
isLowerCase(char) - Static method in class java.lang.Character
Determines if the specified character is a lowercase character.
isMutable() - Method in class javax.microedition.lcdui.Image
Check if this image is mutable.
isMutable() - Method in class javax.microedition.lcdui.Image
Check if this image is mutable.
isMuted() - Method in interface com.siemens.mp.media.control.VolumeControl
Get the mute state of the signal associated with this VolumeControl.
isPlain() - Method in class javax.microedition.lcdui.Font
Returns true if the font is plain.
isPlain() - Method in class javax.microedition.lcdui.Font
Returns true if the font is plain.
isSelected(int) - Method in interface javax.microedition.lcdui.Choice
Gets a boolean value indicating whether this element is selected.
isSelected(int) - Method in interface javax.microedition.lcdui.Choice
Gets a boolean value indicating whether this element is selected.
isSelected(int) - Method in class javax.microedition.lcdui.ChoiceGroup
 
isSelected(int) - Method in class javax.microedition.lcdui.ChoiceGroup
 
isSelected(int) - Method in class javax.microedition.lcdui.List
Implementation of isSelected of interface Choice.
isSelected(int) - Method in class javax.microedition.lcdui.List
Implementation of isSelected of interface Choice.
isShown() - Method in class javax.microedition.lcdui.Displayable
Checks if the Displayable is really shown.
isShown() - Method in class javax.microedition.lcdui.Displayable
Checks if the Displayable is really shown.
isUnderlined() - Method in class javax.microedition.lcdui.Font
Returns true if the font is underlined.
isUnderlined() - Method in class javax.microedition.lcdui.Font
Returns true if the font is underlined.
isUpperCase(char) - Static method in class java.lang.Character
Determines if the specified character is an uppercase character.
isVisible() - Method in class com.siemens.mp.color_game.Layer
Gets the visibility of this Layer.
itemStateChanged(Item) - Method in interface javax.microedition.lcdui.ItemStateListener
Called when internal state of an Item has been changed.
itemStateChanged(Item) - Method in interface javax.microedition.lcdui.ItemStateListener
Called when internal state of an Item has been changed.

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