- DatagramPacket - Class in java.net
-
This class represents a datagram packet.
- DatagramPacket(byte[], int, int) - Constructor for class java.net.DatagramPacket
-
Constructs a DatagramPacket
for receiving packets of length length
, specifying an offset into the
buffer.
- DatagramPacket(byte[], int) - Constructor for class java.net.DatagramPacket
-
Constructs a DatagramPacket
for receiving packets of length length
.
- DatagramPacket(byte[], int, int, InetAddress, int) - Constructor for class java.net.DatagramPacket
-
Constructs a datagram packet for sending packets of length length
with offset ioffset
to the
specified port number on the specified host.
- DatagramPacket(byte[], int, int, SocketAddress) - Constructor for class java.net.DatagramPacket
-
Constructs a datagram packet for sending packets of length length
with offset ioffset
to the
specified port number on the specified host.
- DatagramPacket(byte[], int, InetAddress, int) - Constructor for class java.net.DatagramPacket
-
Constructs a datagram packet for sending packets of length length
to the specified port number on the
specified host.
- DatagramPacket(byte[], int, SocketAddress) - Constructor for class java.net.DatagramPacket
-
Constructs a datagram packet for sending packets of length length
to the specified port number on the
specified host.
- DatagramSocket - Class in java.net
-
This class represents a socket for sending and receiving datagram packets.
- DatagramSocket() - Constructor for class java.net.DatagramSocket
-
Constructs a datagram socket and binds it to any available port on the local host machine.
- DatagramSocket(SocketAddress) - Constructor for class java.net.DatagramSocket
-
Creates a datagram socket, bound to the specified local socket address.
- DatagramSocket(int) - Constructor for class java.net.DatagramSocket
-
Constructs a datagram socket and binds it to the specified port on the local host machine.
- DatagramSocket(int, InetAddress) - Constructor for class java.net.DatagramSocket
-
Creates a datagram socket, bound to the specified local address.
- DataInput - Interface in java.io
-
The DataInput
interface provides for reading bytes from a binary stream and
reconstructing from them data in any of the Java primitive types.
- DataInputStream - Class in java.io
-
A data input stream lets an application read primitive Java data types from an underlying input
stream in a machine-independent way.
- DataInputStream(InputStream) - Constructor for class java.io.DataInputStream
-
Creates a DataInputStream that uses the specified underlying InputStream.
- DataOutput - Interface in java.io
-
The DataOutput
interface provides for converting data from any of the Java primitive
types to a series of bytes and writing these bytes to a binary stream.
- DataOutputStream - Class in java.io
-
A data output stream lets an application write primitive Java data types to an output stream in a
portable way.
- DataOutputStream(OutputStream) - Constructor for class java.io.DataOutputStream
-
Creates a new data output stream to write data to the specified underlying output stream.
- DATE - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating the day of the month.
- Date - Class in java.util
-
The class Date
represents a specific instant in time, with millisecond precision.
- Date() - Constructor for class java.util.Date
-
Allocates a Date
object and initializes it so that it represents the time at which
it was allocated, measured to the nearest millisecond.
- Date(long) - Constructor for class java.util.Date
-
Allocates a Date
object and initializes it to represent the specified number of
milliseconds since the standard base time known as "the epoch", namely January 1, 1970, 00:00:00
GMT.
- DAY_OF_MONTH - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating the day of the month.
- DAY_OF_WEEK - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating the day of the week.
- DAY_OF_WEEK_IN_MONTH - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating the ordinal number of the day
of the week within the current month.
- DAY_OF_YEAR - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating the day number within the
current year.
- DECEMBER - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH
field indicating the twelfth month of the year in the Gregorian and
Julian calendars.
- decode(String) - Static method in class java.lang.Byte
-
Decodes a String
into a Byte
.
- decode(String) - Static method in class java.lang.Integer
-
Decodes a String
into an Integer
.
- decode(String) - Static method in class java.lang.Long
-
Decodes a String
into a Long
.
- decode(String) - Static method in class java.lang.Short
-
Decodes a String
into a Short
.
- delete(int, int) - Method in class java.lang.StringBuffer
-
Removes the characters in a substring of this sequence.
- delete(int, int) - Method in class java.lang.StringBuilder
-
Removes the characters in a substring of this sequence.
- deleteCharAt(int) - Method in class java.lang.StringBuffer
-
Removes the char
at the specified position in this sequence.
- deleteCharAt(int) - Method in class java.lang.StringBuilder
-
Removes the char
at the specified position in this sequence.
- deleteEntry(String) - Method in class java.security.KeyStore
-
Deletes the entry identified by the given alias from this keystore.
- deleteObserver(Observer) - Method in class java.util.Observable
-
Deletes an observer from the set of observers of this object.
- deleteObservers() - Method in class java.util.Observable
-
Clears the observer list so that this object no longer has any observers.
- Deprecated - Annotation Type in java.lang
-
A program element annotated @Deprecated is one that programmers are discouraged from using,
typically because it is dangerous, or because a better alternative exists.
- desiredAssertionStatus() - Method in class java.lang.Class
-
Returns the assertion status that would be assigned to this class if it were to be initialized at
the time this method is invoked.
- DEVANAGARI - Static variable in class ej.microui.display.FontIdentifiers
-
Constant for devanagari font identifier.
- Dictionary<K,V> - Class in java.util
-
The Dictionary
class is the abstract parent of any class, such as
Hashtable
, which maps keys to values.
- Dictionary() - Constructor for class java.util.Dictionary
-
Sole constructor.
- digit(char, int) - Static method in class java.lang.Character
-
Returns the numeric value of the character ch in the specified radix.
- disableEllipsis() - Method in class ej.microui.display.GraphicsContext
-
Disables ellipsis.
- disconnect() - Method in class java.net.DatagramSocket
-
Disconnects the socket.
- Display - Class in ej.microui.display
-
The
Display
object represents the pixelated screen in the platform.
The display of the system may be retrieved by calling
Display.getDisplay()
.
The display is able to render a
Displayable
on its implementation screen.
- Display() - Constructor for class ej.microui.display.Display
-
- DISPLAY - Static variable in class ej.microui.event.generator.Command
-
Constant for "display" command.
- DISPLAY_DEADLOCK - Static variable in exception ej.microui.MicroUIException
-
Exception thrown when trying to wait for an event in the same thread that treats events (Deadlock).
- Displayable - Class in ej.microui.display
-
Displayable
is an abstract class which defines the very objects that can be shown on the
Display
.
A Displayable
may be shown or hidden, but at most one Displayable
is shown on the
Display
.
Subclasses should define the Displayable
contents and their possible interactions with the user.
By default, a new Displayable
object is not visible on the display.
- Displayable() - Constructor for class ej.microui.display.Displayable
-
- DisplayPermission - Class in ej.microui.display
-
Permission to access the Display.
- DisplayPermission() - Constructor for class ej.microui.display.DisplayPermission
-
Creates the display permission for the display with null
as name.
- Documented - Annotation Type in java.lang.annotation
-
Indicates that annotations with a type are to be documented by javadoc and similar tools by
default.
- Double - Class in java.lang
-
The Double
class wraps a value of the primitive type double
in an object.
- Double(double) - Constructor for class java.lang.Double
-
Constructs a newly allocated Double
object that represents the primitive double
argument.
- Double(String) - Constructor for class java.lang.Double
-
Constructs a newly allocated Double
object that represents the floating-point value of
type double
represented by the string.
- DOUBLE_CLICKED - Static variable in class ej.microui.event.generator.Buttons
-
Constant for "double clicked" action.
- doubleClickEnabled(int) - Method in class ej.microui.event.generator.Buttons
-
Returns true
if the generator should send a double click event.
- doubleToLongBits(double) - Static method in class java.lang.Double
-
Returns a representation of the specified floating-point value according to the IEEE 754
floating-point "double format" bit layout.
- doubleToRawLongBits(double) - Static method in class java.lang.Double
-
Returns a representation of the specified floating-point value according to the IEEE 754
floating-point "double format" bit layout, preserving Not-a-Number (NaN) values.
- doubleValue() - Method in class java.lang.Byte
-
Returns the value of this Byte
as a double
.
- doubleValue() - Method in class java.lang.Double
-
Returns the double
value of this Double
object.
- doubleValue() - Method in class java.lang.Float
-
Returns the double
value of this Float
object.
- doubleValue() - Method in class java.lang.Integer
-
Returns the value of this Integer
as a double
.
- doubleValue() - Method in class java.lang.Long
-
Returns the value of this Long
as a double
.
- doubleValue() - Method in class java.lang.Number
-
Returns the value of the specified number as a double
.
- doubleValue() - Method in class java.lang.Short
-
Returns the value of this Short
as a double
.
- DOWN - Static variable in class ej.microui.event.generator.Command
-
Constant for "down" command.
- DRAGGED - Static variable in class ej.microui.event.generator.Pointer
-
Constant for "dragged" action.
- drawChar(GraphicsContext, char, Font, int, int) - Static method in class ej.microui.display.Painter
-
Draws a character.
- drawCircle(GraphicsContext, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws a circle.
- drawCircleArc(GraphicsContext, int, int, int, float, float) - Static method in class ej.microui.display.Painter
-
Draws a circle arc.
- drawDeformedImage(GraphicsContext, Image, int, int, int[]) - Static method in class ej.drawing.TransformPainter
-
Draws a deformed image at the given anchor top-left point.
The deformed image is identified by its four corner points.
- drawDisplayRegion(GraphicsContext, int, int, int, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws a region of the display.
- drawDisplayRegion(GraphicsContext, int, int, int, int, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws a region of the display.
- drawEllipse(GraphicsContext, int, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws an ellipse.
- drawEllipseArc(GraphicsContext, int, int, int, int, float, float) - Static method in class ej.microui.display.Painter
-
Draws an ellipse arc.
- drawFlippedImage(GraphicsContext, Image, int, int, TransformPainter.Flip) - Static method in class ej.drawing.TransformPainter
-
Draws the image in the graphics context at given anchor top-left position, using the given flip.
- drawFlippedImage(GraphicsContext, Image, int, int, TransformPainter.Flip, int) - Static method in class ej.drawing.TransformPainter
-
Draws the image in the graphics context at given anchor top-left position, using the given flip and opacity
level.
- drawHorizontalLine(GraphicsContext, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws an horizontal line between two points.
- drawImage(GraphicsContext, Image, int, int) - Static method in class ej.microui.display.Painter
-
Draws the image at the given anchor top-left point.
- drawImage(GraphicsContext, Image, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws the image at the given anchor top-left point.
- drawImageRegion(GraphicsContext, Image, int, int, int, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws a region of the image.
- drawImageRegion(GraphicsContext, Image, int, int, int, int, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws a region of an image.
- drawLine(GraphicsContext, int, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws a line between two points.
- drawPolygon(GraphicsContext, int[]) - Static method in class ej.drawing.ShapePainter
-
Draws the closed polygon which is defined by the array of integer coordinates, using the current color.
- drawPolygon(GraphicsContext, int[], int, int) - Static method in class ej.drawing.ShapePainter
-
Draws the closed polygon which is defined by the array of integer coordinates, using the current color.
- drawRectangle(GraphicsContext, int, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws an orthogonal rectangle.
- drawRenderableString(GraphicsContext, RenderableString, int, int) - Static method in class ej.microui.display.Painter
-
Draws the string using the font and given graphics context color.
- drawRotatedCharBilinear(GraphicsContext, Font, char, int, int, int, int, float) - Static method in class ej.drawing.TransformPainter
-
Draws the character applying the given rotation.
- drawRotatedCharBilinear(GraphicsContext, Font, char, int, int, int, int, float, int) - Static method in class ej.drawing.TransformPainter
-
Draws the character applying the given rotation and opacicity level.
- drawRotatedCharNearestNeighbor(GraphicsContext, Font, char, int, int, int, int, float) - Static method in class ej.drawing.TransformPainter
-
Draws the character applying the given rotation.
- drawRotatedCharNearestNeighbor(GraphicsContext, Font, char, int, int, int, int, float, int) - Static method in class ej.drawing.TransformPainter
-
Draws the character applying the given rotation and opacity level.
- drawRotatedImageBilinear(GraphicsContext, Image, int, int, int, int, float) - Static method in class ej.drawing.TransformPainter
-
Draws the image applying the given rotation.
- drawRotatedImageBilinear(GraphicsContext, Image, int, int, int, int, float, int) - Static method in class ej.drawing.TransformPainter
-
Draws the image applying the given rotation fixing the opacity level.
- drawRotatedImageNearestNeighbor(GraphicsContext, Image, int, int, int, int, float) - Static method in class ej.drawing.TransformPainter
-
Draws the image applying the given rotation.
- drawRotatedImageNearestNeighbor(GraphicsContext, Image, int, int, int, int, float, int) - Static method in class ej.drawing.TransformPainter
-
Draws the image applying the given rotation and opacity level.
- drawRoundedRectangle(GraphicsContext, int, int, int, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws an orthogonal rectangle with rounded corners.
- drawScaledCharBilinear(GraphicsContext, char, Font, int, int, float, float) - Static method in class ej.drawing.TransformPainter
-
Draws the character in the graphics context at given anchor top-left position and using the given scaling factor.
- drawScaledImageBilinear(GraphicsContext, Image, int, int, float, float) - Static method in class ej.drawing.TransformPainter
-
Draws the image in the graphics context at given anchor top-left position and using the given scaling factor.
- drawScaledImageBilinear(GraphicsContext, Image, int, int, float, float, int) - Static method in class ej.drawing.TransformPainter
-
Draws the image in the graphics context at given anchor top-left position and using the given scaling factor and
opacity level.
- drawScaledImageNearestNeighbor(GraphicsContext, Image, int, int, float, float) - Static method in class ej.drawing.TransformPainter
-
Draws the image in the graphics context at given anchor top-left position and using the given scaling factor.
- drawScaledImageNearestNeighbor(GraphicsContext, Image, int, int, float, float, int) - Static method in class ej.drawing.TransformPainter
-
Draws the image in the graphics context at given anchor top-left position and using the given scaling factor and
opacity level.
- drawScaledRenderableStringBilinear(GraphicsContext, RenderableString, int, int, float, float) - Static method in class ej.drawing.TransformPainter
-
Draws the renderable string in the graphics context at given anchor top-left position and using the given scaling
factor.
- drawScaledStringBilinear(GraphicsContext, String, Font, int, int, float, float) - Static method in class ej.drawing.TransformPainter
-
Draws the string in the graphics context at given anchor top-left position and using the given scaling factor.
- drawScaledSubstringBilinear(GraphicsContext, String, int, int, Font, int, int, float, float) - Static method in class ej.drawing.TransformPainter
-
Draws the substring in the graphics context at given anchor top-left position and using the given scaling factor.
- drawString(GraphicsContext, String, Font, int, int) - Static method in class ej.microui.display.Painter
-
Draws a string.
- drawSubstring(GraphicsContext, String, int, int, Font, int, int) - Static method in class ej.microui.display.Painter
-
Draws a subset of a string.
- drawThickCircle(GraphicsContext, int, int, int, int) - Static method in class ej.drawing.ShapePainter
-
Draws the outline of a circle covering the square specified by its diameter, using the
GraphicsContext
's
current color.
The center of the circle is defined as the center of the square whose origin is at
(x,y)
(upper-left
corner) and whose dimension is given by
diameter
.
If
diameter
is negative, nothing is drawn.
- drawThickCircleArc(GraphicsContext, int, int, int, float, float, int) - Static method in class ej.drawing.ShapePainter
-
Draws the outline of a circular arc covering the specified square, using the
GraphicsContext
's current
color.
The arc is drawn from
startAngle
up to
arcAngle
degrees.
- drawThickEllipse(GraphicsContext, int, int, int, int, int) - Static method in class ej.drawing.ShapePainter
-
Draws the outline of a ellipse covering the specified rectangle, using the
GraphicsContext
's current
color.
The center of the ellipse is defined as the center of the rectangle whose origin is at
(x,y)
(upper-left corner) and whose dimension is given by
width
and
height
.
If either
width
or
height
is negative or zero, nothing is drawn.
- drawThickFadedCircle(GraphicsContext, int, int, int, int, int) - Static method in class ej.drawing.ShapePainter
-
Draws the faded outline of a circle covering the square specified by its diameter, using the
GraphicsContext
's current color.
The center of the circle is defined as the center of the square whose origin is at
(x,y)
(upper-left
corner) and whose dimension is given by
diameter
.
If
diameter
is negative or zero, nothing is drawn.
- drawThickFadedCircleArc(GraphicsContext, int, int, int, float, float, int, int, ShapePainter.Cap, ShapePainter.Cap) - Static method in class ej.drawing.ShapePainter
-
Draws the faded outline of a circular arc covering the specified square, using the current color and caps.
- drawThickFadedEllipse(GraphicsContext, int, int, int, int, int, int) - Static method in class ej.drawing.ShapePainter
-
Draws the outline of a ellipse covering the specified rectangle, using the
GraphicsContext
's current
color.
The center of the ellipse is defined as the center of the rectangle whose origin is at
(x,y)
(upper-left corner) and whose dimension is given by
width
and
height
.
If either
width
or
height
is negative or zero, nothing is drawn.
- drawThickFadedLine(GraphicsContext, int, int, int, int, int, int, ShapePainter.Cap, ShapePainter.Cap) - Static method in class ej.drawing.ShapePainter
-
Draws a faded line from
(x1,y1)
to
(x2,y2)
using the
GraphicsContext
's current
color and caps.
- drawThickFadedPoint(GraphicsContext, int, int, int, int) - Static method in class ej.drawing.ShapePainter
-
- drawThickLine(GraphicsContext, int, int, int, int, int) - Static method in class ej.drawing.ShapePainter
-
Draws a line from
(x1,y1)
to
(x2,y2)
using the
GraphicsContext
's current color.
- drawVerticalLine(GraphicsContext, int, int, int) - Static method in class ej.microui.display.Painter
-
Draws a vertical line between two points.
- DST_OFFSET - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating the daylight saving offset in
milliseconds.
- dump(PrintStream) - Method in class ej.bon.Timer
-
Prints a status of this timer and its scheduled tasks to the specified print
stream.
- dumpStack() - Static method in class java.lang.Thread
-
Prints a stack trace of the current thread to the standard error stream.