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

A

addCommand(Command) - Method in class javax.microedition.lcdui.Displayable
Adds a Command to the Displayable.
addCommand(Command) - Method in class javax.microedition.lcdui.Alert
Commands are not allowed on Alerts, so this method will always throw IllegalStateException whenever it is called.
addRecord(byte[], int, int) - Method in class javax.microedition.rms.RecordStore
Adds a new record to the record store.
addRecordListener(RecordListener) - Method in class javax.microedition.rms.RecordStore
Adds the specified RecordListener.
ALARM - Static variable in class javax.microedition.lcdui.AlertType
Alert for alarm.
Alert - class javax.microedition.lcdui.Alert.
An Alert is a Screen that shows data to the user and waits for a certain period of time before proceeding to the next Screen.
Alert(String) - Constructor for class javax.microedition.lcdui.Alert
Constructs a new, empty Alert object with the given title.
Alert(String, String, Image, AlertType) - Constructor for class javax.microedition.lcdui.Alert
Constructs a new Alert object with the given title, content string and image, and alert type.
AlertType - class javax.microedition.lcdui.AlertType.
The AlertType provides an indication of the nature of an Alert.
AlertType() - Constructor for class javax.microedition.lcdui.AlertType
Protected constructor for subclasses
ANY - Static variable in class javax.microedition.lcdui.TextField
The user is allowed to enter any text.
append(Image) - Method in class javax.microedition.lcdui.Form
Adds an item consisting of one Image to the Form.
append(Item) - Method in class javax.microedition.lcdui.Form
Adds an Item into the Form.
append(String) - Method in class javax.microedition.lcdui.Form
Adds an item consisting of one String to the Form.
append(String, Image) - Method in interface javax.microedition.lcdui.Choice
Appends an element to the Choice.
append(String, Image) - Method in class javax.microedition.lcdui.List
 
append(String, Image) - Method in class javax.microedition.lcdui.ChoiceGroup
 

B

BACK - Static variable in class javax.microedition.lcdui.Command
A navigation command that returns the user to the logically previous screen.
BASELINE - Static variable in class javax.microedition.lcdui.Graphics
Constant for positioning the anchor point at the baseline of text.
BOTTOM - Static variable in class javax.microedition.lcdui.Graphics
Constant for positioning the anchor point of text and images below the text or image.

C

