- Object - Class in java.lang
-
Class Object
is the root of the class hierarchy.
- Object() - Constructor for class java.lang.Object
-
- Observable - Class in java.util
-
This class represents an observable object, or "data" in the model-view paradigm.
- Observable() - Constructor for class java.util.Observable
-
- Observer - Interface in java.util
-
A class can implement the Observer
interface when it wants to be informed of changes
in observable objects.
- OCTOBER - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH
field indicating the tenth month of the year in the Gregorian and
Julian calendars.
- OGHAM - Static variable in class ej.microui.display.FontIdentifiers
-
Constant for ogham font identifier.
- OL_CHIKI - Static variable in class ej.microui.display.FontIdentifiers
-
Constant for ol chiki font identifier.
- OLIVE - Static variable in class ej.microui.display.Colors
-
Constant for olive color.
- onHidden() - Method in class ej.microui.display.Displayable
-
This method is called by system as soon as the displayable becomes hidden.
- onShown() - Method in class ej.microui.display.Displayable
-
This method is called by system as soon as the displayable becomes visible.
- OPAQUE - Static variable in class ej.microui.display.GraphicsContext
-
Maximum opacity.
- ordinal() - Method in class java.lang.Enum
-
Returns the ordinal of this enumeration constant (its position in its enum declaration, where the
initial constant is assigned an ordinal of zero).
- ORIYA - Static variable in class ej.microui.display.FontIdentifiers
-
Constant for oriya font identifier.
- out - Static variable in class java.lang.System
-
The "standard" output stream.
- OUT_OF_EVENTS - Static variable in exception ej.microui.MicroUIException
-
Exception thrown when
Display
's event serializer queue is full.
- OutOfMemoryError - Error in java.lang
-
Thrown when the Java Virtual Machine cannot allocate an object because it is out of memory, and
no more memory could be made available by the garbage collector.
- OutOfMemoryError() - Constructor for error java.lang.OutOfMemoryError
-
Constructs an OutOfMemoryError
with no detail message.
- OutOfMemoryError(String) - Constructor for error java.lang.OutOfMemoryError
-
Constructs an OutOfMemoryError
with the specified detail message.
- OutputStream - Class in java.io
-
This abstract class is the superclass of all classes representing an output stream of bytes.
- OutputStream() - Constructor for class java.io.OutputStream
-
- OutputStreamWriter - Class in java.io
-
An OutputStreamWriter is a bridge from character streams to byte streams: Characters written to
it are encoded into bytes using a specified charset
.
- OutputStreamWriter(OutputStream) - Constructor for class java.io.OutputStreamWriter
-
Creates an OutputStreamWriter that uses the default character encoding.
- OutputStreamWriter(OutputStream, String) - Constructor for class java.io.OutputStreamWriter
-
Creates an OutputStreamWriter that uses the named charset.
- Override - Annotation Type in java.lang
-
Indicates that a method declaration is intended to override a method declaration in a supertype.