callSerially(Runnable) - Method in class javax.microedition.lcdui.Display
Causes the Runnable object r to have its Runnable.run() method called later, serialized with the event stream.
CANCEL - Static variable in class javax.microedition.lcdui.Command
A command that is a standard negative answer to a dialog implemented by current screen.
cancel() - Method in class java.util.Timer
Terminates this timer, discarding any currently scheduled tasks.
cancel() - Method in class java.util.TimerTask
Cancels this timer task.
Canvas - class javax.microedition.lcdui.Canvas.
The Canvas class is a base class for writing applications that need to handle low-level events and to issue graphics calls for drawing to the display.
Canvas() - Constructor for class javax.microedition.lcdui.Canvas
Constructs a new Canvas object.
charsWidth(char[], int, int) - Method in class javax.microedition.lcdui.Font
Returns the advance width of the characters in ch, starting at the specified offset and for the specified number of characters (length).
charWidth(char) - Method in class javax.microedition.lcdui.Font
Gets the advance width of the specified character in this Font.
Choice - interface javax.microedition.lcdui.Choice.
Choice defines an API for a user interface component implementing selection from a predefined number of choices.
ChoiceGroup - class javax.microedition.lcdui.ChoiceGroup.
A ChoiceGroup is a group of selectable elements intended to be placed within a Form.
ChoiceGroup(String, int) - Constructor for class javax.microedition.lcdui.ChoiceGroup
Creates a new, empty ChoiceGroup, specifying its title and its type.
ChoiceGroup(String, int, String[], Image[]) - Constructor for class javax.microedition.lcdui.ChoiceGroup
Creates a new ChoiceGroup, specifying its title, its type, and an array of Strings and Images to be used as its initial contents.
clipRect(int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Intersects the current clip with the specified rectangle.
closeRecordStore() - Method in class javax.microedition.rms.RecordStore
This method is called when the MIDlet requests to have the record store closed.
Command - class javax.microedition.lcdui.Command.
The Command class is a construct that encapsulates the semantic information of an action.
Command(String, int, int) - Constructor for class javax.microedition.lcdui.Command
Creates a new command object with the given label, type, and priority.
commandAction(Command, Displayable) - Method in interface javax.microedition.lcdui.CommandListener
Indicates that a command event has occurred on Displayable d.
CommandListener - interface javax.microedition.lcdui.CommandListener.
This interface is used by applications which need to receive high-level events from the implementation.
compare(byte[], byte[]) - Method in interface javax.microedition.rms.RecordComparator
Returns RecordComparator.PRECEDES if rec1 precedes rec2 in sort order, or RecordComparator.FOLLOWS if rec1 follows rec2 in sort order, or RecordComparator.EQUIVALENT if rec1 and rec2 are equivalent in terms of sort order.
CONFIRMATION - Static variable in class javax.microedition.lcdui.AlertType
Alert for confirmation.
CONSTRAINT_MASK - Static variable in class javax.microedition.lcdui.TextField
The mask value for determining the constraint mode.
createImage(byte[], int, int) - Static method in class javax.microedition.lcdui.Image
Creates an immutable image which is decoded from the data stored in the specified byte array at the specified offset and length.
createImage(Image) - Static method in class javax.microedition.lcdui.Image
Creates an immutable image from a source image.
createImage(int, int) - Static method in class javax.microedition.lcdui.Image
Creates a new, mutable image for off-screen drawing.
createImage(String) - Static method in class javax.microedition.lcdui.Image
Creates an immutable image from decoded image data obtained from the named resource.

D

DATE - Static variable in class javax.microedition.lcdui.DateField
Input mode for date information (day, month, year).
DATE_TIME - Static variable in class javax.microedition.lcdui.DateField
Input mode for date (day, month, year) and time (minutes, hours) information.
DateField - class javax.microedition.lcdui.DateField.
A DateField is an editable component for presenting date and time (calendar) information that may be placed into a Form.
DateField(int) - Constructor for class javax.microedition.lcdui.DateField
Creates a DateField object with the specified mode.
DateField(int, TimeZone) - Constructor for class javax.microedition.lcdui.DateField
Creates a date field in which calendar calculations are based on a specific TimeZone object and the default calendaring system for the current locale.
delete(int) - Method in class javax.microedition.lcdui.Form
Deletes the Item referenced by itemNum.
delete(int) - Method in interface javax.microedition.lcdui.Choice
Deletes the element referenced by elementNum.
delete(int) - Method in class javax.microedition.lcdui.List
 
delete(int) - Method in class javax.microedition.lcdui.ChoiceGroup
 
delete(int, int) - Method in class javax.microedition.lcdui.TextField
Deletes characters from the TextField.
delete(int, int) - Method in class javax.microedition.lcdui.TextBox
Deletes characters from the TextBox.
deleteRecord(int) - Method in class javax.microedition.rms.RecordStore
The record is deleted from the record store.
deleteRecordStore(String) - Static method in class javax.microedition.rms.RecordStore
Deletes the named record store.
destroy() - Method in interface javax.microedition.rms.RecordEnumeration
Frees internal resources used by this RecordEnumeration.
destroyApp(boolean) - Method in class javax.microedition.midlet.MIDlet
Signals the MIDlet to terminate and enter the Destroyed state.
Display - class javax.microedition.lcdui.Display.
Display represents the manager of the display and input devices of the system.
Displayable - class javax.microedition.lcdui.Displayable.
An object that has the capability of being placed on the display.
Displayable() - Constructor for class javax.microedition.lcdui.Displayable
 
DOTTED - Static variable in class javax.microedition.lcdui.Graphics
Constant for DOTTED stroke style.
DOWN - Static variable in class javax.microedition.lcdui.Canvas
Constant for the DOWN game action.
drawArc(int, int, int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Draws the outline of a circular or elliptical arc covering the specified rectangle, using the current color and stroke style.
drawChar(char, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Draws the specified character using the current font and color.
drawChars(char[], int, int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Draws the specified characters using the current font and color.
drawImage(Image, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Draws the specified image by using the anchor point.
drawLine(int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Draws a line between the coordinates (x1, y1) and (x2, y2) using the current color and stroke style.
drawRect(int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Draws the outline of the specified rectangle using the current color and stroke style.
drawRoundRect(int, int, int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Draws the outline of the specified rounded corner rectangle using the current color and stroke style.
drawString(String, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Draws the specified String using the current font and color.
drawSubstring(String, int, int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Draws the specified String using the current font and color.

E

EMAILADDR - Static variable in class javax.microedition.lcdui.TextField
The user is allowed to enter an e-mail address.
enumerateRecords(RecordFilter, RecordComparator, boolean) - Method in class javax.microedition.rms.RecordStore
Returns an enumeration for traversing a set of records in the record store in an optionally specified order.
EQUIVALENT - Static variable in interface javax.microedition.rms.RecordComparator
EQUIVALENT means that in terms of search or sort order, the two records are the same.
ERROR - Static variable in class javax.microedition.lcdui.AlertType
Alert for error.
EXCLUSIVE - Static variable in interface javax.microedition.lcdui.Choice
EXCLUSIVE is a choice having exactly one element selected at a time.
EXIT - Static variable in class javax.microedition.lcdui.Command
A command used for exiting from the application.

F

FACE_MONOSPACE - Static variable in class javax.microedition.lcdui.Font
The "monospace" font face.
FACE_PROPORTIONAL - Static variable in class javax.microedition.lcdui.Font
The "proportional" font face.
FACE_SYSTEM - Static variable in class javax.microedition.lcdui.Font
The "system" font face.
fillArc(int, int, int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Fills a circular or elliptical arc covering the specified rectangle.
fillRect(int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Fills the specified rectangle with the current color.
fillRoundRect(int, int, int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Fills the specified rounded corner rectangle with the current color.
FIRE - Static variable in class javax.microedition.lcdui.Canvas
Constant for the FIRE game action.
FOLLOWS - Static variable in interface javax.microedition.rms.RecordComparator
FOLLOWS means that the left (first parameter) record follows the right (second parameter) record in terms of search or sort order.
Font - class javax.microedition.lcdui.Font.
The Font class represents fonts and font metrics.
FOREVER - Static variable in class javax.microedition.lcdui.Alert
FOREVER indicates that an Alert is kept alive until the user dismisses it.
Form - class javax.microedition.lcdui.Form.
A Form is a Screen that contains an arbitrary mixture of items: Images, non-editable StringItems, editable TextFields, editable DateFields, Gauges, and ChoiceGroups.
Form(String) - Constructor for class javax.microedition.lcdui.Form
Creates a new, empty Form.
Form(String, Item[]) - Constructor for class javax.microedition.lcdui.Form
Creates a new Form with the specified contents.

G

GAME_A - Static variable in class javax.microedition.lcdui.Canvas
Constant for the GAME_A game action.
GAME_B - Static variable in class javax.microedition.lcdui.Canvas
Constant for the GAME_B game action.
GAME_C - Static variable in class javax.microedition.lcdui.Canvas
Constant for the GAME_C game action.
GAME_D - Static variable in class javax.microedition.lcdui.Canvas
Constant for the GAME_D game action.
Gauge - class javax.microedition.lcdui.Gauge.
The Gauge class implements a bar graph display of a value intended for use in a Form.
Gauge(String, boolean, int, int) - Constructor for class javax.microedition.lcdui.Gauge
Creates a new Gauge object with the given label, in interactive or non-interactive mode, with the given maximum and initial values.
get(int) - Method in class javax.microedition.lcdui.Form
Gets the item at the given position.
getAltText() - Method in class javax.microedition.lcdui.ImageItem
Gets the text string to be used if the image exceeds the device's capacity to display it.
getAppProperty(String) - Method in class javax.microedition.midlet.MIDlet
Provides a MIDlet with a mechanism to retrieve named properties from the application management software.
getBaselinePosition() - Method in class javax.microedition.lcdui.Font
Gets the distance in pixels from the top of the text to the text's baseline.
getBlueComponent() - Method in class javax.microedition.lcdui.Graphics
Gets the blue component of the current color.
getCaretPosition() - Method in class javax.microedition.lcdui.TextField
Gets the current input position.
getCaretPosition() - Method in class javax.microedition.lcdui.TextBox
Gets the current input position.
getChars(char[]) - Method in class javax.microedition.lcdui.TextField
Copies the contents of the TextField into a character array starting at index zero.
getChars(char[]) - Method in class javax.microedition.lcdui.TextBox
Copies the contents of the TextBox into a character array starting at index zero.
getClipHeight() - Method in class javax.microedition.lcdui.Graphics
Gets the height of the current clipping area.
getClipWidth() - Method in class javax.microedition.lcdui.Graphics
Gets the width of the current clipping area.
getClipX() - Method in class javax.microedition.lcdui.Graphics
Gets the X offset of the current clipping area, relative to the coordinate system origin of this graphics context.
getClipY() - Method in class javax.microedition.lcdui.Graphics
Gets the Y offset of the current clipping area, relative to the coordinate system origin of this graphics context.
getColor() - Method in class javax.microedition.lcdui.Graphics
Gets the current color.
getCommandType() - Method in class javax.microedition.lcdui.Command
Gets the type of the command.
getConstraints() - Method in class javax.microedition.lcdui.TextField
Get the current input constraints of the TextField.
getConstraints() - Method in class javax.microedition.lcdui.TextBox
Get the current input constraints of the TextBox.
getCurrent() - Method in class javax.microedition.lcdui.Display
Gets the current Displayable object for this MIDlet.
getDate() - Method in class javax.microedition.lcdui.DateField
Returns the date value of this field.
getDefaultFont() - Static method in class javax.microedition.lcdui.Font
Gets the default font of the system.
getDefaultTimeout() - Method in class javax.microedition.lcdui.Alert
Get the default time for showing an Alert.
getDisplay(MIDlet) - Static method in class javax.microedition.lcdui.Display
Gets the Display object that is unique to this MIDlet.
getFace() - Method in class javax.microedition.lcdui.Font
Gets the face of the font.
getFont() - Method in class javax.microedition.lcdui.Graphics
Gets the current font.
getFont(int, int, int) - Static method in class javax.microedition.lcdui.Font
Obtains an object representing a font having the specified face, style, and size.
getGameAction(int) - Method in class javax.microedition.lcdui.Canvas
Gets the game action associated with the given key code of the device.
getGraphics() - Method in class javax.microedition.lcdui.Image
Creates a Graphics object that renders to this image.
getGrayScale() - Method in class javax.microedition.lcdui.Graphics
Gets the current grayscale value of the color being used for rendering operations.
getGreenComponent() - Method in class javax.microedition.lcdui.Graphics
Gets the green component of the current color.
getHeight() - Method in class javax.microedition.lcdui.Image
Gets the height of the image in pixels.
getHeight() - Method in class javax.microedition.lcdui.Font
Gets the standard height of a line of text in this font.
getHeight() - Method in class javax.microedition.lcdui.Canvas
Gets height of the displayable area in pixels.
getImage() - Method in class javax.microedition.lcdui.ImageItem
Gets the image contained within the ImageItem, or null if there is no contained image.
getImage() - Method in class javax.microedition.lcdui.Alert
Gets the Image used in the Alert
getImage(int) - Method in interface javax.microedition.lcdui.Choice
Gets the Image part of the element referenced by elementNum.
getImage(int) - Method in class javax.microedition.lcdui.List
 
getImage(int) - Method in class javax.microedition.lcdui.ChoiceGroup
 
getInputMode() - Method in class javax.microedition.lcdui.DateField
Gets input mode for this date field.
getKeyCode(int) - Method in class javax.microedition.lcdui.Canvas
Gets the key code that corresponds to the specified game action on the device.
getKeyName(int) - Method in class javax.microedition.lcdui.Canvas
Gets an informative key string for a key.
getLabel() - Method in class javax.microedition.lcdui.Item
Gets the label of this Item object.
getLabel() - Method in class javax.microedition.lcdui.Command
Gets the label of the command.
getLastModified() - Method in class javax.microedition.rms.RecordStore
Returns the last time the record store was modified, in the format used by System.currentTimeMillis().
getLayout() - Method in class javax.microedition.lcdui.ImageItem
Gets the layout directives used for placing the image.
getMaxSize() - Method in class javax.microedition.lcdui.TextField
Returns the maximum size (number of characters) that can be stored in this TextField.
getMaxSize() - Method in class javax.microedition.lcdui.TextBox
Returns the maximum size (number of characters) that can be stored in this TextBox.
getMaxValue() - Method in class javax.microedition.lcdui.Gauge
Gets the maximum value of this Gauge object.
getName() - Method in class javax.microedition.rms.RecordStore
Returns the name of this RecordStore.
getNextRecordID() - Method in class javax.microedition.rms.RecordStore
Returns the recordId of the next record to be added to the record store.
getNumRecords() - Method in class javax.microedition.rms.RecordStore
Returns the number of records currently in the record store.
getPriority() - Method in class javax.microedition.lcdui.Command
Gets the priority of the command.
getRecord(int) - Method in class javax.microedition.rms.RecordStore
Returns the data stored in the given record.
getRecord(int, byte[], int) - Method in class javax.microedition.rms.RecordStore
Returns the data stored in the given record.
getRecordSize(int) - Method in class javax.microedition.rms.RecordStore
Returns the size (in bytes) of the MIDlet data available in the given record.
getRedComponent() - Method in class javax.microedition.lcdui.Graphics
Gets the red component of the current color.
getSelectedFlags(boolean[]) - Method in interface javax.microedition.lcdui.Choice
Queries the state of a Choice and returns the state of all elements in the boolean array selectedArray_return.
getSelectedFlags(boolean[]) - Method in class javax.microedition.lcdui.List
 
getSelectedFlags(boolean[]) - Method in class javax.microedition.lcdui.ChoiceGroup
 
getSelectedIndex() - Method in interface javax.microedition.lcdui.Choice
Returns the index number of an element in the Choice that is selected.
getSelectedIndex() - Method in class javax.microedition.lcdui.List
 
getSelectedIndex() - Method in class javax.microedition.lcdui.ChoiceGroup
 
getSize() - Method in class javax.microedition.lcdui.Font
Gets the size of the font.
getSize() - Method in class javax.microedition.rms.RecordStore
Returns the size of the record store in bytes.
getSizeAvailable() - Method in class javax.microedition.rms.RecordStore
Returns the amount of additional room (in bytes) available for this record store to grow.
getString() - Method in class javax.microedition.lcdui.Ticker
Gets the string currently being scrolled by the ticker.
getString() - Method in class javax.microedition.lcdui.Alert
Gets the text string used in the Alert.
getString() - Method in class javax.microedition.lcdui.TextField
Gets the contents of the TextField as a string value.
getString() - Method in class javax.microedition.lcdui.TextBox
Gets the contents of the TextBox as a string value.
getString(int) - Method in interface javax.microedition.lcdui.Choice
Gets the String part of the element referenced by elementNum.
getString(int) - Method in class javax.microedition.lcdui.List
 
getString(int) - Method in class javax.microedition.lcdui.ChoiceGroup
 
getStrokeStyle() - Method in class javax.microedition.lcdui.Graphics
Gets the stroke style used for drawing operations.
getStyle() - Method in class javax.microedition.lcdui.Font
Gets the style of the font.
getText() - Method in class javax.microedition.lcdui.StringItem
Gets the text contents of the StringItem, or null if the StringItem is empty.
getTicker() - Method in class javax.microedition.lcdui.Screen
Get the Ticker used by this Screen.
getTimeout() - Method in class javax.microedition.lcdui.Alert
Get the time this Alert will be shown.
getTitle() - Method in class javax.microedition.lcdui.Screen
Gets the title of the Screen.
getTranslateX() - Method in class javax.microedition.lcdui.Graphics
Gets the X coordinate of the translated origin of this graphics context.
getTranslateY() - Method in class javax.microedition.lcdui.Graphics
Gets the Y coordinate of the translated origin of this graphics context.
getType() - Method in class javax.microedition.lcdui.Alert
Gets the type of the Alert.
getValue() - Method in class javax.microedition.lcdui.Gauge
Gets the current value of this Gauge object.
getVersion() - Method in class javax.microedition.rms.RecordStore
Each time a record store is modified (record added, modified, deleted), its version is incremented.
getWidth() - Method in class javax.microedition.lcdui.Image
Gets the width of the image in pixels.
getWidth() - Method in class javax.microedition.lcdui.Canvas
Gets width of the displayable area in pixels.
Graphics - class javax.microedition.lcdui.Graphics.
Provides simple 2D geometric rendering capability.

H

hasNextElement() - Method in interface javax.microedition.rms.RecordEnumeration
Returns true if more elements exist in the next direction.
hasPointerEvents() - Method in class javax.microedition.lcdui.Canvas
Checks if the platform supports pointer press and release events.
hasPointerMotionEvents() - Method in class javax.microedition.lcdui.Canvas
Checks if the platform supports pointer motion events (pointer dragged).
hasPreviousElement() - Method in interface javax.microedition.rms.RecordEnumeration
Returns true if more elements exist in the previous direction.
hasRepeatEvents() - Method in class javax.microedition.lcdui.Canvas
Checks if the platform can ganerate repeat events when key is kept down.
HCENTER - Static variable in class javax.microedition.lcdui.Graphics
Constant for centering text and images horizontally around the anchor point
HELP - Static variable in class javax.microedition.lcdui.Command
This command specifies a request for on-line help.
hideNotify() - Method in class javax.microedition.lcdui.Canvas
The implementation calls hideNotify() shortly after the Canvas has been removed from the display.

I

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.
Image - class javax.microedition.lcdui.Image.
The Image class is used to 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.
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.
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
Alert for information.
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(char[], int, int, int) - Method in class javax.microedition.lcdui.TextBox
Inserts a subrange of an array of characters just prior to the given position.
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 interface javax.microedition.lcdui.Choice
Inserts an element into the Choice just before the element specified.
insert(int, String, Image) - Method in class javax.microedition.lcdui.List
 
insert(int, String, Image) - Method in class javax.microedition.lcdui.ChoiceGroup
 
insert(String, int) - Method in class javax.microedition.lcdui.TextField
Inserts a string into the contents just prior to the character indicated by the position parameter, where zero specifies the first character of the contents of the TextField.
insert(String, int) - Method in class javax.microedition.lcdui.TextBox
Inserts a string into the contents of the TextBox.
InvalidRecordIDException - exception javax.microedition.rms.InvalidRecordIDException.
Indicates an operation could not be completed because the record ID was invalid.
InvalidRecordIDException() - Constructor for class javax.microedition.rms.InvalidRecordIDException
Constructs a new InvalidRecordIDException with no detail message.
InvalidRecordIDException(String) - Constructor for class javax.microedition.rms.InvalidRecordIDException
Constructs a new InvalidRecordIDException with the specified detail message.
isBold() - Method in class javax.microedition.lcdui.Font
Returns true if the Font is bold.
isColor() - Method in class javax.microedition.lcdui.Display
Gets information about color support of the device.
isDoubleBuffered() - Method in class javax.microedition.lcdui.Canvas
Checks if the Graphics is double buffered by the implementation
isInteractive() - Method in class javax.microedition.lcdui.Gauge
Tells whether the user is allowed to change the value of the Gauge.
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.
isMutable() - Method in class javax.microedition.lcdui.Image
Check if this image is mutable.
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 class javax.microedition.lcdui.List
 
isSelected(int) - Method in class javax.microedition.lcdui.ChoiceGroup
 
isShown() - Method in class javax.microedition.lcdui.Displayable
Checks if the Displayable is actually visible on the Display.
Item - class javax.microedition.lcdui.Item.
A superclass for interactive components that can be added to a Form.
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.
itemStateChanged(Item) - Method in interface javax.microedition.lcdui.ItemStateListener
Called when internal state of an Item has been changed.
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.

J

javax.microedition.lcdui - package javax.microedition.lcdui
 
javax.microedition.midlet - package javax.microedition.midlet
 
javax.microedition.rms - package javax.microedition.rms
 

K

keepUpdated(boolean) - Method in interface javax.microedition.rms.RecordEnumeration
Used to set whether the enumeration will be keep its internal index up to date with the record store record additions/deletions/changes.
KEY_NUM0 - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key 0.
KEY_NUM1 - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key 1.
KEY_NUM2 - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key 2.
KEY_NUM3 - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key 3.
KEY_NUM4 - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key 4.
KEY_NUM5 - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key 5.
KEY_NUM6 - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key 6.
KEY_NUM7 - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key 7.
KEY_NUM8 - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key 8.
KEY_NUM9 - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key 9.
KEY_POUND - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key "pound" (#).
KEY_STAR - Static variable in class javax.microedition.lcdui.Canvas
Keycode for ITU-T key "star" (*).
keyPressed(int) - Method in class javax.microedition.lcdui.Canvas
Called when a key is pressed.
keyReleased(int) - Method in class javax.microedition.lcdui.Canvas
Called when a key is released.
keyRepeated(int) - Method in class javax.microedition.lcdui.Canvas
Called when a key is repeated (held down).

L

LAYOUT_CENTER - Static variable in class javax.microedition.lcdui.ImageItem
Image should be horizontally centered.
LAYOUT_DEFAULT - Static variable in class javax.microedition.lcdui.ImageItem
Use the default formatting of the "container" of the image.
LAYOUT_LEFT - Static variable in class javax.microedition.lcdui.ImageItem
Image should be close to left-edge of the drawing area.
LAYOUT_NEWLINE_AFTER - Static variable in class javax.microedition.lcdui.ImageItem
A new line should be started after the image is drawn.
LAYOUT_NEWLINE_BEFORE - Static variable in class javax.microedition.lcdui.ImageItem
A new line should be started before the image is drawn.
LAYOUT_RIGHT - Static variable in class javax.microedition.lcdui.ImageItem
Image should be close to right-edge of the drawing area.
LEFT - Static variable in class javax.microedition.lcdui.Canvas
Constant for the LEFT game action.
LEFT - Static variable in class javax.microedition.lcdui.Graphics
Constant for positioning the anchor point of text and images to the left of the text or image.
List - class javax.microedition.lcdui.List.
The List class is a Screen containing list of choices.
List(String, int) - Constructor for class javax.microedition.lcdui.List
Creates a new, empty List, specifying its title and the type of the list.
List(String, int, String[], Image[]) - Constructor for class javax.microedition.lcdui.List
Creates a new List, specifying its title, the type of the List, and an array of Strings and Images to be used as its initial contents.
listRecordStores() - Static method in class javax.microedition.rms.RecordStore
Returns an array of the names of record stores owned by the MIDlet suite.

M

matches(byte[]) - Method in interface javax.microedition.rms.RecordFilter
Returns true if the candidate matches the implemented criterion.
MENU - Static variable in class javax.microedition.lcdui.Command
A command used for initiating a menu.
MIDlet - class javax.microedition.midlet.MIDlet.
A MIDLet is a MID Profile application.
MIDlet() - Constructor for class javax.microedition.midlet.MIDlet
Protected constructor for subclasses.
MIDletStateChangeException - exception javax.microedition.midlet.MIDletStateChangeException.
Signals that a requested MIDlet state change failed.
MIDletStateChangeException() - Constructor for class javax.microedition.midlet.MIDletStateChangeException
Constructs an exception with no specified detail message.
MIDletStateChangeException(String) - Constructor for class javax.microedition.midlet.MIDletStateChangeException
Constructs an exception with the specified detail message.
MULTIPLE - Static variable in interface javax.microedition.lcdui.Choice
MULTIPLE is a choice that can have an arbitrary number of elements selected at a time.

N

nextRecord() - Method in interface javax.microedition.rms.RecordEnumeration
Returns a copy of the next record in this enumeration, where next is defined by the comparator and/or filter supplied in the constructor of this enumerator.
nextRecordIndex() - Method in interface javax.microedition.rms.RecordEnumeration
Returns the recordId of the next record in this enumeration, where next is defined by the comparator and/or filter supplied in the constructor of this enumerator.
notifyDestroyed() - Method in class javax.microedition.midlet.MIDlet
Used by an MIDlet to notify the application management software that it has entered into the Destroyed state.
notifyPaused() - Method in class javax.microedition.midlet.MIDlet
Notifies the application management software that the MIDlet does not want to be active and has entered the Paused state.
numColors() - Method in class javax.microedition.lcdui.Display
Gets the number of colors (if isColor() is true) or graylevels (if isColor() is false) that can be represented on the device.
NUMERIC - Static variable in class javax.microedition.lcdui.TextField
The user is allowed to enter only an integer value.
numRecords() - Method in interface javax.microedition.rms.RecordEnumeration
Returns the number of records available in this enumeration's set.

O

OK - Static variable in class javax.microedition.lcdui.Command
A command that is a standard positive answer to a dialog implemented by current screen.
openRecordStore(String, boolean) - Static method in class javax.microedition.rms.RecordStore
Open (and possibly create) a record store associated with the given application.

P

paint(Graphics) - Method in class javax.microedition.lcdui.Canvas
Renders the Canvas.
PASSWORD - Static variable in class javax.microedition.lcdui.TextField
The text entered must be masked so that the characters typed are not visible.
pauseApp() - Method in class javax.microedition.midlet.MIDlet
Signals the MIDlet to stop and enter the Paused state.
PHONENUMBER - Static variable in class javax.microedition.lcdui.TextField
The user is allowed to enter a phone number.
playSound(Display) - Method in class javax.microedition.lcdui.AlertType
Alert the user by playing the sound for this AlertType.
pointerDragged(int, int) - Method in class javax.microedition.lcdui.Canvas
Called when the pointer is dragged.
pointerPressed(int, int) - Method in class javax.microedition.lcdui.Canvas
Called when the pointer is pressed.
pointerReleased(int, int) - Method in class javax.microedition.lcdui.Canvas
Called when the pointer is released.
PRECEDES - Static variable in interface javax.microedition.rms.RecordComparator
PRECEDES means that the left (first parameter) record precedes the right (second parameter) record in terms of search or sort order.
previousRecord() - Method in interface javax.microedition.rms.RecordEnumeration
Returns a copy of the previous record in this enumeration, where previous is defined by the comparator and/or filter supplied in the constructor of this enumerator.
previousRecordIndex() - Method in interface javax.microedition.rms.RecordEnumeration
Returns the recordId of the previous record in this enumeration, where previous is defined by the comparator and/or filter supplied in the constructor of this enumerator.

R

rebuild() - Method in interface javax.microedition.rms.RecordEnumeration
Request that the enumeration be updated to reflect the current record set.
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.
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.
recordDeleted(RecordStore, int) - Method in interface javax.microedition.rms.RecordListener
Called after a record has been deleted from a record store.
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 implementation-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() - Constructor for class javax.microedition.rms.RecordStoreException
Constructs a new RecordStoreException with no detail message.
RecordStoreException(String) - Constructor for class javax.microedition.rms.RecordStoreException
Constructs a new RecordStoreException with the specified 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() - Constructor for class javax.microedition.rms.RecordStoreFullException
Constructs a new RecordStoreFullException with no detail message.
RecordStoreFullException(String) - Constructor for class javax.microedition.rms.RecordStoreFullException
Constructs a new RecordStoreFullException with the specified 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() - Constructor for class javax.microedition.rms.RecordStoreNotFoundException
Constructs a new RecordStoreNotFoundException with no detail message.
RecordStoreNotFoundException(String) - Constructor for class javax.microedition.rms.RecordStoreNotFoundException
Constructs a new RecordStoreNotFoundException with the specified detail message.
RecordStoreNotOpenException - exception javax.microedition.rms.RecordStoreNotOpenException.
Thrown to indicate that an operation was attempted on a closed record store.
RecordStoreNotOpenException() - Constructor for class javax.microedition.rms.RecordStoreNotOpenException
Constructs a new RecordStoreNotOpenException with no detail message.
RecordStoreNotOpenException(String) - Constructor for class javax.microedition.rms.RecordStoreNotOpenException
Constructs a new RecordStoreNotOpenException with the specified detail message.
removeCommand(Command) - Method in class javax.microedition.lcdui.Displayable
Removes a Command from the Displayable.
removeRecordListener(RecordListener) - Method in class javax.microedition.rms.RecordStore
Removes the specified RecordListener.
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 Canvas.
reset() - Method in interface javax.microedition.rms.RecordEnumeration
Returns the index point of the enumeration to the beginning.
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.
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.
run() - Method in class java.util.TimerTask
The action to be performed by this timer task

S

schedule(TimerTask, Date) - Method in class java.util.Timer
Schedules the specified task for execution at the specified time.
schedule(TimerTask, Date, long) - Method in class java.util.Timer
Schedules the specified task for repeated fixed-delay execution, beginning at the specified time.
schedule(TimerTask, long) - Method in class java.util.Timer
Schedules the specified task for execution after the specified delay.
schedule(TimerTask, long, long) - Method in class java.util.Timer
Schedules the specified task for repeated fixed-delay execution, beginning after the specified delay.
scheduleAtFixedRate(TimerTask, Date, long) - Method in class java.util.Timer
Schedules the specified task for repeated fixed-rate execution, beginning at the specified time.
scheduleAtFixedRate(TimerTask, long, long) - Method in class java.util.Timer
Schedules the specified task for repeated fixed-rate execution, beginning at the specified time.
scheduledExecutionTime() - Method in class java.util.TimerTask
Returns the scheduled execution time of the most recent actual execution of this task.
Screen - class javax.microedition.lcdui.Screen.
The common superclass of all high-level user interface classes.
SCREEN - Static variable in class javax.microedition.lcdui.Command
Specifies an application-defined command that pertains to the current screen.
SELECT_COMMAND - Static variable in class javax.microedition.lcdui.List
SELECT_COMMAND is a special command that commandAction can use to recognize the user did the select operation on an IMPLICIT List.
serviceRepaints() - Method in class javax.microedition.lcdui.Canvas
Forces any pending repaint requests to be serviced immediately.
set(int, Item) - Method in class javax.microedition.lcdui.Form
Sets the item referenced by itemNum to the specified item, replacing the previous item.
set(int, String, Image) - Method in interface javax.microedition.lcdui.Choice
Sets the element referenced by elementNum to the specified element, replacing the previous contents of the element.
set(int, String, Image) - Method in class javax.microedition.lcdui.List
 
set(int, String, Image) - Method in class javax.microedition.lcdui.ChoiceGroup
 
setAltText(String) - Method in class javax.microedition.lcdui.ImageItem
Sets the alternate text of the ImageItem, or null if no alternate text is provided.
setChars(char[], int, int) - Method in class javax.microedition.lcdui.TextField
Sets the contents of the TextField from a character array, replacing the previous contents.
setChars(char[], int, int) - Method in class javax.microedition.lcdui.TextBox
Sets the contents of the TextBox from a character array, replacing the previous contents.
setClip(int, int, int, int) - Method in class javax.microedition.lcdui.Graphics
Sets the current clip to the rectangle specified by the given coordinates.
setColor(int) - Method in class javax.microedition.lcdui.Graphics
Sets the current color to the specified RGB values.
setColor(int, int, int) - Method in class javax.microedition.lcdui.Graphics
Sets the current color to the specified RGB values.
setCommandListener(CommandListener) - Method in class javax.microedition.lcdui.Displayable
Sets a listener for Commands to this Displayable, replacing any previous CommandListener.
setCommandListener(CommandListener) - Method in class javax.microedition.lcdui.Alert
Listeners are not allowed on Alerts, so this method will always throw IllegalStateException whenever it is called.
setConstraints(int) - Method in class javax.microedition.lcdui.TextField
Sets the input constraints of the TextField.
setConstraints(int) - Method in class javax.microedition.lcdui.TextBox
Sets the input constraints of the TextBox.
setCurrent(Alert, Displayable) - Method in class javax.microedition.lcdui.Display
Requests that alert be made current, and that nextDisplayable be made current after the Alert is dismissed.
setCurrent(Displayable) - Method in class javax.microedition.lcdui.Display
Requests that a different Displayable object be made visible on the display.
setDate(Date) - Method in class javax.microedition.lcdui.DateField
Sets a new value for this field.
setFont(Font) - Method in class javax.microedition.lcdui.Graphics
Sets the font for all subsequent text rendering operations.
setGrayScale(int) - Method in class javax.microedition.lcdui.Graphics
Sets the current grayscale to be used for all subsequent rendering operations.
setImage(Image) - Method in class javax.microedition.lcdui.ImageItem
Sets the image object contained within the ImageItem.
setImage(Image) - Method in class javax.microedition.lcdui.Alert
Sets the Image used in the Alert
setInputMode(int) - Method in class javax.microedition.lcdui.DateField
Set input mode for this date field.
setItemStateListener(ItemStateListener) - Method in class javax.microedition.lcdui.Form
Sets the ItemStateListener for the Form, replacing any previous ItemStateListener.
setLabel(String) - Method in class javax.microedition.lcdui.Item
Sets the label of the Item.
setLayout(int) - Method in class javax.microedition.lcdui.ImageItem
Sets the layout directives.
setMaxSize(int) - Method in class javax.microedition.lcdui.TextField
Sets the maximum size (number of characters) that can be contained in this TextField.
setMaxSize(int) - Method in class javax.microedition.lcdui.TextBox
Sets the maximum size (number of characters) that can be contained in this TextBox.
setMaxValue(int) - Method in class javax.microedition.lcdui.Gauge
Sets the maximum value of this Gauge object.
setRecord(int, byte[], int, int) - Method in class javax.microedition.rms.RecordStore
Sets the data in the given record to that passed in.
setSelectedFlags(boolean[]) - Method in interface javax.microedition.lcdui.Choice
Attempts to set the selected state of every element in the Choice.
setSelectedFlags(boolean[]) - Method in class javax.microedition.lcdui.List
 
setSelectedFlags(boolean[]) - Method in class javax.microedition.lcdui.ChoiceGroup
 
setSelectedIndex(int, boolean) - Method in interface javax.microedition.lcdui.Choice
For MULTIPLE, this simply sets an individual element's selected state.
setSelectedIndex(int, boolean) - Method in class javax.microedition.lcdui.List
 
setSelectedIndex(int, boolean) - Method in class javax.microedition.lcdui.ChoiceGroup
 
setString(String) - Method in class javax.microedition.lcdui.Ticker
Sets the string to be displayed by this Ticker.
setString(String) - Method in class javax.microedition.lcdui.Alert
Sets the text string used in the Alert
setString(String) - Method in class javax.microedition.lcdui.TextField
Sets the contents of the TextField as a string value, replacing the previous contents.
setString(String) - Method in class javax.microedition.lcdui.TextBox
Sets the contents of the TextBox as a string value, replacing the previous contents.
setStrokeStyle(int) - Method in class javax.microedition.lcdui.Graphics
Sets the stroke style used for drawing lines, arcs, rectangles, and rounded rectangles.
setText(String) - Method in class javax.microedition.lcdui.StringItem
Sets the text contents of the StringItem.
setTicker(Ticker) - Method in class javax.microedition.lcdui.Screen
Set a Ticker for use with this Screen, replacing any previous Ticker.
setTimeout(int) - Method in class javax.microedition.lcdui.Alert
Set the time for which the Alert is to be shown.
setTitle(String) - Method in class javax.microedition.lcdui.Screen
Sets the title of the Screen.
setType(AlertType) - Method in class javax.microedition.lcdui.Alert
Sets the type of the Alert.
setValue(int) - Method in class javax.microedition.lcdui.Gauge
Sets the current value of this Gauge object.
showNotify() - Method in class javax.microedition.lcdui.Canvas
The implementation calls showNotify() immediately prior to this Canvas being made visible on the display.
SIZE_LARGE - Static variable in class javax.microedition.lcdui.Font
The "large" system-dependent font size.
SIZE_MEDIUM - Static variable in class javax.microedition.lcdui.Font
The "medium" system-dependent font size.
SIZE_SMALL - Static variable in class javax.microedition.lcdui.Font
The "small" system-dependent font size.
size() - Method in class javax.microedition.lcdui.Form
Gets the number of items in the Form.
size() - Method in interface javax.microedition.lcdui.Choice
Gets the number of elements present.
size() - Method in class javax.microedition.lcdui.List
 
size() - Method in class javax.microedition.lcdui.TextField
Gets the number of characters that are currently stored in this TextField.
size() - Method in class javax.microedition.lcdui.ChoiceGroup
 
size() - Method in class javax.microedition.lcdui.TextBox
Gets the number of characters that are currently stored in this TextBox.
SOLID - Static variable in class javax.microedition.lcdui.Graphics
Constant for the SOLID stroke style
startApp() - Method in class javax.microedition.midlet.MIDlet
Signals the MIDlet to start and enter the Active state.
STOP - Static variable in class javax.microedition.lcdui.Command
A command that will stop some currently running process, operation, etc.
StringItem - class javax.microedition.lcdui.StringItem.
An item that can contain a string.
StringItem(String, String) - Constructor for class javax.microedition.lcdui.StringItem
Creates a new StringItem object with the given label and textual content.
stringWidth(String) - Method in class javax.microedition.lcdui.Font
Gets the total advance width for showing the specified String in this Font.
STYLE_BOLD - Static variable in class javax.microedition.lcdui.Font
The bold style constant.
STYLE_ITALIC - Static variable in class javax.microedition.lcdui.Font
The italicized style constant.
STYLE_PLAIN - Static variable in class javax.microedition.lcdui.Font
The plain style constant.
STYLE_UNDERLINED - Static variable in class javax.microedition.lcdui.Font
The underlined style constant.
substringWidth(String, int, int) - Method in class javax.microedition.lcdui.Font
Gets the total advance width for showing the specified substring in this Font.

T

TextBox - class javax.microedition.lcdui.TextBox.
The TextBox class is a Screen that allows the user to enter and edit text.
TextBox(String, String, int, int) - Constructor for class javax.microedition.lcdui.TextBox
Creates a new TextBox object with the given title string, initial contents, maximum size in characters, and constraints.
TextField - class javax.microedition.lcdui.TextField.
A TextField is an editable text component that may be placed into a Form.
TextField(String, String, int, int) - Constructor for class javax.microedition.lcdui.TextField
Creates a new TextField object with the given label, initial contents, maximum size in characters, and constraints.
Ticker - class javax.microedition.lcdui.Ticker.
Implements a "ticker-tape," a piece of text that runs continuously across the display.
Ticker(String) - Constructor for class javax.microedition.lcdui.Ticker
Constructs a new Ticker object, given its initial contents string.
TIME - Static variable in class javax.microedition.lcdui.DateField
Input mode for time information (hours and minutes).
Timer - class java.util.Timer.
A facility for threads to schedule tasks for future execution in a background thread.
Timer() - Constructor for class java.util.Timer
Creates a new timer.
TimerTask - class java.util.TimerTask.
A task that can be scheduled for one-time or repeated execution by a Timer.
TimerTask() - Constructor for class java.util.TimerTask
Creates a new timer task
TOP - Static variable in class javax.microedition.lcdui.Graphics
Constant for positioning the anchor point of text and images above the text or image.
translate(int, int) - Method in class javax.microedition.lcdui.Graphics
Translates the origin of the graphics context to the point (x,y) in the current coordinate system.

U

UP - Static variable in class javax.microedition.lcdui.Canvas
Constant for the UP game action.
URL - Static variable in class javax.microedition.lcdui.TextField
The user is allowed to enter a URL.

V

VCENTER - Static variable in class javax.microedition.lcdui.Graphics
Constant for centering images vertically around the anchor point.

W

WARNING - Static variable in class javax.microedition.lcdui.AlertType
Alert for warning.

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