- abs(double) - Static method in class ej.bon.XMath
-
Returns the absolute value of a double
value.
- abs(float) - Static method in class ej.bon.XMath
-
Returns the absolute value of a float
value.
- abs(int) - Static method in class ej.bon.XMath
-
Returns the absolute value of an int
value.
- abs(long) - Static method in class ej.bon.XMath
-
Returns the absolute value of a long
value.
- abs(double) - Static method in class java.lang.Math
-
Returns the absolute value of a double
value.
- abs(float) - Static method in class java.lang.Math
-
Returns the absolute value of a float
value.
- abs(int) - Static method in class java.lang.Math
-
Returns the absolute value of an int
value.
- abs(long) - Static method in class java.lang.Math
-
Returns the absolute value of a long
value.
- AbstractCollection<E> - Class in java.util
-
This class provides a skeletal implementation of the Collection interface, to minimize
the effort required to implement this interface.
- AbstractCollection() - Constructor for class java.util.AbstractCollection
-
Sole constructor.
- AbstractList<E> - Class in java.util
-
This class provides a skeletal implementation of the
List
interface to minimize the
effort required to implement this interface backed by a "random access" data store (such as an
array).
- AbstractList() - Constructor for class java.util.AbstractList
-
Sole constructor.
- AbstractMap<K,V> - Class in java.util
-
This class provides a skeletal implementation of the Map interface, to minimize the
effort required to implement this interface.
- AbstractMap() - Constructor for class java.util.AbstractMap
-
Sole constructor.
- AbstractMap.SimpleEntry<K,V> - Class in java.util
-
An Entry maintaining a key and a value.
- AbstractMap.SimpleImmutableEntry<K,V> - Class in java.util
-
An Entry maintaining an immutable key and value.
- AbstractMethodError - Error in java.lang
-
Thrown when an application tries to call an abstract method.
- AbstractMethodError() - Constructor for error java.lang.AbstractMethodError
-
Constructs an AbstractMethodError
with no detail message.
- AbstractMethodError(String) - Constructor for error java.lang.AbstractMethodError
-
Constructs an AbstractMethodError
with the specified detail message.
- AbstractSet<E> - Class in java.util
-
This class provides a skeletal implementation of the Set interface to minimize the
effort required to implement this interface.
- AbstractSet() - Constructor for class java.util.AbstractSet
-
Sole constructor.
- AbstractTransform - Class in ej.microui.display.transform
-
The
AbstractTransform
class holds a generic context for all kinds of transformations (see sub classes).
- AbstractTransform() - Constructor for class ej.microui.display.transform.AbstractTransform
-
- accept(File) - Method in interface java.io.FileFilter
-
Tests whether or not the specified abstract pathname should be
included in a pathname list.
- accept(File, String) - Method in interface java.io.FilenameFilter
-
Tests if a specified file should be included in a file list.
- accept() - Method in class java.net.ServerSocket
-
Listens for a connection to be made to this socket and accepts
it.
- acceptAndOpen() - Method in interface ej.ecom.io.StreamConnectionNotifier
-
- AccessPoint - Class in ej.ecom.wifi
-
Wireless Access Point (WAP, often shorten as AP).
- AccessPoint(String, byte[], float, int, SecurityMode, WPSMode[]) - Constructor for class ej.ecom.wifi.AccessPoint
-
Constructs a Wi-Fi Access Point instance.
- AccessPoint(String, SecurityMode) - Constructor for class ej.ecom.wifi.AccessPoint
-
Constructs a Wi-Fi access point instance.
- acos(double) - Static method in class ej.bon.XMath
-
Returns the arc cosine of a value; the returned angle is in the range 0.0
through pi.
- acos(double) - Static method in class java.lang.Math
-
Returns the arc cosine of a value; the returned angle is in the range 0.0 through pi.
- ACTION_START - Static variable in class ej.microui.MicroUIPermission
-
Action to start MicroUI.
- ACTION_STOP - Static variable in class ej.microui.MicroUIPermission
-
Action to stop MicroUI.
- activeCount() - Static method in class java.lang.Thread
-
Returns the current number of active threads in the virtual machine.
- add(E) - Method in class java.util.AbstractCollection
-
Ensures that this collection contains the specified element (optional operation).
- add(E) - Method in class java.util.AbstractList
-
Appends the specified element to the end of this list (optional operation).
- add(int, E) - Method in class java.util.AbstractList
-
Inserts the specified element at the specified position in this list (optional operation).
- add(E) - Method in class java.util.ArrayList
-
Appends the specified element to the end of this list.
- add(int, E) - Method in class java.util.ArrayList
-
Inserts the specified element at the specified position in this list.
- add(E) - Method in interface java.util.Collection
-
Ensures that this collection contains the specified element (optional operation).
- add(E) - Method in interface java.util.List
-
Appends the specified element to the end of this list (optional operation).
- add(int, E) - Method in interface java.util.List
-
Inserts the specified element at the specified position in this list (optional operation).
- add(E) - Method in interface java.util.ListIterator
-
Inserts the specified element into the list (optional operation).
- add(E) - Method in interface java.util.Set
-
Adds the specified element to this set if it is not already present (optional operation).
- add(E) - Method in class java.util.Vector
-
Appends the specified element to the end of this Vector.
- add(int, E) - Method in class java.util.Vector
-
Inserts the specified element at the specified position in this Vector.
- addAll(Collection<? extends E>) - Method in class java.util.AbstractCollection
-
Adds all of the elements in the specified collection to this collection (optional operation).
- addAll(int, Collection<? extends E>) - Method in class java.util.AbstractList
-
Inserts all of the elements in the specified collection into this list at the specified position
(optional operation).
- addAll(Collection<? extends E>) - Method in class java.util.ArrayList
-
Appends all of the elements in the specified collection to the end of this list, in the order
that they are returned by the specified collection's Iterator.
- addAll(int, Collection<? extends E>) - Method in class java.util.ArrayList
-
Inserts all of the elements in the specified collection into this list, starting at the specified
position.
- addAll(Collection<? extends E>) - Method in interface java.util.Collection
-
Adds all of the elements in the specified collection to this collection (optional operation).
- addAll(Collection<? extends E>) - Method in interface java.util.List
-
Appends all of the elements in the specified collection to the end of this list, in the order
that they are returned by the specified collection's iterator (optional operation).
- addAll(int, Collection<? extends E>) - Method in interface java.util.List
-
Inserts all of the elements in the specified collection into this list at the specified position
(optional operation).
- addAll(Collection<? extends E>) - Method in interface java.util.Set
-
Adds all of the elements in the specified collection to this set if they're not already present
(optional operation).
- addAll(Collection<? extends E>) - Method in class java.util.Vector
-
Appends all of the elements in the specified Collection to the end of this Vector, in the order
that they are returned by the specified Collection's Iterator.
- addAll(int, Collection<? extends E>) - Method in class java.util.Vector
-
Inserts all of the elements in the specified Collection into this Vector at the specified
position.
- addAudioFile(AudioFile) - Method in class ej.audio.Playlist
-
Adds an audio file.
- addCharacteristic(BluetoothCharacteristic) - Method in class ej.bluetooth.BluetoothService
-
Adds a characteristic to this service.
- addConverter(Converter<?>) - Static method in class ej.kf.Kernel
-
Adds the
Converter
to the list of converters.
- addDescriptor(BluetoothDescriptor) - Method in class ej.bluetooth.BluetoothCharacteristic
-
Adds a descriptor to this characteristic.
- addElement(E) - Method in class java.util.Vector
-
Adds the specified component to the end of this vector, increasing its size by one.
- addFeatureStateListener(FeatureStateListener) - Static method in class ej.kf.Kernel
-
Adds the
FeatureStateListener
to the list of listeners
that are notified when the state of a Feature has changed.
- addIncludedService(BluetoothService) - Method in class ej.bluetooth.BluetoothService
-
Adds a service to include in this service.
- addObserver(Observer) - Method in class java.util.Observable
-
Adds an observer to the set of observers for this object, provided that it is not the same as
some observer already in the set.
- addRegistrationListener(RegistrationListener<D>, Class<D>) - Static method in class ej.ecom.DeviceManager
-
Adds the given
RegistrationListener
to be notified when a device of the given type is registered or unregistered.
- addService(BluetoothService) - Method in class ej.bluetooth.BluetoothAdapter
-
Adds the given service to this adapter.
- addSuppressed(Throwable) - Method in class java.lang.Throwable
-
Appends the specified exception to the exceptions that were suppressed in order to deliver this
exception.
- addToSystemPool() - Method in class ej.microui.event.EventGenerator
-
Adds the generator in the system pool.
- AdvertisementCallbacks - Interface in ej.bluetooth.callbacks
-
The AdvertisementCallbacks
interface provides callbacks related to advertising.
- AEADBadTagException - Exception in javax.crypto
-
This exception is thrown when a
Cipher
operating in
an AEAD mode (such as GCM/CCM) is unable to verify the supplied
authentication tag.
- AEADBadTagException() - Constructor for exception javax.crypto.AEADBadTagException
-
Constructs a AEADBadTagException with no detail message.
- AEADBadTagException(String) - Constructor for exception javax.crypto.AEADBadTagException
-
Constructs a AEADBadTagException with the specified
detail message.
- after(Object) - Method in class java.util.Calendar
-
Returns whether this Calendar
represents a time after the time represented by the
specified Object
.
- after(Date) - Method in class java.util.Date
-
Tests if this date is after the specified date.
- AlgorithmParameterSpec - Interface in java.security.spec
-
A (transparent) specification of cryptographic parameters.
- aliases() - Method in class java.security.KeyStore
-
Lists all the alias names of this keystore.
- align(int) - Method in class ej.bon.ResourceBuffer
-
Force to align position on given number of bytes.
- ALL_STYLES - Static variable in class java.util.Calendar
-
A style specifier indicating names in all styles, such as "January" and "Jan".
- allIDs() - Static method in class ej.bon.Immutables
-
Returns an array with the IDs of all the objects in the pool.
- ALPHA - Static variable in class ej.microui.event.generator.Keypad
-
The ALPHA mode.
In ALPHA mode the keypad may return several letters and digits according to the number of consequent key press.
- AlreadyLoadedFeatureException - Exception in ej.kf
-
This exception is thrown if a Feature being loaded has already been loaded.
- AlreadyLoadedFeatureException(Feature) - Constructor for exception ej.kf.AlreadyLoadedFeatureException
-
- AM - Static variable in class java.util.Calendar
-
Value of the
Calendar.AM_PM
field indicating the period of the day from midnight to just before
noon.
- AM_PM - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating whether the HOUR
is before or after noon.
- AnnotatedElement - Interface in java.lang.reflect
-
This interface is only defined for hierarchy compatibility.
- Annotation - Interface in java.lang.annotation
-
The common interface extended by all annotation types.
- annotationType() - Method in interface java.lang.annotation.Annotation
-
Returns the annotation type of this annotation.
- AntiAliasedShapes - Class in ej.microui.display.shape
-
The
AntiAliasedShapes
class offers advanced drawing facilities, to render anti aliased lines, circles etc.
- AntiAliasedShapes() - Constructor for class ej.microui.display.shape.AntiAliasedShapes
-
- AntiAliasedShapes.Cap - Enum in ej.microui.display.shape
-
Define the cap representation when drawing a circle arc
- ANTICLOCKWISE - Static variable in class ej.microui.event.generator.Command
-
The "anti-clockwise" command constant.
- append(char) - Method in class java.io.PrintStream
-
Appends the specified character to this output stream.
- append(CharSequence) - Method in class java.io.PrintStream
-
Appends the specified character sequence to this output stream.
- append(CharSequence, int, int) - Method in class java.io.PrintStream
-
Appends a subsequence of the specified character sequence to this output stream.
- append(char) - Method in class java.io.Writer
-
Appends the specified character to this writer.
- append(CharSequence) - Method in class java.io.Writer
-
Appends the specified character sequence to this writer.
- append(CharSequence, int, int) - Method in class java.io.Writer
-
Appends a subsequence of the specified character sequence to this writer.
- append(char) - Method in interface java.lang.Appendable
-
Appends the specified character to this Appendable.
- append(CharSequence) - Method in interface java.lang.Appendable
-
Appends the specified character sequence to this Appendable.
- append(CharSequence, int, int) - Method in interface java.lang.Appendable
-
Appends a subsequence of the specified character sequence to this Appendable.
- append(boolean) - Method in class java.lang.StringBuffer
-
Appends the string representation of the boolean argument to the sequence.
- append(char) - Method in class java.lang.StringBuffer
-
- append(char[]) - Method in class java.lang.StringBuffer
-
Appends the string representation of the char array argument to this
sequence.
- append(char[], int, int) - Method in class java.lang.StringBuffer
-
Appends the string representation of a subarray of the char
array argument to this
sequence.
- append(CharSequence) - Method in class java.lang.StringBuffer
-
Appends the specified CharSequence
to this sequence.
- append(CharSequence, int, int) - Method in class java.lang.StringBuffer
-
Appends a subsequence of the specified CharSequence
to this sequence.
- append(double) - Method in class java.lang.StringBuffer
-
Appends the string representation of the double argument to this sequence.
- append(float) - Method in class java.lang.StringBuffer
-
Appends the string representation of the float argument to this sequence.
- append(int) - Method in class java.lang.StringBuffer
-
Appends the string representation of the int argument to this sequence.
- append(long) - Method in class java.lang.StringBuffer
-
Appends the string representation of the long argument to this sequence.
- append(Object) - Method in class java.lang.StringBuffer
-
Appends the string representation of the Object argument.
- append(String) - Method in class java.lang.StringBuffer
-
Appends the specified string to this character sequence.
- append(StringBuffer) - Method in class java.lang.StringBuffer
-
Appends the specified StringBuffer to this sequence.
- append(boolean) - Method in class java.lang.StringBuilder
-
Appends the string representation of the boolean argument to the sequence.
- append(char) - Method in class java.lang.StringBuilder
-
- append(char[]) - Method in class java.lang.StringBuilder
-
Appends the string representation of the char array argument to this
sequence.
- append(char[], int, int) - Method in class java.lang.StringBuilder
-
Appends the string representation of a subarray of the char
array argument to this
sequence.
- append(CharSequence) - Method in class java.lang.StringBuilder
-
Appends the specified character sequence to this Appendable.
- append(CharSequence, int, int) - Method in class java.lang.StringBuilder
-
Appends a subsequence of the specified CharSequence
to this sequence.
- append(double) - Method in class java.lang.StringBuilder
-
Appends the string representation of the double argument to this sequence.
- append(float) - Method in class java.lang.StringBuilder
-
Appends the string representation of the float argument to this sequence.
- append(int) - Method in class java.lang.StringBuilder
-
Appends the string representation of the int argument to this sequence.
- append(long) - Method in class java.lang.StringBuilder
-
Appends the string representation of the long argument to this sequence.
- append(Object) - Method in class java.lang.StringBuilder
-
Appends the string representation of the Object argument.
- append(String) - Method in class java.lang.StringBuilder
-
Appends the specified string to this character sequence.
- append(StringBuffer) - Method in class java.lang.StringBuilder
-
Appends the specified StringBuffer to this sequence.
- Appendable - Interface in java.lang
-
An object to which char sequences and values can be appended.
- appRandom - Variable in class java.security.SignatureSpi
-
Application-specified source of randomness.
- APRIL - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH
field indicating the fourth month of the year in the Gregorian and
Julian calendars.
- ARABIC - Static variable in class ej.microui.display.Font
-
Constant for arabic font identifier.
- areEquivalentSharedInterfaces(Class<?>, Class<?>) - Static method in class ej.kf.Kernel
-
Tells whether the given classes are equivalent shared interfaces.
- areFieldsSet - Variable in class java.util.Calendar
-
True if fields[]
are in sync with the currently set time.
- ArithmeticException - Exception in java.lang
-
Thrown when an exceptional arithmetic condition has occurred.
- ArithmeticException() - Constructor for exception java.lang.ArithmeticException
-
Constructs an ArithmeticException
with no detail message.
- ArithmeticException(String) - Constructor for exception java.lang.ArithmeticException
-
Constructs an ArithmeticException
with the specified detail message.
- ARMENIAN - Static variable in class ej.microui.display.Font
-
Constant for armenian font identifier.
- arraycopy(Object, int, Object, int, int) - Static method in class java.lang.System
-
Copies an array from the specified source array, beginning at the specified position, to the
specified position of the destination array.
- ArrayIndexOutOfBoundsException - Exception in java.lang
-
Thrown to indicate that an array has been accessed with an illegal index.
- ArrayIndexOutOfBoundsException() - Constructor for exception java.lang.ArrayIndexOutOfBoundsException
-
Constructs an ArrayIndexOutOfBoundsException
with no detail message.
- ArrayIndexOutOfBoundsException(int) - Constructor for exception java.lang.ArrayIndexOutOfBoundsException
-
Constructs a new ArrayIndexOutOfBoundsException
class with an argument indicating
the illegal index.
- ArrayIndexOutOfBoundsException(String) - Constructor for exception java.lang.ArrayIndexOutOfBoundsException
-
Constructs an ArrayIndexOutOfBoundsException
class with the specified detail
message.
- ArrayList<E> - Class in java.util
-
Resizable-array implementation of the List interface.
- ArrayList() - Constructor for class java.util.ArrayList
-
Constructs an empty list with an initial capacity of ten.
- ArrayList(Collection<? extends E>) - Constructor for class java.util.ArrayList
-
Constructs a list containing the elements of the specified collection, in the order they are
returned by the collection's iterator.
- ArrayList(int) - Constructor for class java.util.ArrayList
-
Constructs an empty list with the specified initial capacity.
- ArrayStoreException - Exception in java.lang
-
Thrown to indicate that an attempt has been made to store the wrong type of object into an array
of objects.
- ArrayStoreException() - Constructor for exception java.lang.ArrayStoreException
-
Constructs an ArrayStoreException
with no detail message.
- ArrayStoreException(String) - Constructor for exception java.lang.ArrayStoreException
-
Constructs an ArrayStoreException
with the specified detail message.
- AS_CHANNEL_4CH - Static variable in class ej.audio.AudioFile
-
Integer constant representing 4 channel Audio.
- AS_CHANNEL_6CH - Static variable in class ej.audio.AudioFile
-
Integer constant representing 6 channel audio.
- AS_CHANNEL_8CH - Static variable in class ej.audio.AudioFile
-
Integer constant representing 8 channel audio.
- AS_CHANNEL_MONO - Static variable in class ej.audio.AudioFile
-
Integer constant representing mono audio channel.
- AS_CHANNEL_STEREO - Static variable in class ej.audio.AudioFile
-
Integer constant representing stereo audio channel.
- asin(double) - Static method in class ej.bon.XMath
-
Returns the arc sine of a value; the returned angle is in the range
-pi/2 through pi/2.
- asin(double) - Static method in class java.lang.Math
-
Returns the arc sine of a value; the returned angle is in the range -pi/2 through
pi/2.
- AssertionError - Error in java.lang
-
Thrown to indicate that an assertion has failed.
- AssertionError() - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with no detail message.
- AssertionError(boolean) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived from the specified
boolean
, which is converted to a string as defined in section 15.18.1.1 of The
Java™ Language Specification.
- AssertionError(char) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived from the specified
char
, which is converted to a string as defined in section 15.18.1.1 of The
Java™ Language Specification.
- AssertionError(double) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived from the specified
double
, which is converted to a string as defined in section 15.18.1.1 of The
Java™ Language Specification.
- AssertionError(float) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived from the specified
float
, which is converted to a string as defined in section 15.18.1.1 of The
Java™ Language Specification.
- AssertionError(int) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived from the specified int
,
which is converted to a string as defined in section 15.18.1.1 of The Java™ Language
Specification.
- AssertionError(long) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived from the specified
long
, which is converted to a string as defined in section 15.18.1.1 of The
Java™ Language Specification.
- AssertionError(Object) - Constructor for error java.lang.AssertionError
-
Constructs an AssertionError with its detail message derived from the specified object, which is
converted to a string as defined in section 15.18.1.1 of The Java™ Language
Specification.
- AssertionError(String, Throwable) - Constructor for error java.lang.AssertionError
-
Constructs a new AssertionError
with the specified detail message and cause.
- asSubclass(Class<U>) - Method in class java.lang.Class
-
Casts this Class
object to represent a subclass of the class
represented by the specified class object.
- atan(double) - Static method in class ej.bon.XMath
-
Returns the arc tangent of a value; the returned angle is in the range
-pi/2 through pi/2.
- atan(double) - Static method in class java.lang.Math
-
Returns the arc tangent of a value; the returned angle is in the range -pi/2 through
pi/2.
- atan2(double, double) - Static method in class java.lang.Math
-
Returns the angle theta from the conversion of rectangular coordinates (x
, y
) to polar coordinates (r, theta).
- ATTRIBUTE_NOT_FOUND - Static variable in interface ej.bluetooth.BluetoothStatus
-
Attribute not found.
- ATTRIBUTE_NOT_LONG - Static variable in interface ej.bluetooth.BluetoothStatus
-
Attribute not long.
- AUDIO_CODEC_MP3 - Static variable in class ej.audio.AudioFile
-
Integer constant meaning MP3 Audio encoding.
- AUDIO_CODEC_WAV - Static variable in class ej.audio.AudioFile
-
Integer constant meaning WAV Audio encoding.
- AudioFile - Class in ej.audio
-
Class representing an audio file.
- AudioFile(String, int, int, int, int) - Constructor for class ej.audio.AudioFile
-
- AudioPlayer - Class in ej.audio
-
Class audio player to play sound with limited functionality.
- AUGUST - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH
field indicating the eighth month of the year in the Gregorian and
Julian calendars.
- AutoCloseable - Interface in java.lang
-
A resource that must be closed when it is no longer needed.
- available() - Method in class ej.bon.ResourceBuffer
-
Returns the available number of bytes that can be read (or skipped over) from
this buffer.
- available() - Method in class java.io.ByteArrayInputStream
-
Returns the number of remaining bytes that can be read (or skipped over) from this input stream.
- available() - Method in class java.io.FileInputStream
-
Returns an estimate of the number of remaining bytes that can be read (or
skipped over) from this input stream without blocking by the next
invocation of a method for this input stream.
- available() - Method in class java.io.FilterInputStream
-
Returns an estimate of the number of bytes that can be read (or skipped over) from this input
stream without blocking by the next caller of a method for this input stream.
- available() - Method in class java.io.InputStream
-
Returns an estimate of the number of bytes that can be read (or skipped over) from this input
stream without blocking by the next invocation of a method for this input stream.
- Calendar - Class in java.util
-
The
Calendar
class is an abstract class that provides methods for converting between
a specific instant in time and a set of
calendar fields
such as
YEAR
,
MONTH
,
DAY_OF_MONTH
,
HOUR
, and so on, and for
manipulating the calendar fields, such as getting the date of the next week.
- Calendar() - Constructor for class java.util.Calendar
-
Constructs a Calendar with the default time zone and locale.
- callSerially(Runnable) - Method in class ej.microui.display.Display
-
Serializes a call event in the system event stream.
- CANADIAN_ABORIGINAL - Static variable in class ej.microui.display.Font
-
Constant for canadian aboriginal font identifier.
- cancel() - Method in class ej.bon.Timer
-
Terminates this timer, discarding any currently scheduled tasks.
- cancel() - Method in class ej.bon.TimerTask
-
Cancels this timer task.
- CANCEL - Static variable in class ej.microui.event.generator.Command
-
The "cancel" command constant.
- 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.
- canExecute() - Method in class java.io.File
-
Tests whether the application can execute the file denoted by this
abstract pathname.
- canRead() - Method in class java.io.File
-
Tests whether the application can read the file denoted by this
abstract pathname.
- canWrite() - Method in class java.io.File
-
Tests whether the application can modify the file denoted by this
abstract pathname.
- CAP - Static variable in class ej.microui.event.generator.Keypad
-
The CAP mode.
In CAP mode only capital letters and digits are returned
- CAP1 - Static variable in class ej.microui.event.generator.Keypad
-
The CAP1 mode.
In CAP1 mode is the same has CAP mode, but automatically switch to ALPHA mode after the
Keyboard.KEY_UP
event
- capacity() - Method in class java.lang.StringBuffer
-
Returns the current capacity.
- capacity() - Method in class java.lang.StringBuilder
-
Returns the current capacity.
- capacity() - Method in class java.util.Vector
-
Returns the current capacity of this vector.
- capacityIncrement - Variable in class java.util.Vector
-
The amount by which the capacity of the vector is automatically incremented when its size becomes
greater than its capacity.
- CASE_INSENSITIVE_ORDER - Static variable in class java.lang.String
-
A Comparator that orders String
objects as by compareToIgnoreCase
.
- cast(Object) - Method in class java.lang.Class
-
Casts an object to the class or interface represented by this Class
object.
- cbrt(double) - Static method in class java.lang.Math
-
Returns the cube root of a double
value.
- CCC_DESCRIPTOR_IMPROPERLY_CONFIGURED - Static variable in interface ej.bluetooth.BluetoothStatus
-
CCC descriptor improperly configured.
- ceil(double) - Static method in class ej.bon.XMath
-
Returns the smallest (closest to negative infinity) double
value
that is greater than or equal to the argument and is equal to a mathematical
integer.
- ceil(double) - Static method in class java.lang.Math
-
Returns the smallest (closest to negative infinity) double
value that is greater than or
equal to the argument and is equal to a mathematical integer.
- Certificate - Class in java.security.cert
-
Abstract class for managing a variety of identity certificates.
- Certificate(String) - Constructor for class java.security.cert.Certificate
-
Creates a certificate of the specified type.
- CertificateEncodingException - Exception in java.security.cert
-
Certificate Encoding Exception.
- CertificateEncodingException() - Constructor for exception java.security.cert.CertificateEncodingException
-
Constructs a CertificateEncodingException with no detail message.
- CertificateEncodingException(String) - Constructor for exception java.security.cert.CertificateEncodingException
-
Constructs a CertificateEncodingException with the specified detail
message.
- CertificateEncodingException(String, Throwable) - Constructor for exception java.security.cert.CertificateEncodingException
-
Creates a CertificateEncodingException
with the specified
detail message and cause.
- CertificateEncodingException(Throwable) - Constructor for exception java.security.cert.CertificateEncodingException
-
Creates a CertificateEncodingException
with the specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- CertificateException - Exception in java.security.cert
-
This exception indicates one of a variety of certificate problems.
- CertificateException() - Constructor for exception java.security.cert.CertificateException
-
Constructs a certificate exception with no detail message.
- CertificateException(String) - Constructor for exception java.security.cert.CertificateException
-
Constructs a certificate exception with the given detail
message.
- CertificateException(String, Throwable) - Constructor for exception java.security.cert.CertificateException
-
Creates a CertificateException
with the specified
detail message and cause.
- CertificateException(Throwable) - Constructor for exception java.security.cert.CertificateException
-
Creates a CertificateException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- CertificateFactory - Class in java.security.cert
-
This class defines the functionality of a certificate factory, which is
used to generate certificate, certification path (CertPath
)
and certificate revocation list (CRL) objects from their encodings.
- CertificateFactory() - Constructor for class java.security.cert.CertificateFactory
-
- CertificateFactorySpi - Class in java.security.cert
-
This class defines the Service Provider Interface (SPI)
for the CertificateFactory
class.
- CertificateFactorySpi() - Constructor for class java.security.cert.CertificateFactorySpi
-
- CHAM - Static variable in class ej.microui.display.Font
-
Constant for cham font identifier.
- CHAR_SIZE - Static variable in class ej.bon.ByteArray
-
The size of a char.
- Character - Class in java.lang
-
The Character
class wraps a value of the primitive type char
in an object.
- Character(char) - Constructor for class java.lang.Character
-
Constructs a newly allocated Character
object that represents the specified char
value.
- charAt(int) - Method in interface java.lang.CharSequence
-
Returns the char
value at the specified index.
- charAt(int) - Method in class java.lang.String
-
Returns the char
value at the specified index.
- charAt(int) - Method in class java.lang.StringBuffer
-
Returns the char
value in this sequence at the specified index.
- charAt(int) - Method in class java.lang.StringBuilder
-
Returns the char
value in this sequence at the specified index.
- CharSequence - Interface in java.lang
-
A CharSequence is a readable sequence of char
values.
- charsWidth(char[], int, int) - Method in class ej.microui.display.Font
-
Gets the width of the characters in ch
from offset
to offset+length
with
this font and its x ratio.
The width is the horizontal distance that would be occupied if the length
characters were drawn
using this font.
- charValue() - Method in class java.lang.Character
-
Returns the value of this Character
object.
- charWidth(char) - Method in class ej.microui.display.Font
-
Gets the width of the specified character with this font and its x ratio.
The width is the horizontal distance that would be occupied if ch
was drawn using this font.
- checkAccess(Thread) - Method in class java.lang.SecurityManager
-
Throws a SecurityException
if the calling thread is not allowed to modify the thread
argument.
- checkAccess() - Method in class java.lang.Thread
-
Determines if the currently running thread has permission to modify this thread.
- checkError() - Method in class java.io.PrintStream
-
Flushes the stream and checks its error state.
- checkPermission(Permission) - Method in class java.lang.SecurityManager
-
Throws a SecurityException
if the requested access, specified by the given
permission, is not permitted based on the security policy currently in effect.
- CHEROKEE - Static variable in class ej.microui.display.Font
-
Constant for cherokee font identifier.
- Cipher - Class in javax.crypto
-
This class provides the functionality of a cryptographic cipher for
encryption and decryption.
- Class<T> - Class in java.lang
-
Instances of the class Class
represent classes and interfaces in a running Java
application.
- ClassCastException - Exception in java.lang
-
Thrown to indicate that the code has attempted to cast an object to a subclass of which it is not
an instance.
- ClassCastException() - Constructor for exception java.lang.ClassCastException
-
Constructs a ClassCastException
with no detail message.
- ClassCastException(String) - Constructor for exception java.lang.ClassCastException
-
Constructs a ClassCastException
with the specified detail message.
- ClassCircularityError - Error in java.lang
-
Thrown when the Java Virtual Machine detects a circularity in the superclass hierarchy of a class
being loaded.
- ClassCircularityError() - Constructor for error java.lang.ClassCircularityError
-
Constructs a ClassCircularityError
with no detail message.
- ClassCircularityError(String) - Constructor for error java.lang.ClassCircularityError
-
Constructs a ClassCircularityError
with the specified detail message.
- ClassFormatError - Error in java.lang
-
Thrown when the Java Virtual Machine attempts to read a class file and determines that the file
is malformed or otherwise cannot be interpreted as a class file.
- ClassFormatError() - Constructor for error java.lang.ClassFormatError
-
Constructs a ClassFormatError
with no detail message.
- ClassFormatError(String) - Constructor for error java.lang.ClassFormatError
-
Constructs a ClassFormatError
with the specified detail message.
- ClassNotFoundException - Exception in java.lang
-
Thrown when an application tries to load in a class through its string name using:
The forName
method in class Class
.
- ClassNotFoundException() - Constructor for exception java.lang.ClassNotFoundException
-
Constructs a ClassNotFoundException
with no detail message.
- ClassNotFoundException(String) - Constructor for exception java.lang.ClassNotFoundException
-
Constructs a ClassNotFoundException
with the specified detail message.
- ClassNotFoundException(String, Throwable) - Constructor for exception java.lang.ClassNotFoundException
-
Constructs a ClassNotFoundException
with the specified detail message and optional
exception that was raised while loading the class.
- cleanupDevices() - Method in class ej.bluetooth.BluetoothAdapter
-
Cleanups the list of devices known by this adapter.
- clear(byte[], int, int) - Static method in class ej.bon.ByteArray
-
Fills a zone of a byte array with 0
.
- clear() - Method in class java.lang.ref.Reference
-
Clears this reference object.
- clear() - Method in class java.util.AbstractCollection
-
Removes all of the elements from this collection (optional operation).
- clear() - Method in class java.util.AbstractList
-
Removes all of the elements from this list (optional operation).
- clear() - Method in class java.util.AbstractMap
-
Removes all of the mappings from this map (optional operation).
- clear() - Method in class java.util.ArrayList
-
Removes all of the elements from this list.
- clear() - Method in class java.util.Calendar
-
Sets all the calendar field values and the time value (millisecond offset from the
Epoch) of this
Calendar
undefined.
- clear(int) - Method in class java.util.Calendar
-
Sets the given calendar field value and the time value (millisecond offset from the
Epoch) of this
Calendar
undefined.
- clear() - Method in interface java.util.Collection
-
Removes all of the elements from this collection (optional operation).
- clear() - Method in class java.util.HashMap
-
Removes all of the mappings from this map.
- clear() - Method in class java.util.Hashtable
-
Clears this hashtable so that it contains no keys.
- clear() - Method in interface java.util.List
-
Removes all of the elements from this list (optional operation).
- clear() - Method in interface java.util.Map
-
Removes all of the mappings from this map (optional operation).
- clear() - Method in interface java.util.Set
-
Removes all of the elements from this set (optional operation).
- clear() - Method in class java.util.Vector
-
Removes all of the elements from this Vector.
- clear() - Method in class java.util.WeakHashMap
-
Removes all of the mappings from this map.
- clearChanged() - Method in class java.util.Observable
-
Indicates that this object has no longer changed, or that it has already notified all of its
observers of its most recent change, so that the hasChanged method will now return
false.
- clearError() - Method in class java.io.PrintStream
-
Clears the internal error state of this stream.
- CLICKED - Static variable in class ej.microui.event.generator.Buttons
-
The "clicked" action.
- clickEnabled(int) - Method in class ej.microui.event.generator.Buttons
-
Returns true
if the generator should send a click event.
- ClientCallbacks - Interface in ej.bluetooth.callbacks
-
The ClientCallbacks
interface provides callbacks related to GATT client events.
- clipRect(int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Sets the clipping area to be the intersection of the specified rectangle with the current clipping rectangle.
- CLOCKWISE - Static variable in class ej.microui.event.generator.Command
-
The "clockwise" command constant.
- clone(T, Module) - Static method in class ej.kf.Kernel
-
Creates and returns a copy of the given object, so that the newly created object is owned by the given
Module
.
- clone() - Method in class java.lang.Object
-
Creates and returns a copy of this object.
- clone() - Method in class java.security.MessageDigest
-
Returns a clone if the implementation is cloneable.
- clone() - Method in class java.security.MessageDigestSpi
-
Returns a clone if the implementation is cloneable.
- clone() - Method in class java.security.Signature
-
Returns a clone if the implementation is cloneable.
- clone() - Method in class java.security.SignatureSpi
-
Returns a clone if the implementation is cloneable.
- clone() - Method in class java.util.AbstractMap
-
Returns a shallow copy of this AbstractMap instance: the keys and values themselves are
not cloned.
- clone() - Method in class java.util.ArrayList
-
Returns a shallow copy of this ArrayList instance.
- clone() - Method in class java.util.Calendar
-
Creates and returns a copy of this object.
- clone() - Method in class java.util.Date
-
Return a copy of this object.
- clone() - Method in class java.util.HashMap
-
Returns a shallow copy of this HashMap instance: the keys and values themselves are not
cloned.
- clone() - Method in class java.util.Hashtable
-
Creates a shallow copy of this hashtable.
- clone() - Method in class java.util.TimeZone
-
Creates a copy of this TimeZone
.
- clone() - Method in class java.util.Vector
-
Returns a clone of this vector.
- clone() - Method in class javax.crypto.Mac
-
Returns a clone if the provider implementation is cloneable.
- Cloneable - Interface in java.lang
-
A class implements the
Cloneable
interface to indicate to the
Object.clone()
method that it is legal for that method to make a
field-for-field copy of instances of that class.
- CloneNotSupportedException - Exception in java.lang
-
Thrown to indicate that the clone
method in class Object
has been
called to clone an object, but that the object's class does not implement the
Cloneable
interface.
- CloneNotSupportedException() - Constructor for exception java.lang.CloneNotSupportedException
-
Constructs a CloneNotSupportedException
with no detail message.
- CloneNotSupportedException(String) - Constructor for exception java.lang.CloneNotSupportedException
-
Constructs a CloneNotSupportedException
with the specified detail message.
- close() - Method in class ej.bon.ResourceBuffer
-
Closes this resource and releases any system resources associated with the
resource.
- close() - Method in interface ej.ecom.io.Connection
-
Close the connection.
- close() - Method in class java.io.ByteArrayInputStream
-
Closing a ByteArrayInputStream has no effect.
- close() - Method in class java.io.ByteArrayOutputStream
-
Closing a ByteArrayOutputStream has no effect.
- close() - Method in interface java.io.Closeable
-
Closes this stream and releases any system resources associated with it.
- close() - Method in class java.io.FileInputStream
-
Closes this file input stream and releases any system resources
associated with the stream.
- close() - Method in class java.io.FileOutputStream
-
Closes this file output stream and releases any system resources
associated with this stream.
- close() - Method in class java.io.FilterInputStream
-
Closes this input stream and releases any system resources associated with the stream.
- close() - Method in class java.io.FilterOutputStream
-
Closes this output stream and releases any system resources associated with the stream.
- close() - Method in class java.io.InputStream
-
Closes this input stream and releases any system resources associated with the stream.
- close() - Method in class java.io.InputStreamReader
-
Close the stream.
- close() - Method in class java.io.OutputStream
-
Closes this output stream and releases any system resources associated with this stream.
- close() - Method in class java.io.OutputStreamWriter
-
Close the stream.
- close() - Method in class java.io.PrintStream
-
Closes the stream.
- close() - Method in class java.io.Reader
-
Closes the stream and releases any system resources associated with it.
- close() - Method in class java.io.Writer
-
Closes the stream, flushing it first.
- close() - Method in interface java.lang.AutoCloseable
-
Closes this resource, relinquishing any underlying resources.
- close() - Method in class java.net.DatagramSocket
-
Closes this datagram socket.
- close() - Method in class java.net.ServerSocket
-
Closes this socket.
- close() - Method in class java.net.Socket
-
Closes this socket.
- Closeable - Interface in java.io
-
A Closeable
is a source or destination of data that can be closed.
- closeManager() - Method in class ej.gnss.GnssManager
-
Close the manager instance.
- Collection<E> - Interface in java.util
-
The root interface in the collection hierarchy.
- Colors - Interface in ej.microui.display
-
The interface Colors
provides useful constants to handle RGB colors format.
- COMMAND - Static variable in class ej.microui.event.Event
-
The COMMAND event type.
- Command - Class in ej.microui.event.generator
-
Command is an event generator that generates application-level events.
- Command() - Constructor for class ej.microui.event.generator.Command
-
Creates a new command event generator.
- CommandEventHandler - Interface in ej.microui.event.controller
-
Event handler that manages
Command
events.
- CommConnection - Interface in ej.ecom.io
-
- COMMON - Static variable in class ej.microui.display.Font
-
Constant for common font identifier.
- CommPort - Interface in ej.ecom.io
-
This interface defines a logical serial port, on which a
CommConnection
can be open.
- Comparable<T> - Interface in java.lang
-
This interface imposes a total ordering on the objects of each class that implements it.
- Comparator<T> - Interface in java.util
-
A comparison function, which imposes a total ordering on some collection of objects.
- compare(boolean, boolean) - Static method in class java.lang.Boolean
-
Compares two boolean
values.
- compare(byte, byte) - Static method in class java.lang.Byte
-
Compares two byte
values numerically.
- compare(char, char) - Static method in class java.lang.Character
-
Compares two char
values numerically.
- compare(double, double) - Static method in class java.lang.Double
-
Compares the two specified double
values.
- compare(float, float) - Static method in class java.lang.Float
-
Compares the two specified float
values.
- compare(int, int) - Static method in class java.lang.Integer
-
Compares two int
values numerically.
- compare(long, long) - Static method in class java.lang.Long
-
Compares two long
values numerically.
- compare(short, short) - Static method in class java.lang.Short
-
Compares two short
values numerically.
- compare(T, T) - Method in interface java.util.Comparator
-
Compares its two arguments for order.
- compareTo(File) - Method in class java.io.File
-
Compares two abstract pathnames lexicographically.
- compareTo(Boolean) - Method in class java.lang.Boolean
-
Compares this Boolean
instance with another.
- compareTo(Byte) - Method in class java.lang.Byte
-
Compares two Byte
objects numerically.
- compareTo(Character) - Method in class java.lang.Character
-
Compares two Character
objects numerically.
- compareTo(T) - Method in interface java.lang.Comparable
-
Compares this object with the specified object for order.
- compareTo(Double) - Method in class java.lang.Double
-
Compares two Double
objects numerically.
- compareTo(E) - Method in class java.lang.Enum
-
Compares this enum with the specified object for order.
- compareTo(Float) - Method in class java.lang.Float
-
Compares two Float
objects numerically.
- compareTo(Integer) - Method in class java.lang.Integer
-
Compares two Integer
objects numerically.
- compareTo(Long) - Method in class java.lang.Long
-
Compares two Long
objects numerically.
- compareTo(Short) - Method in class java.lang.Short
-
Compares two Short
objects numerically.
- compareTo(String) - Method in class java.lang.String
-
Compares two strings lexicographically.
- compareTo(Calendar) - Method in class java.util.Calendar
-
Compares the time values (millisecond offsets from the
Epoch) represented by
two
Calendar
objects.
- compareTo(Date) - Method in class java.util.Date
-
Compares two Dates for ordering.
- compareToIgnoreCase(String) - Method in class java.lang.String
-
Compares two strings lexicographically, ignoring case differences.
- complete() - Method in class java.util.Calendar
-
Fills in any unset fields in the calendar fields.
- computeFields() - Method in class java.util.Calendar
-
- computeTime() - Method in class java.util.Calendar
-
- concat(String) - Method in class java.lang.String
-
Concatenates the specified string to the end of this string.
- ConcurrentModificationException - Exception in java.util
-
This exception may be thrown by methods that have detected concurrent modification of an object
when such modification is not permissible.
- ConcurrentModificationException() - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a ConcurrentModificationException with no detail message.
- ConcurrentModificationException(String) - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a ConcurrentModificationException
with the specified detail message.
- ConcurrentModificationException(String, Throwable) - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a new exception with the specified detail message and cause.
- ConcurrentModificationException(Throwable) - Constructor for exception java.util.ConcurrentModificationException
-
Constructs a new exception with the specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail
message of cause
.
- configure(NetworkInterface, IPConfiguration) - Static method in class ej.ecom.network.NetworkInterfaceManager
-
Sets the IP configuration of a network interface.
- connect(ConnectionCallbacks) - Method in class ej.bluetooth.BluetoothDevice
-
Initiates connection with this device.
- connect(InetAddress, int) - Method in class java.net.DatagramSocket
-
Connects the socket to a remote address for this socket.
- connect(SocketAddress) - Method in class java.net.DatagramSocket
-
Connects this socket to a remote socket address (IP address + port number).
- connect(SocketAddress) - Method in class java.net.Socket
-
Connects this socket to the server.
- connect(SocketAddress, int) - Method in class java.net.Socket
-
Connects this socket to the server with a specified timeout value.
- Connectable - Interface in ej.ecom
-
Common interface for a class that is able to open a
Connection
from it.
- ConnectException - Exception in java.net
-
Signals that an error occurred while attempting to connect a
socket to a remote address and port.
- ConnectException(String) - Constructor for exception java.net.ConnectException
-
Constructs a new ConnectException with the specified detail
message as to why the connect error occurred.
- ConnectException() - Constructor for exception java.net.ConnectException
-
Construct a new ConnectException with no detailed message.
- Connection - Interface in ej.ecom.io
-
This interface defines an open Connection.
- ConnectionCallbacks - Interface in ej.bluetooth.callbacks
-
The ConnectionCallbacks
interface provides callbacks related to the connection with a device.
- ConnectionFactory - Interface in ej.ecom.io
-
This interface defines the API for
Connection
factories.
- ConnectionNotFoundException - Exception in ej.ecom.io
-
This exception is thrown when a connection protocol is unknown.
- ConnectionNotFoundException() - Constructor for exception ej.ecom.io.ConnectionNotFoundException
-
Create a new ConnectionNotFoundException
- ConnectionNotFoundException(String) - Constructor for exception ej.ecom.io.ConnectionNotFoundException
-
Create a new ConnectionNotFoundException with a message
- ConnectionPermission - Class in ej.ecom.io
-
- ConnectionPermission(String) - Constructor for class ej.ecom.io.ConnectionPermission
-
- Connector - Class in ej.ecom.io
-
This class defines methods for opening a
Connection
from an URL.
- Constants - Class in ej.bon
-
This class provides access to compile-time constants.
- contains(CharSequence) - Method in class java.lang.String
-
Returns true if and only if this string contains the specified sequence of char values.
- contains(Object) - Method in class java.util.AbstractCollection
-
Returns true if this collection contains the specified element.
- contains(Object) - Method in class java.util.ArrayList
-
Returns true if this list contains the specified element.
- contains(Object) - Method in interface java.util.Collection
-
Returns true if this collection contains the specified element.
- contains(Object) - Method in class java.util.Hashtable
-
Tests if some key maps into the specified value in this hashtable.
- contains(Object) - Method in interface java.util.List
-
Returns true if this list contains the specified element.
- contains(Object) - Method in interface java.util.Set
-
Returns true if this set contains the specified element.
- contains(Object) - Method in class java.util.Vector
-
Returns true
if this vector contains the specified element.
- containsAlias(String) - Method in class java.security.KeyStore
-
Checks if the given alias exists in this keystore.
- containsAll(Collection<?>) - Method in class java.util.AbstractCollection
-
Adds all of the elements in the specified collection to this collection (optional operation).
- containsAll(Collection<?>) - Method in interface java.util.Collection
-
Returns true if this collection contains all of the elements in the specified
collection.
- containsAll(Collection<?>) - Method in interface java.util.List
-
Returns true if this list contains all of the elements of the specified collection.
- containsAll(Collection<?>) - Method in interface java.util.Set
-
Returns true if this set contains all of the elements of the specified collection.
- containsAll(Collection<?>) - Method in class java.util.Vector
-
Returns true if this Vector contains all of the elements in the specified Collection.
- containsKey(Object) - Method in class java.util.AbstractMap
-
Returns true if this map contains a mapping for the specified key.
- containsKey(Object) - Method in class java.util.HashMap
-
Returns true if this map contains a mapping for the specified key.
- containsKey(Object) - Method in class java.util.Hashtable
-
Tests if the specified object is a key in this hashtable.
- containsKey(Object) - Method in interface java.util.Map
-
Returns true if this map contains a mapping for the specified key.
- containsKey(Object) - Method in class java.util.WeakHashMap
-
Returns true if this map contains a mapping for the specified key.
- containsValue(Object) - Method in class java.util.AbstractMap
-
Returns true if this map maps one or more keys to the specified value.
- containsValue(Object) - Method in class java.util.HashMap
-
Returns true if this map maps one or more keys to the specified value.
- containsValue(Object) - Method in class java.util.Hashtable
-
Returns true if this hashtable maps one or more keys to this value.
- containsValue(Object) - Method in interface java.util.Map
-
Returns true if this map maps one or more keys to the specified value.
- containsValue(Object) - Method in class java.util.WeakHashMap
-
Returns true if this map maps one or more keys to the specified value.
- ContentConnection - Interface in ej.ecom.io
-
- contentEquals(CharSequence) - Method in class java.lang.String
-
Compares this string to the specified CharSequence
.
- contentEquals(StringBuffer) - Method in class java.lang.String
-
Compares this string to the specified StringBuffer
.
- convert(T, Feature) - Method in interface ej.kf.Converter
-
Converts an object owned by a Feature to an other Feature.
- Converter<T> - Interface in ej.kf
-
A
Converter
is able to give a representation of an object owned by a Feature to an other Feature.
- COPTIC - Static variable in class ej.microui.display.Font
-
Constant for coptic font identifier.
- COPY - Static variable in class ej.microui.event.generator.Command
-
The "copy" command constant.
- copyInto(Object[]) - Method in class java.util.Vector
-
Copies the components of this vector into the specified array.
- copySign(double, double) - Static method in class java.lang.Math
-
Returns the first floating-point argument with the sign of the second floating-point argument.
- copySign(float, float) - Static method in class java.lang.Math
-
Returns the first floating-point argument with the sign of the second floating-point argument.
- copyValueOf(char[]) - Static method in class java.lang.String
-
Returns a String that represents the character sequence in the array specified.
- copyValueOf(char[], int, int) - Static method in class java.lang.String
-
Returns a String that represents the character sequence in the array specified.
- cos(double) - Static method in class ej.bon.XMath
-
Returns the trigonometric cosine of an angle.
- cos(double) - Static method in class java.lang.Math
-
Returns the trigonometric cosine of an angle.
- cosh(double) - Static method in class java.lang.Math
-
Returns the hyperbolic cosine of a double
value.
- count - Variable in class java.io.ByteArrayInputStream
-
The index one greater than the last valid character in the input stream buffer.
- count - Variable in class java.io.ByteArrayOutputStream
-
The number of valid bytes in the buffer.
- countObservers() - Method in class java.util.Observable
-
Returns the number of observers of this Observable object.
- create(int, int, int) - Method in class ej.sp.ShieldedPlug
-
Creates a block with the given ID.
- create(int, int) - Method in class ej.sp.ShieldedPlug
-
Creates a block with the given ID.
- createDatabase(int) - Static method in class ej.sp.ShieldedPlug
-
Creates a new empty database with the given ID.
- createImage(int, int) - Static method in class ej.microui.display.Image
-
Creates a new mutable image which respects the pixel organization (layout, bpp etc.) of the default display and
with the given size.
- createImage(Display, int, int) - Static method in class ej.microui.display.Image
-
Creates a new mutable image which respects the pixel organization (layout, bpp etc.) of the given display and
with the given size.
- createImage(String) - Static method in class ej.microui.display.Image
-
Creates an immutable image from a resource.
The resource image format (input format) is a standard image format (PNG
etc.) or an internal
MicroUI implementation specific format.
- createImage(String, Image.OutputFormat) - Static method in class ej.microui.display.Image
-
Creates an immutable image from a resource.
The resource image format (input format) is a standard image format (PNG
etc.) or an internal
MicroUI implementation specific format.
- createImage(Image, int, int, int, int) - Static method in class ej.microui.display.Image
-
Creates an immutable image from another image area.
- createImage(Image, int, int, int, int, Image.OutputFormat) - Static method in class ej.microui.display.Image
-
Creates an immutable image from another image area.
- createImage(InputStream, int) - Static method in class ej.microui.display.Image
-
Creates an immutable image from an
InputStream
.
The resource image format (input format) is a standard image format (
PNG
etc.) According the MicroUI
implementation the image can be loaded or not.
- createImage(InputStream, int, Image.OutputFormat) - Static method in class ej.microui.display.Image
-
Creates an immutable image from an
InputStream
.
The resource image format (input format) is a standard image format (
PNG
etc.) According the
MicroUI implementation the image can be loaded or not.
- createNewFile() - Method in class java.io.File
-
Atomically creates a new, empty file named by this abstract pathname if
and only if a file with this name does not yet exist.
- createServerSocket() - Method in class javax.net.ServerSocketFactory
-
Returns an unbound server socket.
- createServerSocket(int) - Method in class javax.net.ServerSocketFactory
-
Returns a server socket bound to the specified port.
- createServerSocket(int, int) - Method in class javax.net.ServerSocketFactory
-
Returns a server socket bound to the specified port, and uses the
specified connection backlog.
- createServerSocket(int, int, InetAddress) - Method in class javax.net.ServerSocketFactory
-
Returns a server socket bound to the specified port,
with a specified listen backlog and local IP.
- createSocket() - Method in class javax.net.SocketFactory
-
Creates an unconnected socket.
- createSocket(String, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connects it to the specified remote host
at the specified remote port.
- createSocket(String, int, InetAddress, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connects it to the specified remote host
on the specified remote port.
- createSocket(InetAddress, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connects it to the specified port number
at the specified address.
- createSocket(InetAddress, int, InetAddress, int) - Method in class javax.net.SocketFactory
-
Creates a socket and connect it to the specified remote address
on the specified remote port.
- createSocket(Socket, String, int, boolean) - Method in class javax.net.ssl.SSLSocketFactory
-
Returns a socket layered over an existing socket connected to the named
host, at the given port.
- createSocket(Socket, InputStream, boolean) - Method in class javax.net.ssl.SSLSocketFactory
-
Creates a server mode
Socket
layered over an existing connected
socket, and is able to read data which has already been consumed/removed
from the
Socket
's underlying
InputStream
.
- createTempFile(String, String, File) - Static method in class java.io.File
-
Creates a new empty file in the specified directory, using the
given prefix and suffix strings to generate its name.
- createTempFile(String, String) - Static method in class java.io.File
-
Creates an empty file in the default temporary-file directory, using
the given prefix and suffix to generate its name.
- createUnresolved(String, int) - Static method in class java.net.InetSocketAddress
-
Creates an unresolved socket address from a hostname and a port number.
- currentThread() - Static method in class java.lang.Thread
-
Returns a reference to the currently executing thread object.
- currentTimeMillis() - Static method in class ej.bon.Util
-
Gets the application time in milliseconds.
- currentTimeMillis() - Static method in class java.lang.System
-
Returns the current time in milliseconds.
- CUT - Static variable in class ej.microui.event.generator.Command
-
The "cut" command constant.
- CYAN - Static variable in interface ej.microui.display.Colors
-
The cyan RGB color constant.
The value 0x00ffff
is assigned to CYAN
.
- CYRILLIC - Static variable in class ej.microui.display.Font
-
Constant for cyrillic font identifier.
- Datagram - Interface in ej.ecom.io
-
- DatagramConnection - Interface in ej.ecom.io
-
- 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.
- DeadFeatureException - Exception in ej.kf
-
This exception is thrown by the system when a Feature code has been stopped because it is being uninstalled.
- DeadFeatureException() - Constructor for exception ej.kf.DeadFeatureException
-
- 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
.
- DECRYPT_MODE - Static variable in class javax.crypto.Cipher
-
Constant used to initialize cipher to decryption mode.
- deepImmortal(T) - Static method in class ej.bon.Immortals
-
Turns the given object and all objects referred from it into immortal
objects.
- DefaultClientCallbacks - Class in ej.bluetooth.callbacks.impl
-
The
DefaultClientCallbacks
class provides a default implementation of the
ClientCallbacks
interface.
- DefaultClientCallbacks() - Constructor for class ej.bluetooth.callbacks.impl.DefaultClientCallbacks
-
- DefaultConnectionCallbacks - Class in ej.bluetooth.callbacks.impl
-
The
DefaultConnectionCallbacks
class provides a default implementation of the
ConnectionCallbacks
interface.
- DefaultConnectionCallbacks() - Constructor for class ej.bluetooth.callbacks.impl.DefaultConnectionCallbacks
-
- DefaultServerCallbacks - Class in ej.bluetooth.callbacks.impl
-
The
DefaultServerCallbacks
class provides a default implementation of the
ServerCallbacks
interface.
- DefaultServerCallbacks() - Constructor for class ej.bluetooth.callbacks.impl.DefaultServerCallbacks
-
- delete(int) - Method in class ej.sp.ShieldedPlug
-
Deletes the block with the given ID.
- delete() - Method in class java.io.File
-
Deletes the file or directory denoted by this abstract pathname.
- 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.
- destroy() - Method in class javax.crypto.spec.SecretKeySpec
-
- destroy() - Method in interface javax.security.auth.Destroyable
-
Destroy this Object
.
- Destroyable - Interface in javax.security.auth
-
Objects such as credentials may optionally implement this interface to provide the capability to destroy its
contents.
- DestroyFailedException - Exception in javax.security.auth
-
Signals that a destroy
operation failed.
- DestroyFailedException() - Constructor for exception javax.security.auth.DestroyFailedException
-
Constructs a DestroyFailedException with no detail message.
- DestroyFailedException(String) - Constructor for exception javax.security.auth.DestroyFailedException
-
Constructs a DestroyFailedException with the specified detail message.
- DEVANAGARI - Static variable in class ej.microui.display.Font
-
Constant for devanagari font identifier.
- Device - Interface in ej.ecom
-
Common superclass for a Device.
- Device - Class in ej.util
-
This class offers access to the device information.
- Device() - Constructor for class ej.util.Device
-
- DeviceManager - Class in ej.ecom
-
- DeviceManagerPermission<D> - Class in ej.ecom
-
- DeviceManagerPermission(String, Class<D>) - Constructor for class ej.ecom.DeviceManagerPermission
-
- deviceRegistered(RegistrationEvent<D>) - Method in interface ej.ecom.RegistrationListener
-
This method is called when a new device is registered and if it is allowed to be notified of events on the registered event class.
- deviceUnregistered(RegistrationEvent<D>) - Method in interface ej.ecom.RegistrationListener
-
This method is called when a new device is unregistered and if it is allowed to be notified of events on the registered event class.
- 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.
- digest() - Method in class java.security.MessageDigest
-
Completes the hash computation by performing final operations
such as padding.
- digest(byte[], int, int) - Method in class java.security.MessageDigest
-
Completes the hash computation by performing final operations
such as padding.
- digest(byte[]) - Method in class java.security.MessageDigest
-
Performs a final update on the digest using the specified array
of bytes, then completes the digest computation.
- DigestException - Exception in java.security
-
This is the generic Message Digest exception.
- DigestException() - Constructor for exception java.security.DigestException
-
Constructs a DigestException with no detail message.
- DigestException(String) - Constructor for exception java.security.DigestException
-
Constructs a DigestException with the specified detail
message.
- DigestException(String, Throwable) - Constructor for exception java.security.DigestException
-
Creates a DigestException
with the specified
detail message and cause.
- DigestException(Throwable) - Constructor for exception java.security.DigestException
-
Creates a DigestException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- digit(char, int) - Static method in class java.lang.Character
-
Returns the numeric value of the character ch in the specified radix.
- disable(NetworkInterface) - Static method in class ej.ecom.network.NetworkInterfaceManager
-
Disables a network interface (software side).
- disableSoftAP() - Method in class ej.ecom.wifi.WifiManager
-
Disables the Software enabled Access Point (SoftAP).
- disconnect() - Method in class ej.bluetooth.BluetoothDevice
-
Initiates disconnection with this device.
- disconnect() - Method in class java.net.DatagramSocket
-
Disconnects the socket.
- discoverServices() - Method in class ej.bluetooth.BluetoothDevice
-
Initiates the discovery of the services provided by this device.
- dispatchButton(int, ButtonEventHandler) - Static method in class ej.microui.event.controller.DispatchHelper
-
Dispatch button events.
- dispatchEvent(int, EventGeneratorsHandler) - Static method in class ej.microui.event.controller.DispatchHelper
-
Dispatch MicroUI events.
- DispatchEventHandler - Class in ej.microui.event.controller
-
Dispatches events by event type (defined
Event
) and data (event type specific).
- DispatchEventHandler() - Constructor for class ej.microui.event.controller.DispatchEventHandler
-
Creates a dispatch event handler.
- DispatchHelper - Class in ej.microui.event.controller
-
Helps dispatch some sorts of events.
- dispatchPointer(int, PointerEventHandler) - Static method in class ej.microui.event.controller.DispatchHelper
-
Dispatch pointer events.
- Display - Class in ej.microui.display
-
A Display
object represents a pixelated screen in the platform, and there is a display for each such
pixelated screen.
- Display() - Constructor for class ej.microui.display.Display
-
- DISPLAY - Static variable in class ej.microui.event.generator.Command
-
The "display" command constant.
- Displayable - Class in ej.microui.display
-
Displayable
is an abstract class which defines the very objects that can be shown on a
Display
.
A Displayable
object is built for a specific Display
which can not be changed afterwards.
- Displayable(Display) - Constructor for class ej.microui.display.Displayable
-
The newly created displayable is built for the given display and is hidden.
- DisplayPermission - Class in ej.microui.display
-
Permission to access a Display.
- DisplayPermission(Display) - Constructor for class ej.microui.display.DisplayPermission
-
Creates a display permission for the given 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.
- doFinal() - Method in class javax.crypto.Cipher
-
Finishes a multiple-part encryption or decryption operation, depending
on how this cipher was initialized.
- doFinal(byte[], int) - Method in class javax.crypto.Cipher
-
Finishes a multiple-part encryption or decryption operation, depending
on how this cipher was initialized.
- doFinal(byte[]) - Method in class javax.crypto.Cipher
-
Encrypts or decrypts data in a single-part operation, or finishes a
multiple-part operation.
- doFinal(byte[], int, int) - Method in class javax.crypto.Cipher
-
Encrypts or decrypts data in a single-part operation, or finishes a
multiple-part operation.
- doFinal(byte[], int, int, byte[]) - Method in class javax.crypto.Cipher
-
Encrypts or decrypts data in a single-part operation, or finishes a
multiple-part operation.
- doFinal(byte[], int, int, byte[], int) - Method in class javax.crypto.Cipher
-
Encrypts or decrypts data in a single-part operation, or finishes a
multiple-part operation.
- doFinal() - Method in class javax.crypto.Mac
-
Finishes the MAC operation.
- doFinal(byte[], int) - Method in class javax.crypto.Mac
-
Finishes the MAC operation.
- doFinal(byte[]) - Method in class javax.crypto.Mac
-
Processes the given array of bytes and finishes the MAC operation.
- DOTTED - Static variable in class ej.microui.display.GraphicsContext
-
Constant for the DOTTED
stroke style.
- 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
-
The "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
-
The "down" command constant.
- DRAGGED - Static variable in class ej.microui.event.generator.Pointer
-
The "dragged" action.
- draw(GraphicsContext, int, int, int) - Method in class ej.microui.display.RenderableString
-
Draws the string using the font and given graphics context color.
- draw(GraphicsContext, Image, int[], int, int, int) - Method in class ej.microui.display.transform.ImageDeformation
-
Draws a deformed image at the given anchor point.
The image anchor point is at position @{code (x,y)}.
- draw(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageFlip
-
- draw(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageScale
-
- drawBilinear(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageRotation
-
- drawBilinear(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageScale
-
Draw the
Image
in the
GraphicsContext
at given anchor position and using the current scaling
factor.
- drawBilinear(GraphicsContext, Renderable, int, int, int) - Method in class ej.microui.display.transform.Rotate
-
Draws the renderable applying the current rotation.
- drawChar(char, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a character using the current font and color.
The text anchor point is at position (x,y)
.
- drawChars(char[], int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws some characters using the current font and color.
The text anchor point is at position (x,y)
.
- drawCircle(int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of a circle covering the rectangle specified by its diameter, using the current color and
stroke style.
- drawCircle(GraphicsContext, int, int, int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Draws the outline of a circle covering the rectangle specified by its diameter, using the
GraphicsContext
's current color.
The center of the circle is defined as the center of the rectangle whose origin is at
(x,y)
(upper-left corner) and whose dimension is given by
diameter
.
If
diameter
is negative, nothing is drawn.
- drawCircle(GraphicsContext, int, int, int) - Method in class ej.microui.display.shape.ThickShapes
-
Draws the outline of a circle covering the rectangle specified by its diameter, using the
GraphicsContext
's current color.
The center of the circle is defined as the center of the rectangle whose origin is at
(x,y)
(upper-left corner) and whose dimension is given by
diameter
.
If
diameter
is negative, nothing is drawn.
- drawCircleArc(int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of a circular arc covering the specified square, using the current color and stroke style.
- drawCircleArc(GraphicsContext, int, int, int, int, int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Draws the outline of a circular arc covering the specified square, using the current color, stroke style and caps
The arc is drawn from startAngle
up to arcAngle
degrees.
- drawCircleArc(GraphicsContext, int, int, int, int, int) - Method in class ej.microui.display.shape.ThickShapes
-
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.
- drawEllipse(int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of a ellipse covering the specified rectangle, using the current color and stroke style.
- drawEllipse(GraphicsContext, int, int, int, int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
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, nothing is drawn.
- drawEllipseArc(int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of a elliptical arc covering the specified rectangle, using the current color and stroke style.
- drawHorizontalLine(int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws an horizontal line from (x,y)
to (x+width,y)
using the current color and stroke
style.
- drawImage(Image, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws an image at the given anchor point.
- drawImage(Image, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws an image at the given anchor point.
- drawLine(int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a line from (x1,y1)
to (x2,y2)
using the current color and stroke style.
- drawLine(GraphicsContext, int, int, int, int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Draws a line from
(x1,y1)
to
(x2,y2)
using the
GraphicsContext
's current color.
- drawLine(GraphicsContext, int, int, int, int) - Method in class ej.microui.display.shape.ThickShapes
-
Draws a line from
(x1,y1)
to
(x2,y2)
using the
GraphicsContext
's current color.
- drawNearestNeighbor(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageRotation
-
- drawNearestNeighbor(GraphicsContext, Image, int, int, int) - Method in class ej.microui.display.transform.ImageScale
-
Draw the
Image
in the
GraphicsContext
at given anchor position and using the current scaling
factor.
- drawNearestNeighbor(GraphicsContext, Renderable, int, int, int) - Method in class ej.microui.display.transform.Rotate
-
Draws the renderable applying the current rotation.
- drawPixel(int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a pixel at (x,y)
using the current color.
- drawPoint(GraphicsContext, int, int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
- drawPolygon(int[]) - Method in class ej.microui.display.GraphicsContext
-
Draws the closed polygon which is defined by the array of integer coordinates, using the current color and stroke
style.
- drawPolygon(int[], int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the closed polygon which is defined by the array of integer coordinates, using the current color and stroke
style.
- drawRect(int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of the specified rectangle using the current color and stroke style.
- drawRegion(Image, int, int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a region of an image.
- drawRegion(Image, int, int, int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a region of an image.
- drawRegion(Display, int, int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a region of a display.
- drawRegion(Display, int, int, int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a region of a display.
- drawRoundRect(int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the outline of the specified rounded corner rectangle using the current color and stroke style.
- drawString(String, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the string using the current font and color.
The text anchor point is at position (x,y)
.
- drawSubstring(String, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws the string from offset
to offset+length
using the current font and color.
- drawVerticalLine(int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Draws a vertical line from (x,y)
to (x,y+height-1)
using the current color and stroke
style.
- dropOnFull() - Method in class ej.microui.event.generator.Keyboard
-
Subclasses should override this method to specify their policy.
- 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.
- dynamicCodeAllowed() - Static method in class ej.bon.Util
-
- E - Static variable in class ej.bon.XMath
-
The double
value that is closer than any other to e, the
base of the natural logarithms.
- E - Static variable in class java.lang.Math
-
The double
value that is closer than any other to e, the base of the natural
logarithms.
- ej.annotation - package ej.annotation
-
Defines annotations for static null
analysis.
- ej.audio - package ej.audio
-
- ej.bluetooth - package ej.bluetooth
-
Contains Bluetooth classes.
- ej.bluetooth.callbacks - package ej.bluetooth.callbacks
-
Contains interfaces for Bluetooth callbacks.
- ej.bluetooth.callbacks.impl - package ej.bluetooth.callbacks.impl
-
Contains default implementations for Bluetooth callbacks.
- ej.bon - package ej.bon
-
Contains Beyond profile classes (ESR001
).
- ej.ecom - package ej.ecom
-
Contains Embedded Communications classes (ESR008
).
- ej.ecom.io - package ej.ecom.io
-
Contains connection framework classes.
- ej.ecom.network - package ej.ecom.network
-
Contains ECOM-NETWORK framework base classes.
- ej.ecom.wifi - package ej.ecom.wifi
-
Contains ECOM-WIFI framework base classes.
- ej.gnss - package ej.gnss
-
- ej.hal.gpio - package ej.hal.gpio
-
Contains GPIO management for Hardware Abstraction Layer (ESR028
).
- ej.kf - package ej.kf
-
Contains KF classes.
- ej.microui - package ej.microui
-
Contains MicroUI framework base classes.
- ej.microui.display - package ej.microui.display
-
Contains display management.
- ej.microui.display.shape - package ej.microui.display.shape
-
Contains shapes rendering management.
- ej.microui.display.transform - package ej.microui.display.transform
-
Contains image transformation management.
- ej.microui.event - package ej.microui.event
-
Contains events management.
- ej.microui.event.controller - package ej.microui.event.controller
-
Contains helpers to handle events.
- ej.microui.event.generator - package ej.microui.event.generator
-
Contains standard event generators.
- ej.microui.led - package ej.microui.led
-
Contains LEDs management.
- ej.microui.util - package ej.microui.util
-
Contains MicroUI utilities.
- ej.sni - package ej.sni
-
Contains SNI classes.
- ej.sp - package ej.sp
-
Contains Shielded Plug classes (ESR014
).
- ej.trace - package ej.trace
-
- ej.util - package ej.util
-
- elapsedTime(int) - Method in class ej.microui.event.generator.Buttons
-
Returns the elapsed time in milliseconds between the two previous
Buttons.PRESSED
events that occurred on the
specified button.
- elementAt(int) - Method in class ej.bon.ResourceArray
-
Reads the element at given index.
- elementAt(int) - Method in class java.util.Vector
-
Returns the component at the specified index.
- elementCount - Variable in class java.util.Vector
-
The number of valid components in this Vector
object.
- elementData - Variable in class java.util.Vector
-
The array buffer into which the components of the vector are stored.
- elements() - Method in class ej.bon.ResourceArray
-
Reads all array elements.
- elements() - Method in class java.util.Dictionary
-
Returns an enumeration of the values in this dictionary.
- elements() - Method in class java.util.Hashtable
-
Returns an enumeration of the values in this hashtable.
- elements() - Method in class java.util.Vector
-
Returns an enumeration of the components of this vector.
- ElementType - Enum in java.lang.annotation
-
A program element type.
- empty() - Method in class java.util.Stack
-
Tests if this stack is empty.
- EmptyBlockException - Exception in ej.sp
-
Thrown by methods in
ShieldedPlug
class to indicate that no data is available in a block.
- EmptyBlockException() - Constructor for exception ej.sp.EmptyBlockException
-
Builds a new EmptyBlockException with null as its error message string.
- EmptyStackException - Exception in java.util
-
Thrown by methods in the Stack
class to indicate that the stack is empty.
- EmptyStackException() - Constructor for exception java.util.EmptyStackException
-
Constructs a new EmptyStackException
with null as its error message string.
- enable(NetworkInterface) - Static method in class ej.ecom.network.NetworkInterfaceManager
-
Enables a network interface (software side).
- enableClick(boolean, int) - Method in class ej.microui.event.generator.Buttons
-
For the given button, specify whether the generator should send a click event for each pressed event.
- enableDoubleClick(boolean, int, int) - Method in class ej.microui.event.generator.Buttons
-
For the given button, specify whether the generator should send a double click event.
- enableSoftAP(SoftAPConfiguration) - Method in class ej.ecom.wifi.WifiManager
-
Enables the SoftAP with a given configuration.
- EncodedKeySpec - Class in java.security.spec
-
This class represents a public or private key in encoded format.
- EncodedKeySpec(byte[]) - Constructor for class java.security.spec.EncodedKeySpec
-
Creates a new EncodedKeySpec with the given encoded key.
- ENCRYPT_MODE - Static variable in class javax.crypto.Cipher
-
Constant used to initialize cipher to encryption mode.
- endsWith(String) - Method in class java.lang.String
-
Tests if this string ends with the specified suffix.
- engineAliases() - Method in class java.security.KeyStoreSpi
-
Lists all the alias names of this keystore.
- engineContainsAlias(String) - Method in class java.security.KeyStoreSpi
-
Checks if the given alias exists in this keystore.
- engineDeleteEntry(String) - Method in class java.security.KeyStoreSpi
-
Deletes the entry identified by the given alias from this keystore.
- engineDigest() - Method in class java.security.MessageDigestSpi
-
Completes the hash computation by performing final
operations such as padding.
- engineDigest(byte[], int, int) - Method in class java.security.MessageDigestSpi
-
Completes the hash computation by performing final
operations such as padding.
- engineGenerateCertificate(InputStream) - Method in class java.security.cert.CertificateFactorySpi
-
Generates a certificate object and initializes it with
the data read from the input stream inStream
.
- engineGetCertificate(String) - Method in class java.security.KeyStoreSpi
-
Returns the certificate associated with the given alias.
- engineGetCertificateChain(String) - Method in class java.security.KeyStoreSpi
-
Returns the certificate chain associated with the given alias.
- engineGetDigestLength() - Method in class java.security.MessageDigestSpi
-
Returns the digest length in bytes.
- engineGetKey(String, char[]) - Method in class java.security.KeyStoreSpi
-
Returns the key associated with the given alias, using the given
password to recover it.
- engineGetKeyManagers() - Method in class javax.net.ssl.KeyManagerFactorySpi
-
Returns one key manager for each type of key material.
- engineGetSocketFactory() - Method in class javax.net.ssl.SSLContextSpi
-
Returns a SocketFactory
object for this
context.
- engineGetTrustManagers() - Method in class javax.net.ssl.TrustManagerFactorySpi
-
Returns one trust manager for each type of trust material.
- engineInit(KeyStore, char[]) - Method in class javax.net.ssl.KeyManagerFactorySpi
-
Initializes this factory with a source of key material.
- engineInit(KeyManager[], TrustManager[], SecureRandom) - Method in class javax.net.ssl.SSLContextSpi
-
Initializes this context.
- engineInit(KeyStore) - Method in class javax.net.ssl.TrustManagerFactorySpi
-
Initializes this factory with a source of certificate
authorities and related trust material.
- engineInitSign(PrivateKey) - Method in class java.security.SignatureSpi
-
Initializes this signature object with the specified
private key for signing operations.
- engineInitSign(PrivateKey, SecureRandom) - Method in class java.security.SignatureSpi
-
Initializes this signature object with the specified
private key and source of randomness for signing operations.
- engineInitVerify(PublicKey) - Method in class java.security.SignatureSpi
-
Initializes this signature object with the specified
public key for verification operations.
- engineIsCertificateEntry(String) - Method in class java.security.KeyStoreSpi
-
Returns true if the entry identified by the given alias
was created by a call to setCertificateEntry
,
or created by a call to setEntry
with a
TrustedCertificateEntry
.
- engineIsKeyEntry(String) - Method in class java.security.KeyStoreSpi
-
Returns true if the entry identified by the given alias
was created by a call to setKeyEntry
,
or created by a call to setEntry
with a
PrivateKeyEntry
or a SecretKeyEntry
.
- engineLoad(InputStream, char[]) - Method in class java.security.KeyStoreSpi
-
Loads the keystore from the given input stream.
- engineReset() - Method in class java.security.MessageDigestSpi
-
Resets the digest for further use.
- engineSetCertificateEntry(String, Certificate) - Method in class java.security.KeyStoreSpi
-
Assigns the given certificate to the given alias.
- engineSetKeyEntry(String, byte[], Certificate[]) - Method in class java.security.KeyStoreSpi
-
Assigns the given key (that has already been protected) to the given
alias.
- engineSetParameter(AlgorithmParameterSpec) - Method in class java.security.SignatureSpi
-
This method is overridden by providers to initialize
this signature engine with the specified parameter set.
- engineSign() - Method in class java.security.SignatureSpi
-
Returns the signature bytes of all the data
updated so far.
- engineSign(byte[], int, int) - Method in class java.security.SignatureSpi
-
Finishes this signature operation and stores the resulting signature
bytes in the provided buffer outbuf
, starting at
offset
.
- engineSize() - Method in class java.security.KeyStoreSpi
-
Retrieves the number of entries in this keystore.
- engineUpdate(byte) - Method in class java.security.MessageDigestSpi
-
Updates the digest using the specified byte.
- engineUpdate(byte[], int, int) - Method in class java.security.MessageDigestSpi
-
Updates the digest using the specified array of bytes,
starting at the specified offset.
- engineUpdate(byte) - Method in class java.security.SignatureSpi
-
Updates the data to be signed or verified
using the specified byte.
- engineUpdate(byte[], int, int) - Method in class java.security.SignatureSpi
-
Updates the data to be signed or verified, using the
specified array of bytes, starting at the specified offset.
- engineVerify(byte[]) - Method in class java.security.SignatureSpi
-
Verifies the passed-in signature.
- engineVerify(byte[], int, int) - Method in class java.security.SignatureSpi
-
Verifies the passed-in signature in the specified array
of bytes, starting at the specified offset.
- enqueue() - Method in class java.lang.ref.Reference
-
Adds this reference object to the queue with which it is registered, if any.
- EnqueuedWeakReference<T> - Class in ej.bon
-
EnqueuedWeakReference are objects that are queued in an ReferenceQueue by the
system when the object they point at (see
Reference.get()
) is set to
null
by the
system.
- EnqueuedWeakReference(T, ReferenceQueue<? super T>) - Constructor for class ej.bon.EnqueuedWeakReference
-
Creates a new EnqueuedWeakReference
.
- ensureCapacity(int) - Method in class java.lang.StringBuffer
-
Ensures that the capacity is at least equal to the specified minimum.
- ensureCapacity(int) - Method in class java.lang.StringBuilder
-
Ensures that the capacity is at least equal to the specified minimum.
- ensureCapacity(int) - Method in class java.util.ArrayList
-
Increases the capacity of this ArrayList instance, if necessary, to ensure that it can
hold at least the number of elements specified by the minimum capacity argument.
- ensureCapacity(int) - Method in class java.util.Vector
-
Increases the capacity of this vector, if necessary, to ensure that it can hold at least the
number of components specified by the minimum capacity argument.
- enter() - Static method in class ej.kf.Kernel
-
Enters in Kernel mode: the current thread context is switched to be owned by the Kernel.
- ENTERED - Static variable in class ej.microui.event.generator.Pointer
-
The "entered" action.
- entrySet() - Method in class java.util.AbstractMap
-
- entrySet() - Method in class java.util.HashMap
-
Returns a
Set
view of the mappings contained in this map.
- entrySet() - Method in class java.util.Hashtable
-
Returns a
Set
view of the mappings contained in this map.
- entrySet() - Method in interface java.util.Map
-
Returns a
Set
view of the mappings contained in this map.
- entrySet() - Method in class java.util.WeakHashMap
-
Returns a
Set
view of the mappings contained in this map.
- Enum<E extends Enum<E>> - Class in java.lang
-
This is the common base class of all Java language enumeration types.
- Enum(String, int) - Constructor for class java.lang.Enum
-
Sole constructor.
- enumerate(Thread[]) - Static method in class java.lang.Thread
-
Copies into the specified array every active thread.
- Enumeration<E> - Interface in java.util
-
An object that implements the Enumeration interface generates a series of elements, one at a
time.
- EOFException - Exception in java.io
-
Signals that an end of file or end of stream has been reached unexpectedly during input.
- EOFException() - Constructor for exception java.io.EOFException
-
Constructs an EOFException
with null
as its error detail message.
- EOFException(String) - Constructor for exception java.io.EOFException
-
Constructs an EOFException
with the specified detail message.
- equals(Object) - Method in class ej.ecom.DeviceManagerPermission
-
- equals(Object) - Method in class ej.ecom.io.ConnectionPermission
-
- equals(Object) - Method in class ej.microui.display.DisplayPermission
-
- equals(Object) - Method in class ej.microui.display.Font
-
- equals(Object) - Method in class ej.microui.display.FontPermission
-
- equals(Object) - Method in class ej.microui.display.ImagePermission
-
- equals(Object) - Method in class ej.microui.event.EventPermission
-
- equals(Object) - Method in class ej.microui.MicroUIPermission
-
- equals(Object) - Method in class java.io.File
-
Tests this abstract pathname for equality with the given object.
- equals(Object) - Method in class java.io.FilePermission
-
Checks two FilePermission objects for equality.
- equals(Object) - Method in interface java.lang.annotation.Annotation
-
Returns true if the specified object represents an annotation that is logically equivalent to
this one.
- equals(Object) - Method in class java.lang.Boolean
-
Returns true
if and only if the argument is not null
and is a Boolean
object that represents the same boolean
value as this object.
- equals(Object) - Method in class java.lang.Byte
-
Compares this object to the specified object.
- equals(Object) - Method in class java.lang.Character
-
Compares this object against the specified object.
- equals(Object) - Method in class java.lang.Double
-
Compares this object against the specified object.
- equals(Object) - Method in class java.lang.Enum
-
Returns true if the specified object is equal to this enum constant.
- equals(Object) - Method in class java.lang.Float
-
Compares this object against the specified object.
- equals(Object) - Method in class java.lang.Integer
-
Compares this object to the specified object.
- equals(Object) - Method in class java.lang.Long
-
Compares this object to the specified object.
- equals(Object) - Method in class java.lang.Object
-
Indicates whether some other object is "equal to" this one.
- equals(Object) - Method in class java.lang.Short
-
Compares this object to the specified object.
- equals(Object) - Method in class java.lang.StackTraceElement
-
Returns true if the specified object is another StackTraceElement
instance representing
the same execution point as this instance.
- equals(Object) - Method in class java.lang.String
-
Compares this string to the specified object.
- equals(Object) - Method in class java.net.Inet4Address
-
Compares this object against the specified object.
- equals(Object) - Method in class java.net.Inet6Address
-
Compares this object against the specified object.
- equals(Object) - Method in class java.net.InetAddress
-
Compares this object against the specified object.
- equals(Object) - Method in class java.net.InetSocketAddress
-
Compares this object against the specified object.
- equals(Object) - Method in class java.net.InterfaceAddress
-
Compares this object against the specified object.
- equals(Object) - Method in class java.net.NetworkInterface
-
Compares this object against the specified object.
- equals(Object) - Method in class java.net.SocketPermission
-
Checks two SocketPermission objects for equality.
- equals(Object) - Method in class java.security.BasicPermission
-
Checks two BasicPermission objects for equality.
- equals(Object) - Method in class java.security.Permission
-
Checks two Permission objects for equality.
- equals(Object) - Method in interface java.security.Principal
-
Compares this principal to the specified object.
- equals(Object) - Method in class java.util.AbstractList
-
Compares the specified object with this list for equality.
- equals(Object) - Method in class java.util.AbstractMap
-
Compares the specified object with this map for equality.
- equals(Object) - Method in class java.util.AbstractMap.SimpleEntry
-
Compares the specified object with this entry for equality.
- equals(Object) - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Compares the specified object with this entry for equality.
- equals(Object) - Method in class java.util.AbstractSet
-
Compares the specified object with this set for equality.
- equals(Object) - Method in class java.util.Calendar
-
Compares this Calendar
to the specified Object
.
- equals(Object) - Method in interface java.util.Collection
-
Compares the specified object with this collection for equality.
- equals(Object) - Method in interface java.util.Comparator
-
Indicates whether some other object is "equal to" this comparator.
- equals(Object) - Method in class java.util.Date
-
Compares two dates for equality.
- equals(Object) - Method in class java.util.Hashtable
-
Compares the specified Object with this Map for equality, as per the definition in the Map
interface.
- equals(Object) - Method in interface java.util.List
-
Compares the specified object with this list for equality.
- equals(Object) - Method in interface java.util.Map.Entry
-
Compares the specified object with this entry for equality.
- equals(Object) - Method in interface java.util.Map
-
Compares the specified object with this map for equality.
- equals(Object) - Method in class java.util.PropertyPermission
-
Checks two PropertyPermission objects for equality.
- equals(Object) - Method in interface java.util.Set
-
Compares the specified object with this set for equality.
- equals(Object) - Method in class java.util.Vector
-
Compares the specified Object with this Vector for equality.
- equals(Object) - Method in class javax.crypto.spec.SecretKeySpec
-
Tests for equality between the specified object and this object.
- equals(Object) - Method in class javax.security.auth.x500.X500Principal
-
Compares the specified Object
with this X500Principal
for equality.
- equalsIgnoreCase(String) - Method in class java.lang.String
-
Compares this String
to another String
, ignoring case considerations.
- ERA - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating the era, e.g., AD or BC in the
Julian calendar.
- err - Static variable in class java.lang.System
-
The "standard" error output stream.
- Error - Error in java.lang
-
An Error
is a subclass of Throwable
that indicates serious problems that a
reasonable application should not try to catch.
- Error() - Constructor for error java.lang.Error
-
Constructs a new error with null
as its detail message.
- Error(String) - Constructor for error java.lang.Error
-
Constructs a new error with the specified detail message.
- Error(String, Throwable) - Constructor for error java.lang.Error
-
Constructs a new error with the specified detail message and cause.
- Error(Throwable) - Constructor for error java.lang.Error
-
Constructs a new error with the specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail
message of cause
).
- ESC - Static variable in class ej.microui.event.generator.Command
-
The "escape" command constant.
- ETHIOPIC - Static variable in class ej.microui.display.Font
-
Constant for ethiopic font identifier.
- Event - Class in ej.microui.event
-
MicroUI features int-based events, allowing for a rich event mechanism compatible with scare resources.
- EventGenerator - Class in ej.microui.event
-
Event generators generate int-based events (see
Event
).
- EventGenerator() - Constructor for class ej.microui.event.EventGenerator
-
Creates a new event generator.
- EventGeneratorsHandler - Interface in ej.microui.event.controller
-
Event handler that manages MicroUI events type.
- EventHandler - Interface in ej.microui.util
-
An event handler is intended to receive and handle events.
- EventListener - Interface in java.util
-
A tagging interface that all event listener interfaces must extend.
- EventObject - Class in java.util
-
The root class from which all event state objects shall be derived.
- EventObject(Object) - Constructor for class java.util.EventObject
-
Constructs a prototypical Event.
- EventPermission - Class in ej.microui.event
-
- EventPermission(EventGenerator) - Constructor for class ej.microui.event.EventPermission
-
Creates a permission for events generated by the given event generator with null
as name.
- eventReceived(int) - Method in class ej.microui.event.generator.GenericEventGenerator
-
Called by MicroUI framework when a custom event has been received from native world.
- eventsReceived(int[]) - Method in class ej.microui.event.generator.GenericEventGenerator
-
Called by MicroUI framework when a custom event has been received from native world.
- Exception - Exception in java.lang
-
The class Exception
and its subclasses are a form of Throwable
that indicates
conditions that a reasonable application might want to catch.
- Exception() - Constructor for exception java.lang.Exception
-
Constructs a new exception with null
as its detail message.
- Exception(String) - Constructor for exception java.lang.Exception
-
Constructs a new exception with the specified detail message.
- Exception(String, Throwable) - Constructor for exception java.lang.Exception
-
Constructs a new exception with the specified detail message and cause.
- Exception(Throwable) - Constructor for exception java.lang.Exception
-
Constructs a new exception with the specified cause and a detail message of
(cause==null ? null : cause.toString()) (which typically contains the class and detail
message of cause).
- ExceptionInInitializerError - Error in java.lang
-
Signals that an unexpected exception has occurred in a static initializer.
- ExceptionInInitializerError() - Constructor for error java.lang.ExceptionInInitializerError
-
Constructs an ExceptionInInitializerError
with null
as its detail
message string and with no saved throwable object.
- ExceptionInInitializerError(String) - Constructor for error java.lang.ExceptionInInitializerError
-
Constructs an ExceptionInInitializerError with the specified detail message string.
- ExceptionInInitializerError(Throwable) - Constructor for error java.lang.ExceptionInInitializerError
-
- exists() - Method in class java.io.File
-
Tests whether the file or directory denoted by this abstract pathname
exists.
- exit() - Static method in class ej.kf.Kernel
-
Exits from Kernel mode: the current thread context is restored to the owner of the caller of the method (which can remain the Kernel).
- EXIT - Static variable in class ej.microui.event.generator.Command
-
The "exit" command constant.
- exit(int) - Method in class java.lang.Runtime
-
Terminates the currently running Java virtual machine by initiating its shutdown sequence.
- exit(int) - Static method in class java.lang.System
-
Terminates the currently running Java Virtual Machine.
- EXITED - Static variable in class ej.microui.event.generator.Pointer
-
The "exited" action.
- exp(double) - Static method in class ej.bon.XMath
-
Returns Euler's number e raised to the power of a double value.
- exp(double) - Static method in class java.lang.Math
-
Returns Euler's number e raised to the power of a double
value.
- ExplicitFlush - Class in ej.microui.display
-
An ExplicitFlush
is a GraphicsContext
where flushing data to the screen must be done
explicitly by the application.
- expm1(double) - Static method in class java.lang.Math
-
Returns ex -1.
- EXTENDED - Static variable in interface ej.bluetooth.BluetoothProperties
-
Indicates that additional properties are defined in the Characteristic Extended Properties descriptor.
- gc() - Method in class java.lang.Runtime
-
Runs the garbage collector.
- gc() - Static method in class java.lang.System
-
Runs the garbage collector.
- GeneralSecurityException - Exception in java.security
-
The GeneralSecurityException
class is a generic
security exception class that provides type safety for all the
security-related exception classes that extend from it.
- GeneralSecurityException() - Constructor for exception java.security.GeneralSecurityException
-
Constructs a GeneralSecurityException with no detail message.
- GeneralSecurityException(String) - Constructor for exception java.security.GeneralSecurityException
-
Constructs a GeneralSecurityException with the specified detail
message.
- GeneralSecurityException(String, Throwable) - Constructor for exception java.security.GeneralSecurityException
-
Creates a GeneralSecurityException
with the specified
detail message and cause.
- GeneralSecurityException(Throwable) - Constructor for exception java.security.GeneralSecurityException
-
Creates a GeneralSecurityException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- generateCertificate(InputStream) - Method in class java.security.cert.CertificateFactory
-
Generates a certificate object and initializes it with
the data read from the input stream inStream
.
- generatePrivate(KeySpec) - Method in class java.security.KeyFactory
-
Generates a private key object from the provided key specification (key material).
- GenericDeclaration - Interface in java.lang.reflect
-
This interface is only defined for hierarchy compatibility.
- GenericEventGenerator - Class in ej.microui.event.generator
-
Generic event generator.
- GenericEventGenerator() - Constructor for class ej.microui.event.generator.GenericEventGenerator
-
- GEORGIAN - Static variable in class ej.microui.display.Font
-
Constant for georgian font identifier.
- get(String) - Static method in class ej.bon.Immutables
-
Retrieves the object that match the the given ID in the immutable objects
pool.
- get(int) - Static method in class ej.microui.event.EventGenerator
-
Gets a generator from its id.
- get(Class<E>, int) - Static method in class ej.microui.event.EventGenerator
-
Gets a generator whose class is clazz
from the system pool starting the search from
fromIndex
.
- get(Class<E>) - Static method in class ej.microui.event.EventGenerator
-
Gets all generators of the given type from the system pool in an array.
- get() - Method in class java.lang.ref.Reference
-
Returns this reference object's referent.
- get(int) - Method in class java.util.AbstractList
-
Returns the element at the specified position in this list.
- get(Object) - Method in class java.util.AbstractMap
-
Returns the value to which the specified key is mapped, or null
if this map contains no
mapping for the key.
- get(int) - Method in class java.util.ArrayList
-
Returns the element at the specified position in this list.
- get(int) - Method in class java.util.Calendar
-
Returns the value of the given calendar field.
- get(Object) - Method in class java.util.Dictionary
-
Returns the value to which the key is mapped in this dictionary.
- get(Object) - Method in class java.util.HashMap
-
Returns the value to which the specified key is mapped, or null
if this map contains no
mapping for the key.
- get(Object) - Method in class java.util.Hashtable
-
Returns the value to which the specified key is mapped, or null
if this map contains no
mapping for the key.
- get(int) - Method in interface java.util.List
-
Returns the element at the specified position in this list.
- get(Object) - Method in interface java.util.Map
-
Returns the value to which the specified key is mapped, or null
if this map contains no
mapping for the key.
- get(int) - Method in class java.util.Vector
-
Returns the element at the specified position in this Vector.
- get(Object) - Method in class java.util.WeakHashMap
-
Returns the value to which the specified key is mapped, or null
if this map contains no
mapping for the key.
- getAbsoluteFile() - Method in class java.io.File
-
Returns the absolute form of this abstract pathname.
- getAbsoluteHeight() - Method in class ej.microui.event.generator.Pointer
-
- getAbsolutePath() - Method in class java.io.File
-
Returns the absolute pathname string of this abstract pathname.
- getAbsoluteWidth() - Method in class ej.microui.event.generator.Pointer
-
- getAbsoluteX() - Method in class ej.microui.event.generator.Pointer
-
Returns the last available absolute x coordinate in pointer area
- getAbsoluteY() - Method in class ej.microui.event.generator.Pointer
-
Returns the last available absolute y coordinate in pointer area
- getAction() - Method in class ej.microui.display.transform.ImageFlip
-
- getAction(int) - Static method in class ej.microui.event.generator.Buttons
-
Returns the button's action held by the button event.
- getAction(int) - Method in class ej.microui.event.generator.Keyboard
-
Returns the keyboard action held by the keyboard event.
- getActions() - Method in class ej.ecom.DeviceManagerPermission
-
- getActions() - Method in class ej.ecom.io.ConnectionPermission
-
- getActions() - Method in class ej.microui.display.DisplayPermission
-
- getActions() - Method in class ej.microui.display.FontPermission
-
- getActions() - Method in class ej.microui.display.ImagePermission
-
- getActions() - Method in class ej.microui.event.EventPermission
-
- getActions() - Method in class ej.microui.MicroUIPermission
-
- getActions() - Method in class java.io.FilePermission
-
Returns the "canonical string representation" of the actions.
- getActions() - Method in class java.net.SocketPermission
-
Returns the canonical string representation of the actions.
- getActions() - Method in class java.security.BasicPermission
-
Returns the canonical string representation of the actions, which currently is the empty string
"", since there are no actions for a BasicPermission.
- getActions() - Method in class java.security.Permission
-
Returns the actions as a String.
- getActions() - Method in class java.util.PropertyPermission
-
Returns the "canonical string representation" of the actions.
- getActualMaximum(int) - Method in class java.util.Calendar
-
Returns the maximum value that the specified calendar field could have, given the time value of
this Calendar
.
- getActualMinimum(int) - Method in class java.util.Calendar
-
Returns the minimum value that the specified calendar field could have, given the time value of
this Calendar
.
- getAddress() - Method in class ej.bluetooth.BluetoothDevice
-
Returns the Bluetooth address of this device.
- getAddress() - Method in interface ej.ecom.io.Datagram
-
- getAddress() - Method in class java.net.DatagramPacket
-
Returns the IP address of the machine to which this datagram is being
sent or from which the datagram was received.
- getAddress() - Method in class java.net.Inet4Address
-
Returns the raw IP address of this InetAddress
object.
- getAddress() - Method in class java.net.Inet6Address
-
Returns the raw IP address of this InetAddress
object.
- getAddress() - Method in class java.net.InetAddress
-
Returns the raw IP address of this InetAddress
object.
- getAddress() - Method in class java.net.InetSocketAddress
-
Gets the InetAddress
.
- getAddress() - Method in class java.net.InterfaceAddress
-
Returns an InetAddress
for this address.
- getAlgorithm() - Method in class java.security.KeyFactory
-
Gets the name of the algorithm associated with this KeyFactory
.
- getAlgorithm() - Method in class java.security.MessageDigest
-
Returns a string that identifies the algorithm, independent of
implementation details.
- getAlgorithm() - Method in class java.security.Signature
-
Returns the name of the algorithm for this signature object.
- getAlgorithm() - Method in class javax.crypto.Cipher
-
Returns the algorithm name of this Cipher
object.
- getAlgorithm() - Method in class javax.crypto.Mac
-
Returns the algorithm name of this Mac
object.
- getAlgorithm() - Method in class javax.crypto.spec.SecretKeySpec
-
Returns the name of the algorithm associated with this secret key.
- getAlgorithm() - Method in class javax.net.ssl.KeyManagerFactory
-
Returns the algorithm name of this KeyManagerFactory
object.
- getAlgorithm() - Method in class javax.net.ssl.TrustManagerFactory
-
Returns the algorithm name of this TrustManagerFactory
object.
- getAllAliveThreads() - Method in class ej.kf.Feature
-
Gets a snapshot of all alive threads owned by this Feature (some threads included in the returned array may have been terminated when this method returns, some new threads may have been created when this method returns).
- getAllByName(String) - Static method in class java.net.InetAddress
-
Given the name of a host, returns an array of its IP addresses,
based on the configured name service on the system.
- getAllDisplays() - Static method in class ej.microui.display.Display
-
Returns all available displays.
- getAllFeatureStateListeners() - Static method in class ej.kf.Kernel
-
Returns an array containing all the
FeatureStateListener
that
are notified when the state of a Feature has changed.
- getAllFonts() - Static method in class ej.microui.display.Font
-
Gets an array containing all available DisplayFonts in the system.
- getAllLoadedFeatures() - Static method in class ej.kf.Kernel
-
Returns the set of Features currently loaded.
- getAllocationSize() - Method in class ej.sni.PoolOfLimitedReusableResources
-
Return size of allocated resources (in bytes).
- getAllStackTraces() - Static method in class java.lang.Thread
-
Returns a map of stack traces for all live threads.
- getAlpha(int) - Static method in class ej.microui.display.GraphicsContext
-
Gets the alpha level for the given opacity.
- getAlpha() - Method in class ej.microui.display.transform.AbstractTransform
-
Returns the current opacity.
- getAltitude() - Method in class ej.gnss.GnssManager
-
Return the latest obtained altitude in meters data.
- getAnalogValue(int, int) - Static method in class ej.hal.gpio.GPIO
-
Gets the value of the analog pin (a value between 0
and the
targeted hardware ADC maximum value).
The returned value is undefined when the pin is not configured or
configured as digital pin.
- getAngle() - Method in class ej.microui.display.transform.Rotate
-
Returns the current rotation angle.
- getArchitecture() - Static method in class ej.util.Device
-
Returns the architecture name
- getARGB(int[], int, int, int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Obtains ARGB pixel data from the specified region of this graphics context and stores it in the provided array of
integers.
- getARGB(int[], int, int, int, int, int, int) - Method in class ej.microui.display.Image
-
Obtains ARGB pixel data from the specified region of this image and stores it in the provided array of integers.
- getAssignment(char) - Method in class ej.microui.event.generator.Keypad
-
Gets the complete array of chars associated with the specified key.
- getAudioOutputState() - Method in class ej.audio.AudioPlayer
-
Getter for the current state of the audio output.
- getAvailableIDs() - Static method in class java.util.TimeZone
-
Gets all the available IDs supported.
- getBackgroundColor() - Method in class ej.microui.display.GraphicsContext
-
Gets the current background color.
- getBacklight() - Method in class ej.microui.display.Display
-
Returns the current backlight setting
- getBacklightColor() - Method in class ej.microui.display.Display
-
Returns the current backlight color.
- getBaselinePosition() - Method in class ej.microui.display.Font
-
Gets the distance in pixels from the top of the text to the text's baseline.
- getBaudrate() - Method in interface ej.ecom.io.CommConnection
-
Gets the current configured baudrate.
- getBitLength() - Method in class ej.audio.AudioFile
-
Get bit length attribute.
- getBlockSize() - Method in class javax.crypto.Cipher
-
Returns the block size (in bytes).
- getBoolean(String) - Static method in class ej.bon.Constants
-
Gets a boolean
constant.
- getBoolean(String) - Static method in class java.lang.Boolean
-
Returns true
if and only if the system property named by the argument exists and is equal
to the string "true"
.
- getBPP() - Method in class ej.microui.display.Display
-
Returns the number of bits per pixel of the display.
- getBroadcast() - Method in class java.net.DatagramSocket
-
Tests if SO_BROADCAST is enabled.
- getBroadcast() - Method in class java.net.InterfaceAddress
-
Returns an InetAddress
for the broadcast address
for this InterfaceAddress.
- getBSSID() - Method in class ej.ecom.wifi.AccessPoint
-
Gets the Basic Service Set IDentification (BSSID).
- getBuffer() - Method in class ej.bon.ResourceArray
-
- getButtonID(int) - Static method in class ej.microui.event.generator.Buttons
-
Returns the button's id held by the button event.
- getByAddress(String, byte[], NetworkInterface) - Static method in class java.net.Inet6Address
-
Create an Inet6Address in the exact manner of
InetAddress.getByAddress(String,byte[])
except that the IPv6 scope_id is
set to the value corresponding to the given interface for the address
type specified in
addr
.
- getByAddress(String, byte[], int) - Static method in class java.net.Inet6Address
-
- getByAddress(String, byte[]) - Static method in class java.net.InetAddress
-
Creates an InetAddress based on the provided host name and IP address.
- getByAddress(byte[]) - Static method in class java.net.InetAddress
-
Returns an InetAddress
object given the raw IP address .
- getByIndex(int) - Static method in class java.net.NetworkInterface
-
Get a network interface given its index.
- getByInetAddress(InetAddress) - Static method in class java.net.NetworkInterface
-
Convenience method to search for a network interface that
has the specified Internet Protocol (IP) address bound to
it.
- getByName(String) - Static method in class java.net.InetAddress
-
Determines the IP address of a host, given the host's name.
- getByName(String) - Static method in class java.net.NetworkInterface
-
Searches for the network interface with the specified name.
- getByte(String) - Static method in class ej.bon.Constants
-
Gets a byte
constant.
- getBytes() - Method in class java.lang.String
-
Encodes this String
into a sequence of bytes using the platform's default charset,
storing the result into a new byte array.
- getBytes(String) - Method in class java.lang.String
-
Encodes this String
into a sequence of bytes using the named charset, storing the result
into a new byte array.
- getCanonicalFile() - Method in class java.io.File
-
Returns the canonical form of this abstract pathname.
- getCanonicalHostName() - Method in class java.net.InetAddress
-
Gets the fully qualified domain name for this IP address.
- getCanonicalPath() - Method in class java.io.File
-
Returns the canonical pathname string of this abstract pathname.
- getCapability() - Method in class ej.ecom.wifi.WifiManager
-
Gets the Wi-Fi capability of the platform.
- getCause() - Method in exception java.lang.ClassNotFoundException
-
Returns the cause of this exception (the exception that was raised if an error occurred while
attempting to load the class; otherwise null).
- getCause() - Method in error java.lang.ExceptionInInitializerError
-
Returns the cause of this error (the exception that occurred during a static initialization that
caused this error to be created).
- getCause() - Method in class java.lang.Throwable
-
Returns the cause of this throwable or null
if the cause is nonexistent or unknown.
- getCertificate(String) - Method in class java.security.KeyStore
-
Returns the certificate associated with the given alias.
- getCertificateChain(String) - Method in class java.security.KeyStore
-
Returns the certificate chain associated with the given alias.
- getChannel() - Method in class ej.audio.AudioFile
-
Get audio channel number.
- getChannel() - Method in class ej.ecom.wifi.AccessPoint
-
Gets the channel of this access point.
- getChar(String) - Static method in class ej.bon.Constants
-
Gets a char
constant.
- getChar() - Method in class ej.microui.display.RenderableChar
-
Gets the character to render.
- getCharacteristic() - Method in class ej.bluetooth.BluetoothDescriptor
-
Returns the characteristic to which this descriptor belongs.
- getCharacteristics() - Method in class ej.bluetooth.BluetoothService
-
Returns the list of characteristics of this service.
- getChars(int, int, char[], int) - Method in class java.lang.String
-
Copies characters from this string into the destination character array.
- getChars(int, int, char[], int) - Method in class java.lang.StringBuffer
-
Characters are copied from this sequence into the destination character array dst
.
- getChars(int, int, char[], int) - Method in class java.lang.StringBuilder
-
Characters are copied from this sequence into the destination character array dst
.
- getChildren() - Method in interface ej.ecom.Device
-
Returns the children of this device in the hardware topology.
- getClass(String) - Static method in class ej.bon.Constants
-
- getClass() - Method in class java.lang.Object
-
Returns the runtime class of this Object
.
- getClassName() - Method in class java.lang.StackTraceElement
-
Returns the fully qualified name of the class containing the execution point represented by this
stack trace element.
- getClipHeight() - Method in class ej.microui.display.GraphicsContext
-
Gets the height of the current clipping zone.
- getClipWidth() - Method in class ej.microui.display.GraphicsContext
-
Gets the width of the current clipping zone.
- getClipX() - Method in class ej.microui.display.GraphicsContext
-
Gets the x offset of the current clipping zone, relative to the graphics context's origin.
- getClipY() - Method in class ej.microui.display.GraphicsContext
-
Gets the y offset of the current clipping zone, relative to graphics context's origin.
- getCodec() - Method in class ej.audio.AudioFile
-
Get the attributes representing the audio codec.
- getColor() - Method in class ej.microui.display.GraphicsContext
-
Gets the current color: a 24-bits value interpreted as: 0xRRGGBB
, that is, the eight least
significant bits give the blue color, the next eight bits the green value and the next eight bits the red color.
- getConnectedDevices() - Method in class ej.bluetooth.BluetoothAdapter
-
Returns the list of devices to which this adapter is connected.
- getContextOwner() - Static method in class ej.kf.Kernel
-
Returns the owner of the current thread context.
- getContrast() - Method in class ej.microui.display.Display
-
Returns the contrast of the display.
- getController() - Method in class ej.microui.display.Displayable
-
Gets the displayable controller or null
if none.
- getCurrentFile() - Method in class ej.audio.Playlist
-
Get the file currently selected by index.
- getCurrentSoundTitle() - Method in class ej.audio.AudioPlayer
-
Get the name of the currently selected file in the play list.
- getCurrentValue(int) - Method in class ej.microui.event.generator.States
-
Gets the current value of the given state.
- getData() - Method in interface ej.ecom.io.Datagram
-
- getData(int) - Static method in class ej.microui.event.Event
-
Returns the event's data issued by a generator.
- getData() - Method in class java.net.DatagramPacket
-
Returns the data buffer.
- getDatabase(int) - Static method in class ej.sp.ShieldedPlug
-
Returns the database defined at the given ID.
- getDefault() - Static method in class java.util.TimeZone
-
Gets the default TimeZone
for this host.
- getDefault() - Static method in class javax.net.ServerSocketFactory
-
Returns a copy of the environment's default socket factory.
- getDefault() - Static method in class javax.net.SocketFactory
-
Returns a copy of the environment's default socket factory.
- getDefault() - Static method in class javax.net.ssl.SSLContext
-
Returns the default SSL context.
- getDefault() - Static method in class javax.net.ssl.SSLServerSocketFactory
-
Returns the default SSL server socket factory.
- getDefault() - Static method in class javax.net.ssl.SSLSocketFactory
-
Returns the default SSL socket factory.
- getDefaultAdapter() - Static method in class ej.bluetooth.BluetoothAdapter
-
Returns the default adapter of the system.
- getDefaultAlgorithm() - Static method in class javax.net.ssl.KeyManagerFactory
-
Obtains the default KeyManagerFactory algorithm name.
- getDefaultAlgorithm() - Static method in class javax.net.ssl.TrustManagerFactory
-
Obtains the default TrustManagerFactory algorithm name.
- getDefaultDisplay() - Static method in class ej.microui.display.Display
-
Returns the default display of the system.
- getDefaultFont() - Static method in class ej.microui.display.Font
-
Gets the default font for all Displays.
This method may return null
if no font is declared in the system.
- getDefaultType() - Static method in class java.security.KeyStore
-
Returns the default keystore type as specified by the
keystore.type
security property, or the string
"jks" (acronym for "Java keystore")
if no such property exists.
- getDefaultUncaughtExceptionHandler() - Static method in class ej.bon.Timer
-
Gets the default registered handler for uncaught exceptions.
- getDefaultUncaughtExceptionHandler() - Static method in class java.lang.Thread
-
Returns the default handler invoked when a thread abruptly terminates due to
an uncaught exception.
- getDelay() - Method in class ej.microui.event.generator.Keypad
-
Gets the delay.
- getDescriptor() - Method in interface ej.ecom.Device
-
Returns the device hardware descriptor.
- getDescriptor() - Method in class ej.microui.display.Font
-
Returns the descriptor of the font or null
if no descriptor is available.
- getDescriptors() - Method in class ej.bluetooth.BluetoothCharacteristic
-
Returns the list of descriptors of this characteristic.
- getDevice() - Method in class ej.ecom.RegistrationEvent
-
Returns the registered or unregistered device.
- getDeviceClass() - Method in class ej.ecom.DeviceManagerPermission
-
- getDevices() - Method in class ej.bluetooth.BluetoothAdapter
-
Returns the list of devices known by this adapter.
- getDigestLength() - Method in class java.security.MessageDigest
-
Returns the length of the digest in bytes, or 0 if this operation is
not supported by the provider and the implementation is not cloneable.
- getDigitalValue(int, int) - Static method in class ej.hal.gpio.GPIO
-
Gets the value of the digital pin.
The returned value is undefined when the pin is not configured or
configured as analog pin.
- getDisplay() - Method in class ej.microui.display.Displayable
-
Gets the displayable's display.
- getDisplay() - Method in class ej.microui.display.DisplayPermission
-
Gets the display handled by this permission.
- getDisplay() - Method in class ej.microui.display.FlyingImage
-
Returns the display associated to the FlyingImage
.
- getDisplay() - Method in class ej.microui.display.GraphicsContext
-
Gets the display associated with the GraphicsContext.
- getDisplayable() - Method in class ej.microui.display.Display
-
Returns the current Displayable
object in the Display
.
The value returned by getDisplayable()
may be null
if no Displayable
is
visible.
- getDisplayColor(int) - Method in class ej.microui.display.Display
-
Gets the color that will be displayed if the specified color is requested.
For example, with a monochrome display, this method will return either 0xFFFFFF (white) or 0x000000 (black)
depending on the brightness of the specified color.
- getDisplayColor(int) - Method in class ej.microui.display.GraphicsContext
-
Gets the color that will be displayed if the specified color is requested.
For example, with a monochrome display, this method will return either 0xFFFFFF (white) or 0x000000 (black)
depending on the brightness of the specified color.
- getDisplayName() - Method in class java.net.NetworkInterface
-
Get the display name of this network interface.
- getDNS() - Method in class ej.ecom.network.IPConfiguration
-
Gets the DNS server addresses.
- getDouble(String) - Static method in class ej.bon.Constants
-
Gets a double
constant.
- getDSTSavings() - Method in class java.util.TimeZone
-
Returns the amount of time to be added to local standard time to get local wall clock time.
- getEllipsis() - Method in class ej.microui.display.GraphicsContext
-
Gets whether the truncation mechanism is enabled or not.
- getEncoded() - Method in class java.security.spec.EncodedKeySpec
-
Returns the encoded key.
- getEncoded() - Method in class java.security.spec.PKCS8EncodedKeySpec
-
Returns the key bytes, encoded according to the PKCS #8 standard.
- getEncoded() - Method in class javax.crypto.spec.SecretKeySpec
-
Returns the key material of this secret key.
- getEncoding() - Method in interface ej.ecom.io.ContentConnection
-
- getEncoding() - Method in class java.io.InputStreamReader
-
Returns the name of the character encoding being used by this stream.
- getEncoding() - Method in class java.io.OutputStreamWriter
-
Returns the name of the character encoding being used by this stream.
- getEndCap() - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Returns the current shape end cap.
- getEquivalentSharedInterface(Class<?>, Feature) - Static method in class ej.kf.Kernel
-
Gets the equivalent shared interface in the given target Feature.
- getErrorCode() - Method in exception ej.sni.NativeException
-
- getErrorCode() - Method in exception ej.sni.NativeIOException
-
- getEventGenerator() - Method in class ej.microui.event.EventPermission
-
Gets the event generator handled by this permission.
- getEventHandler() - Method in class ej.microui.event.EventGenerator
-
Gets the generator's event handler.
- getEventSerializer() - Method in class ej.microui.display.Display
-
Returns the display's event serializer or null
.
- getEventType() - Method in class ej.microui.event.EventGenerator
-
Gets the event type associated with the event generator
- getEventType() - Method in class ej.microui.event.generator.Buttons
-
Returns the MicroUI event type for this button event generator.
- getEventType() - Method in class ej.microui.event.generator.Command
-
Gets the event generator's type.
- getEventType() - Method in class ej.microui.event.generator.Keyboard
-
- getEventType() - Method in class ej.microui.event.generator.Keypad
-
- getEventType() - Method in class ej.microui.event.generator.Pointer
-
Gets the event type associated with the event generator.
- getEventType() - Method in class ej.microui.event.generator.States
-
Gets the event type associated with the event generator.
- getException() - Method in exception java.lang.ClassNotFoundException
-
Returns the exception that was raised if an error occurred while attempting to load the class.
- getException() - Method in error java.lang.ExceptionInInitializerError
-
Returns the exception that occurred during a static initialization that caused this error to be
created.
- getExecutionCounter() - Method in class ej.kf.Module
-
Gets the current execution counter, since the last reset.
- getExecutionQuota() - Method in class ej.kf.Module
-
Gets the execution quota.
- getExpectedKernelVersion() - Method in exception ej.kf.IncompatibleFeatureException
-
Get the expected version of the Kernel on which this Feature can be installed
- getExponent(double) - Static method in class java.lang.Math
-
Returns the unbiased exponent used in the representation of a double
.
- getExponent(float) - Static method in class java.lang.Math
-
Returns the unbiased exponent used in the representation of a float
.
- getFactor() - Method in class ej.microui.display.transform.ImageScale
-
- getFactorX() - Method in class ej.microui.display.transform.ImageScale
-
Returns the current scaling X factor.
- getFactorY() - Method in class ej.microui.display.transform.ImageScale
-
Returns the current scaling Y factor.
- getFade() - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Returns the current fade
.
- getFeature() - Method in exception ej.kf.AlreadyLoadedFeatureException
-
Returns the previously loaded
Feature
.
- getFileName() - Method in class java.lang.StackTraceElement
-
Returns the name of the source file containing the execution point represented by this stack
trace element.
- getFirstDayOfWeek() - Method in class java.util.Calendar
-
Gets what the first day of the week is; e.g., SUNDAY
in the U.S.,
MONDAY
in France.
- getFloat(String) - Static method in class ej.bon.Constants
-
Gets a float
constant.
- getFlyingImage() - Method in class ej.microui.event.generator.Pointer
-
- getFont(int, int, int) - Static method in class ej.microui.display.Font
-
Gets a DisplayFont
matching the requested characteristics as close as possible.
- getFont() - Method in class ej.microui.display.GraphicsContext
-
Gets the current font.
- getFont() - Method in class ej.microui.display.RenderableChar
-
Gets the font used to render the character.
- getFont() - Method in class ej.microui.display.RenderableString
-
Gets the font used to draw the string.
- getFormat() - Method in class java.security.spec.EncodedKeySpec
-
Returns the name of the encoding format associated with this key specification.
- getFormat() - Method in class java.security.spec.PKCS8EncodedKeySpec
-
Returns the name of the encoding format associated with this key specification.
- getFormat() - Method in class javax.crypto.spec.SecretKeySpec
-
Returns the name of the encoding format for this secret key.
- getFreeSpace() - Method in class java.io.File
-
Returns the number of unallocated bytes in the partition
named by this abstract path name.
- getGateway() - Method in class ej.ecom.network.IPConfiguration
-
Gets the gateway address.
- getGenerator(int) - Static method in class ej.microui.event.Event
-
Gets a converter out of an event assuming the event has been generated by an
EventGenerator
that has been
previously added to the system pool.
- getGeneratorID(int) - Static method in class ej.microui.event.Event
-
Returns the event's generator id.
- getGraphicsContext() - Method in class ej.microui.display.Image
-
- getGreatestMinimum(int) - Method in class java.util.Calendar
-
Returns the highest minimum value for the given calendar field of this Calendar
instance.
- getGroupID() - Method in class ej.trace.Tracer
-
Gets the group identifier.
- getHardwareAddress() - Method in class java.net.NetworkInterface
-
Returns the hardware address (usually MAC) of the interface if it
has one and if it can be accessed given the current privileges.
- getHeight() - Method in class ej.microui.display.Display
-
Returns the height in pixels of the display screen area available to the application.
- getHeight() - Method in class ej.microui.display.Font
-
Gets the height of a line of text with this font and its y ratio.
- getHeight() - Method in class ej.microui.display.Image
-
Returns the height of the image in pixels.
- getHeight() - Method in interface ej.microui.display.Renderable
-
Gets the area height to render.
- getHeight() - Method in class ej.microui.display.RenderableChar
-
- getHeight() - Method in class ej.microui.display.RenderableString
-
Gets the height of a line of text with this font and its y ratio.
- getHeight() - Method in class ej.microui.event.generator.Pointer
-
- getHostAddress() - Method in class java.net.Inet4Address
-
Returns the IP address string in textual presentation form.
- getHostAddress() - Method in class java.net.Inet6Address
-
Returns the IP address string in textual presentation.
- getHostAddress() - Method in class java.net.InetAddress
-
Returns the IP address string in textual presentation.
- getHostName() - Method in class java.net.InetAddress
-
Gets the host name for this IP address.
- getHostName() - Method in class java.net.InetSocketAddress
-
Gets the hostname
.
- getHostString() - Method in class java.net.InetSocketAddress
-
Returns the hostname, or the String form of the address if it
doesn't have a hostname (it was created using a literal).
- getID() - Method in class ej.microui.event.EventGenerator
-
Gets the generator's unique id.
- getID() - Method in class ej.sp.ShieldedPlug
-
Gets the ID of this database.
- getId() - Static method in class ej.util.Device
-
Returns the device identifier.
- getId() - Method in class java.lang.Thread
-
Returns the identifier of this Thread.
- getID() - Method in class java.util.TimeZone
-
Gets the ID of this time zone.
- getIdentifiers() - Method in class ej.microui.display.Font
-
Gets an array of identifiers supported by the font.
- getIDs() - Method in class ej.sp.ShieldedPlug
-
Gets the list of IDs of the blocks available in this database.
- getImage() - Method in class ej.microui.display.FlyingImage
-
Returns the image associated to the FlyingImage
.
- getImplementedSharedInterface(Class<?>, Class<?>) - Static method in class ej.kf.Kernel
-
Gets the first shared interface implemented by the given class under the hierarchy of topInterface
.
- getIncludedServices() - Method in class ej.bluetooth.BluetoothService
-
Returns the list of services included in this service.
- getIndex() - Method in class java.net.NetworkInterface
-
Returns the index of this network interface.
- getInetAddress() - Method in class java.net.DatagramSocket
-
Returns the address to which this socket is connected.
- getInetAddress() - Method in class java.net.ServerSocket
-
Returns the local address of this server socket.
- getInetAddress() - Method in class java.net.Socket
-
Returns the address to which the socket is connected.
- getInetAddresses() - Method in class java.net.NetworkInterface
-
Convenience method to return an Enumeration with all or a
subset of the InetAddresses bound to this network interface.
- getInputStream() - Method in class java.net.Socket
-
Returns an input stream for this socket.
- getInstance() - Static method in class ej.audio.AudioPlayer
-
- getInstance() - Static method in class ej.ecom.wifi.WifiManager
-
- getInstance() - Static method in class ej.gnss.GnssManager
-
Return the singleton instance of GnssManager.
- getInstance() - Static method in class ej.kf.Kernel
-
Returns the singleton instance representing the Kernel.
- getInstance(String) - Static method in class java.security.cert.CertificateFactory
-
Returns a certificate factory object that implements the
specified certificate type.
- getInstance(String) - Static method in class java.security.KeyFactory
-
Returns a KeyFactory object that converts public/private keys of the specified algorithm.
- getInstance(String) - Static method in class java.security.KeyStore
-
Returns a keystore object of the specified type.
- getInstance(String) - Static method in class java.security.MessageDigest
-
Returns a MessageDigest object that implements the specified digest
algorithm.
- getInstance(String, String) - Static method in class java.security.MessageDigest
-
Returns a MessageDigest object that implements the specified digest
algorithm.
- getInstance(String) - Static method in class java.security.Signature
-
Returns a Signature object that implements the specified signature
algorithm.
- getInstance(String, String) - Static method in class java.security.Signature
-
Returns a Signature object that implements the specified signature
algorithm.
- getInstance() - Static method in class java.util.Calendar
-
Gets a calendar using the default time zone and locale.
- getInstance(TimeZone) - Static method in class java.util.Calendar
-
Gets a calendar using the specified time zone and default locale.
- getInstance(String) - Static method in class javax.crypto.Cipher
-
Returns a Cipher
object that implements the specified
transformation.
- getInstance(String, String) - Static method in class javax.crypto.Cipher
-
Returns a Cipher
object that implements the specified
transformation.
- getInstance(String) - Static method in class javax.crypto.Mac
-
Returns a Mac
object that implements the
specified MAC algorithm.
- getInstance(String, String) - Static method in class javax.crypto.Mac
-
Returns a Mac
object that implements the
specified MAC algorithm.
- getInstance(String) - Static method in class javax.net.ssl.KeyManagerFactory
-
Returns a KeyManagerFactory
object that acts as a
factory for key managers.
- getInstance(String) - Static method in class javax.net.ssl.SSLContext
-
Returns a SSLContext
object that implements the
specified secure socket protocol.
- getInstance(String) - Static method in class javax.net.ssl.TrustManagerFactory
-
Returns a TrustManagerFactory
object that acts as a
factory for trust managers.
- getInt(String) - Static method in class ej.bon.Constants
-
Gets an int
constant.
- getInteger(String) - Static method in class java.lang.Integer
-
Determines the integer value of the system property with the specified name.
- getInteger(String, int) - Static method in class java.lang.Integer
-
Determines the integer value of the system property with the specified name.
- getInteger(String, Integer) - Static method in class java.lang.Integer
-
Returns the integer value of the system property with the specified name.
- getInterface() - Method in class java.net.MulticastSocket
-
Retrieve the address of the network interface used for
multicast packets.
- getInterfaceAddresses() - Method in class java.net.NetworkInterface
-
Get a List of all or a subset of the InterfaceAddresses
of this network interface.
- getIP() - Method in class ej.ecom.network.IPConfiguration
-
Gets the IP address.
- getIPConfiguration(NetworkInterface) - Static method in class ej.ecom.network.NetworkInterfaceManager
-
Gets the current IP configuration of a network interface.
- getIV() - Method in class javax.crypto.Cipher
-
Returns the initialization vector (IV) in a new buffer.
- getIV() - Method in class javax.crypto.spec.IvParameterSpec
-
Returns the initialization vector (IV).
- getJoined() - Method in class ej.ecom.wifi.WifiManager
-
Gets the currently joined Wi-Fi access point.
- getKeepAlive() - Method in class java.net.Socket
-
- getKey(String, char[]) - Method in class java.security.KeyStore
-
Returns the key associated with the given alias, using the given
password to recover it.
- getKey() - Method in class java.util.AbstractMap.SimpleEntry
-
Returns the key corresponding to this entry.
- getKey() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Returns the key corresponding to this entry.
- getKey() - Method in interface java.util.Map.Entry
-
Returns the key corresponding to this entry.
- getKeyManagers() - Method in class javax.net.ssl.KeyManagerFactory
-
Returns one key manager for each type of key material.
- getLanguage() - Method in class ej.microui.event.generator.Keypad
-
Gets the currently selected language.
- getLatitude() - Method in class ej.gnss.GnssManager
-
Get the latest latitude data in degree.
- getLeastMaximum(int) - Method in class java.util.Calendar
-
Returns the lowest maximum value for the given calendar field of this Calendar
instance.
- getLedIntensity(int) - Static method in class ej.microui.led.Leds
-
Gets the intensity of the specified LED.
- getLength() - Method in interface ej.ecom.io.BitsInput
-
Returns the data length in bits (1 to 32 bits).
- getLength() - Method in interface ej.ecom.io.BitsOutput
-
Returns the data length in bits (1 to 32 bits).
- getLength() - Method in interface ej.ecom.io.ContentConnection
-
- getLength() - Method in interface ej.ecom.io.Datagram
-
- getLength(int) - Method in class ej.sp.ShieldedPlug
-
Returns the length of the block with the given ID.
- getLength() - Method in class java.net.DatagramPacket
-
Returns the length of the data to be sent or the length of the
data received.
- getLineNumber() - Method in class java.lang.StackTraceElement
-
Returns the line number of the source line containing the execution point represented by this
stack trace element.
- getList(Class<E>) - Static method in class ej.microui.event.EventGenerator
-
Gets all generators of the given type from the system pool in a list.
- getLocalAddress() - Method in class java.net.DatagramSocket
-
Gets the local address to which the socket is bound.
- getLocalAddress() - Method in class java.net.Socket
-
Gets the local address to which the socket is bound.
- getLocalHost() - Static method in class java.net.InetAddress
-
Returns the address of the local host.
- getLocalizedMessage() - Method in class java.lang.Throwable
-
Creates a localized description of this throwable.
- getLocalPort() - Method in class java.net.DatagramSocket
-
Returns the port number on the local host to which this socket
is bound.
- getLocalPort() - Method in class java.net.ServerSocket
-
Returns the port number on which this socket is listening.
- getLocalPort() - Method in class java.net.Socket
-
Returns the local port number to which this socket is bound.
- getLocalSocketAddress() - Method in class java.net.DatagramSocket
-
Returns the address of the endpoint this socket is bound to.
- getLocalSocketAddress() - Method in class java.net.ServerSocket
-
Returns the address of the endpoint this socket is bound to.
- getLocalSocketAddress() - Method in class java.net.Socket
-
Returns the address of the endpoint this socket is bound to.
- getLong(String) - Static method in class ej.bon.Constants
-
Gets a long
constant.
- getLong(String) - Static method in class java.lang.Long
-
Determines the long
value of the system property with the specified name.
- getLong(String, long) - Static method in class java.lang.Long
-
Determines the long
value of the system property with the specified name.
- getLong(String, Long) - Static method in class java.lang.Long
-
Returns the long
value of the system property with the specified name.
- getLongitude() - Method in class ej.gnss.GnssManager
-
Return the latest obtained longitude data in degree.
- getLoopbackAddress() - Static method in class java.net.InetAddress
-
Returns the loopback address.
- getLoopbackMode() - Method in class java.net.MulticastSocket
-
Get the setting for local loopback of multicast datagrams.
- getMacLength() - Method in class javax.crypto.Mac
-
Returns the length of the MAC in bytes.
- getMaxAllowedKeyLength(String) - Static method in class javax.crypto.Cipher
-
Returns the maximum key length for the specified transformation
according to the installed JCE jurisdiction policy files.
- getMaxAllowedParameterSpec(String) - Static method in class javax.crypto.Cipher
-
Returns an AlgorithmParameterSpec object which contains
the maximum cipher parameter value according to the
jurisdiction policy file.
- getMaximum(int) - Method in class java.util.Calendar
-
Returns the maximum value for the given calendar field of this Calendar
instance.
- getMaximumLength() - Method in interface ej.ecom.io.DatagramConnection
-
- getMaxTasks(int) - Method in class ej.sp.ShieldedPlug
-
Gets the maximum number of tasks that can wait at the same time on the block defined with the given ID.
- getMessage() - Method in exception ej.sni.NativeException
-
- getMessage() - Method in exception ej.sni.NativeIOException
-
- getMessage() - Method in class java.lang.Throwable
-
Returns the detail message string of this throwable.
- getMethodName() - Method in class java.lang.StackTraceElement
-
Returns the name of the method containing the execution point represented by this stack trace
element.
- getMinimalDaysInFirstWeek() - Method in class java.util.Calendar
-
Gets what the minimal days required in the first week of the year are; e.g., if the first week is
defined as one that contains the first day of the first month of a year, this method returns 1.
- getMinimum(int) - Method in class java.util.Calendar
-
Returns the minimum value for the given calendar field of this Calendar
instance.
- getMode() - Method in class ej.microui.event.generator.Keypad
-
Gets the mode.
- getMTU() - Method in class java.net.NetworkInterface
-
Returns the Maximum Transmission Unit (MTU) of this interface.
- getName() - Method in class ej.audio.AudioFile
-
- getName() - Method in interface ej.ecom.Device
-
Returns the name of the device.
- getName() - Method in interface ej.ecom.HardwareDescriptor
-
Returns the name of this descriptor.
- getName() - Method in class ej.ecom.wifi.SoftAPConfiguration
-
Gets SoftAP name.
- getName() - Method in class ej.kf.Kernel
-
Gets the name of this module.
- getName() - Method in class ej.kf.Module
-
Gets the name of this module.
- getName() - Method in class java.io.File
-
Returns the name of the file or directory denoted by this abstract
pathname.
- getName() - Method in class java.lang.Class
-
Returns the name of the entity (class, interface, array class, primitive type, or void)
represented by this Class
object, as a String
.
- getName() - Method in class java.lang.Package
-
Return the name of this package.
- getName() - Method in class java.lang.Thread
-
Returns this thread's name.
- getName() - Method in class java.net.NetworkInterface
-
Get the name of this network interface.
- getName() - Method in class java.security.Permission
-
Returns the name of this Permission.
- getName() - Method in class javax.security.auth.x500.X500Principal
-
Returns a string representation of the X.500 distinguished name.
- getNeedClientAuth() - Method in class javax.net.ssl.SSLServerSocket
-
Returns true if client authentication will be required on newly
accept
ed server-mode SSLSocket
s.
- getNeedClientAuth() - Method in class javax.net.ssl.SSLSocket
-
Returns true if the socket will require client authentication.
- getNetmask() - Method in class ej.ecom.network.IPConfiguration
-
Gets the netmask.
- getNetworkInterface() - Method in class java.net.MulticastSocket
-
Get the multicast network interface set.
- getNetworkInterfaces() - Static method in class java.net.NetworkInterface
-
Returns all the interfaces on this machine.
- getNetworkPrefixLength() - Method in class java.net.InterfaceAddress
-
Returns the network prefix length for this address.
- getNewExplicitFlush() - Method in class ej.microui.display.Display
-
Returns a new ExplicitFlush
which works on the same system screen as this display.
- getNewGraphicsContext() - Method in class ej.microui.display.Display
-
Returns a new GraphicsContext
which works on the same system screen as this display.
- getNextChar(int) - Method in class ej.microui.event.generator.Keyboard
-
Gets the next character associated with the specified event.
- getNominalLength() - Method in interface ej.ecom.io.DatagramConnection
-
- getNumberOfAlphaLevels() - Method in class ej.microui.display.Display
-
Gets the number of alpha transparency levels supported by the implementation.
The minimum possible is 2, which represents full transparency and full opacity with no blending.
- getNumberOfColors() - Method in class ej.microui.display.Display
-
Gets the number of colors that can be represented on the device.
Note that the number of colors for a black and white display is 2.
- getNumberOfLeds() - Static method in class ej.microui.led.Leds
-
Returns the available number of LEDs.
- getNumberOfStates() - Method in class ej.microui.event.generator.States
-
Gets the number of states managed by this instance.
- getNumberOfValues(int) - Method in class ej.microui.event.generator.States
-
Gets the total number of values for the given state.
- getOffset() - Method in interface ej.ecom.io.Datagram
-
- getOffset() - Method in class java.net.DatagramPacket
-
Returns the offset of the data to be sent or the offset of the data
received.
- getOffset(int, int, int, int, int, int) - Method in class java.util.TimeZone
-
Gets the time zone offset, for current date, modified in case of daylight savings.
- getOffset(long) - Method in class java.util.TimeZone
-
Returns the offset of this time zone from UTC at the specified date.
- getOOBInline() - Method in class java.net.Socket
-
- getOption(int) - Method in interface java.net.SocketOptions
-
Fetch the value of an option.
- getOutputSize(int) - Method in class javax.crypto.Cipher
-
Returns the length in bytes that an output buffer would need to be in
order to hold the result of the next update
or
doFinal
operation, given the input length
inputLen
(in bytes).
- getOutputStream() - Method in class java.net.Socket
-
Returns an output stream for this socket.
- getOwner(Object) - Static method in class ej.kf.Kernel
-
Returns the owner of the given
Object
.
- getPackage() - Method in class java.lang.Class
-
Gets the package for this class.
- getParent() - Method in interface ej.ecom.Device
-
Returns the parent of this device in the hardware topology.
- getParent() - Method in class java.io.File
-
Returns the pathname string of this abstract pathname's parent, or
null
if this pathname does not name a parent directory.
- getParentFile() - Method in class java.io.File
-
Returns the abstract pathname of this abstract pathname's parent,
or null
if this pathname does not name a parent
directory.
- getPassphrase() - Method in class ej.ecom.wifi.SoftAPConfiguration
-
Gets SoftAP passphrase.
- getPath() - Method in class java.io.File
-
Converts this abstract pathname into a pathname string.
- getPlatformEndianness() - Static method in class ej.bon.ByteArray
-
Gets whether the platform is in big endian or little endian.
- getPort() - Method in class java.net.DatagramPacket
-
Returns the port number on the remote host to which this datagram is
being sent or from which the datagram was received.
- getPort() - Method in class java.net.DatagramSocket
-
Returns the port number to which this socket is connected.
- getPort() - Method in class java.net.InetSocketAddress
-
Gets the port number.
- getPort() - Method in class java.net.Socket
-
Returns the remote port number to which this socket is connected.
- getPriority() - Method in class java.lang.Thread
-
Returns this thread's priority.
- getProperties() - Method in class ej.bluetooth.BluetoothCharacteristic
-
Returns the properties of this characteristic.
- getProperty(String) - Method in interface ej.ecom.HardwareDescriptor
-
Returns the value of the given property.
- getProperty(String) - Static method in class java.lang.System
-
Gets the system property indicated by the specified key.
- getProperty(String, String) - Static method in class java.lang.System
-
Gets the system property indicated by the specified key.
- getPropertyNames() - Method in interface ej.ecom.HardwareDescriptor
-
Returns a snapshot of available properties names for this descriptor.
- getPropertyValues() - Method in interface ej.ecom.HardwareDescriptor
-
Returns a snapshot of available properties values for this descriptor.
- getProtocol() - Method in class javax.net.ssl.SSLContext
-
Returns the protocol name of this SSLContext
object.
- getProvider() - Method in class ej.kf.Module
-
Gets the identification of this module provider.
- getRawOffset() - Method in class java.util.TimeZone
-
Returns the amount of time in milliseconds to add to UTC to get standard time in this time zone.
- getReader(int) - Method in class ej.sp.ShieldedPlug
-
Gets the
SPReader
used to de-serialize objects from the block with the given ID.
If no
SPReader
is defined for the block,
null
is returned.
- getReceiveBufferSize() - Method in class java.net.DatagramSocket
-
Get value of the SO_RCVBUF option for this DatagramSocket
, that is the
buffer size used by the platform for input on this DatagramSocket
.
- getReceiveBufferSize() - Method in class java.net.ServerSocket
-
Gets the value of the
SO_RCVBUF
option
for this
ServerSocket
, that is the proposed buffer size that
will be used for Sockets accepted from this
ServerSocket
.
- getReceiveBufferSize() - Method in class java.net.Socket
-
Gets the value of the
SO_RCVBUF
option
for this
Socket
, that is the buffer size used by the platform
for input on this
Socket
.
- getReference() - Method in class ej.kf.Proxy
-
Returns the reference managed by this
Proxy
.
- getRemoteSocketAddress() - Method in class java.net.DatagramSocket
-
Returns the address of the endpoint this socket is connected to, or
null
if it is unconnected.
- getRemoteSocketAddress() - Method in class java.net.Socket
-
Returns the address of the endpoint this socket is connected to, or
null
if it is unconnected.
- getResourceAsStream(String) - Method in class java.lang.Class
-
Finds a resource with a given name.
- getReuseAddress() - Method in class java.net.DatagramSocket
-
Tests if SO_REUSEADDR is enabled.
- getReuseAddress() - Method in class java.net.ServerSocket
-
- getReuseAddress() - Method in class java.net.Socket
-
- getRotationX() - Method in class ej.microui.display.transform.Rotate
-
Returns the current X coordinate.
- getRotationY() - Method in class ej.microui.display.transform.Rotate
-
Returns the current Y coordinate.
- getRSSI() - Method in class ej.ecom.wifi.AccessPoint
-
Gets the Received Signal Strength Identification (RSSI) of this access point.
- getRuntime() - Static method in class java.lang.Runtime
-
Returns the runtime object associated with the current Java application.
- getSamplingRate() - Method in class ej.audio.AudioFile
-
Get sampling rate.
- getScopedInterface() - Method in class java.net.Inet6Address
-
Returns the scoped interface, if this instance was created with
with a scoped interface.
- getScopeId() - Method in class java.net.Inet6Address
-
Returns the numeric scopeId, if this instance is associated with
an interface.
- getScreenshot() - Method in class ej.microui.display.Display
-
Creates an image with the full content of the display.
- getScreenshot(int, int, int, int) - Method in class ej.microui.display.Display
-
Creates an image with the content of the display region specified thanks the given rectangle.
- getSecurityManager() - Static method in class java.lang.System
-
Gets the system security interface.
- getSecurityMode() - Method in class ej.ecom.wifi.AccessPoint
-
- getSecurityMode() - Method in class ej.ecom.wifi.SoftAPConfiguration
-
Gets SoftAP security mode.
- getSendBufferSize() - Method in class java.net.DatagramSocket
-
Get value of the SO_SNDBUF option for this DatagramSocket
, that is the
buffer size used by the platform for output on this DatagramSocket
.
- getSendBufferSize() - Method in class java.net.Socket
-
Get value of the
SO_SNDBUF
option
for this
Socket
, that is the buffer size used by the platform
for output on this
Socket
.
- getServerSocketFactory() - Method in class javax.net.ssl.SSLContext
-
Returns a ServerSocketFactory
object for
this context.
- getService() - Method in class ej.bluetooth.BluetoothAttribute
-
Returns the service to which this attribute belongs.
- getServices() - Method in class ej.bluetooth.BluetoothAdapter
-
Returns the list of services provided by this adapter.
- getServices() - Method in class ej.bluetooth.BluetoothDevice
-
Returns the list of services provided by this device.
- getSharedInterface(Class<?>, Class<?>, Feature) - Static method in class ej.kf.Kernel
-
From a shared interface, gets the closest shared interface in the given target Feature.
- getShort(String) - Static method in class ej.bon.Constants
-
Gets a short
constant.
- getSimpleName() - Method in class java.lang.Class
-
Returns the simple name of the underlying class as given in the source code.
- getSize() - Method in class ej.sp.ShieldedPlug
-
Gets the number of blocks of this database.
- getSocketAddress() - Method in class java.net.DatagramPacket
-
Gets the SocketAddress (usually IP address + port number) of the remote
host that this packet is being sent to or is coming from.
- getSocketFactory() - Method in class javax.net.ssl.SSLContext
-
Returns a SocketFactory
object for this
context.
- getSoLinger() - Method in class java.net.Socket
-
- getSoTimeout() - Method in class java.net.DatagramSocket
-
Retrieve setting for SO_TIMEOUT.
- getSoTimeout() - Method in class java.net.ServerSocket
-
- getSoTimeout() - Method in class java.net.Socket
-
- getSource() - Method in class java.util.EventObject
-
The object on which the Event initially occurred.
- getSSID() - Method in class ej.ecom.wifi.AccessPoint
-
Gets the Service Set IDentification (SSID) of the network.
- getSSID() - Method in class ej.ecom.wifi.SoftAPConfiguration
-
Gets SoftAP SSID.
- getStackTrace() - Method in class java.lang.Thread
-
Returns an array of stack trace elements representing the stack dump of this thread.
- getStackTrace() - Method in class java.lang.Throwable
-
- getStartCap() - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Returns the current shape start cap.
- getState() - Method in class ej.kf.Feature
-
Returns the current Feature state.
- getState() - Method in class java.lang.Thread
-
Returns the state of this thread.
- getStateID(int) - Static method in class ej.microui.event.generator.States
-
Gets the state's ID held by the state event.
- getStateValue(int) - Static method in class ej.microui.event.generator.States
-
Gets the state's value held by the state event.
- getString(String) - Static method in class ej.bon.Constants
-
- getString() - Method in class ej.microui.display.RenderableString
-
Gets the string to draw.
- getStrokeStyle() - Method in class ej.microui.display.GraphicsContext
-
- getStyle() - Method in class ej.microui.display.Font
-
Gets the style of the font.
The returned value may only be a combination of the following style constants: STYLE_BOLD
,
SYTLE_ITALIC
, STYLE_UNDERLINED
or STYLE_PLAIN
.
- getSuperclass() - Method in class java.lang.Class
-
Returns the Class
representing the superclass of the entity (class, interface, primitive
type or void) represented by this Class
.
- getSupportedLanguages() - Method in class ej.microui.event.generator.Keypad
-
Gets the supported languages for this keypad.
- getSuppressed() - Method in class java.lang.Throwable
-
Returns an array containing all of the exceptions that were suppressed, typically by the
try
-with-resources statement, in order to deliver this exception.
- getTcpNoDelay() - Method in class java.net.Socket
-
- getThickness() - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Returns the current thickness
.
- getThickness() - Method in class ej.microui.display.shape.ThickShapes
-
Returns the current thickness
.
- getTime() - Method in class ej.gnss.GnssManager
-
Get the epoch time UTC.
- getTime() - Method in class java.util.Calendar
-
Returns a
Date
object representing this
Calendar
's time value
(millisecond offset from the
Epoch").
- getTime() - Method in class java.util.Date
-
Returns the number of milliseconds since January 1, 1970, 00:00:00 GMT represented by this
Date object.
- getTimeInMillis() - Method in class java.util.Calendar
-
Returns this Calendar's time value in milliseconds.
- getTimeToLive() - Method in class java.net.MulticastSocket
-
Get the default time-to-live for multicast packets sent out on
the socket.
- getTimeZone() - Method in class java.util.Calendar
-
Gets the time zone.
- getTimeZone(String) - Static method in class java.util.TimeZone
-
Gets the TimeZone
for the given ID.
- getTotalSpace() - Method in class java.io.File
-
Returns the size of the partition
named by this
abstract pathname.
- getTrafficClass() - Method in class java.net.DatagramSocket
-
Gets traffic class or type-of-service in the IP datagram
header for packets sent from this DatagramSocket.
- getTrafficClass() - Method in class java.net.Socket
-
Gets traffic class or type-of-service in the IP header
for packets sent from this Socket
- getTranslateX() - Method in class ej.microui.display.GraphicsContext
-
Gets the x coordinate of the translated origin of the graphics context.
- getTranslateX() - Method in class ej.microui.display.transform.AbstractTransform
-
Returns the current x translation.
- getTranslateY() - Method in class ej.microui.display.GraphicsContext
-
Gets the y coordinate of the translated origin of the graphics context.
- getTranslateY() - Method in class ej.microui.display.transform.AbstractTransform
-
Returns the current y translation.
- getTrustManagers() - Method in class javax.net.ssl.TrustManagerFactory
-
Returns one trust manager for each type of trust material.
- getType() - Method in class ej.bluetooth.BluetoothService
-
Returns the type of this service.
- getType() - Method in interface ej.ecom.io.ContentConnection
-
- getType() - Method in interface ej.kf.Converter
-
Gets the Kernel type managed by this
Converter
.
- getType(int) - Static method in class ej.microui.event.Event
-
Returns the type of an event.
- getType() - Method in class java.security.cert.Certificate
-
Returns the type of this certificate.
- getType() - Method in class java.security.cert.CertificateFactory
-
Returns the name of the certificate type associated with this
certificate factory.
- getType() - Method in class java.security.KeyStore
-
Returns the type of this keystore.
- getUID() - Method in class ej.kf.Module
-
Gets a byte sequence that uniquely identifies the current module.
- getUncaughtExceptionHandler() - Method in class ej.bon.Timer
-
Gets the specific handler for uncaught exceptions on this
Timer
instance.
- getUncaughtExceptionHandler() - Method in class java.lang.Thread
-
Returns the handler invoked when this thread abruptly terminates due to an
uncaught exception.
- getUsableSpace() - Method in class java.io.File
-
Returns the number of bytes available to this virtual machine on the
partition
named by this abstract pathname.
- getUseClientMode() - Method in class javax.net.ssl.SSLServerSocket
-
Returns true if accepted connections will be in SSL client mode.
- getUseClientMode() - Method in class javax.net.ssl.SSLSocket
-
Returns true if the socket is set to use client mode when
handshaking.
- getUuid() - Method in class ej.bluetooth.BluetoothAttribute
-
Returns the UUID of this attribute.
- getUuid() - Method in class ej.bluetooth.BluetoothService
-
Returns the UUID of this service.
- getValue(int) - Method in interface ej.kf.Principal
-
Gets the value of one of the fields.
- getValue() - Method in class java.util.AbstractMap.SimpleEntry
-
Returns the value corresponding to this entry.
- getValue() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Returns the value corresponding to this entry.
- getValue() - Method in interface java.util.Map.Entry
-
Returns the value corresponding to this entry.
- getVelocity() - Method in class ej.gnss.GnssManager
-
Return the latest obtained velocity in m/s data.
- getVersion() - Method in class ej.kf.Module
-
Gets a
String
that represents this module version.
- getVolume() - Method in class ej.audio.AudioPlayer
-
Get the volume value.
- getWidth() - Method in class ej.microui.display.Display
-
Returns the width in pixels of the display screen area available to the application.
- getWidth() - Method in class ej.microui.display.Image
-
Returns the width of the image in pixels.
- getWidth() - Method in interface ej.microui.display.Renderable
-
Gets the area width to render.
- getWidth() - Method in class ej.microui.display.RenderableChar
-
- getWidth() - Method in class ej.microui.display.RenderableString
-
Gets the width of the string with the font.
- getWidth() - Method in class ej.microui.event.generator.Pointer
-
- getWPSCapabilities() - Method in class ej.ecom.wifi.AccessPoint
-
Gets the Wi-Fi Protected Setup (WPS) modes supported by this access point.
- getWriter(int) - Method in class ej.sp.ShieldedPlug
-
Gets the
SPWriter
used to serialize objects into the block with the given ID.
If no
SPWriter
is defined for the block,
null
is returned.
- getX() - Method in class ej.microui.display.FlyingImage
-
Get the x coordinate of the FlyingImage
position
- getX() - Method in class ej.microui.event.generator.Pointer
-
Returns the last available x coordinate in scaled area (after applying any origin offset and the scale factor).
- getXRatio() - Method in class ej.microui.display.Font
-
Gets x ratio.
- getY() - Method in class ej.microui.display.FlyingImage
-
Get the y coordinate of the FlyingImage
position
- getY() - Method in class ej.microui.event.generator.Pointer
-
Returns the last available y coordinate in scaled area (after applying any origin offset and the scale factor).
- getYRatio() - Method in class ej.microui.display.Font
-
Gets y ratio.
- GLAGOLITIC - Static variable in class ej.microui.display.Font
-
Constant for glagolitic font identifier.
- GnssManager - Class in ej.gnss
-
Implementation of the GnssManager function that calls the native function interface
- GnssManager.GnssManagerState - Enum in ej.gnss
-
Enum state machine for GnssManager
- GPIO - Class in ej.hal.gpio
-
This class configures and drives digital or analog pins.
- GPIO() - Constructor for class ej.hal.gpio.GPIO
-
- GPIO.Mode - Enum in ej.hal.gpio
-
Specify the pin mode.
- GraphicsContext - Class in ej.microui.display
-
The GraphicsContext
class offers basic drawing facilities, to render lines, rectangles, polygons, arcs
and text.
GraphicsContext
uses 24-bit RGB color.
- GRAY - Static variable in interface ej.microui.display.Colors
-
The gray RGB color constant.
The value 0x808080
is assigned to GRAY
.
- GREEK - Static variable in class ej.microui.display.Font
-
Constant for greek font identifier.
- GREEN - Static variable in interface ej.microui.display.Colors
-
The green RGB color constant.
The value 0x008000
is assigned to GREEN
.
- Guard - Interface in java.security
-
This interface is only defined for hierarchy compatibility.
- GUJARATI - Static variable in class ej.microui.display.Font
-
Constant for gujarati font identifier.
- GURMUKHI - Static variable in class ej.microui.display.Font
-
Constant for gurmukhi font identifier.
- identityHashCode(Object) - Static method in class java.lang.System
-
Returns the same hash code for the given object as would be returned by the default method
hashCode(), whether or not the given object's class overrides hashCode().
- IEEEremainder(double, double) - Static method in class java.lang.Math
-
Computes the remainder operation on two arguments as prescribed by the IEEE 754 standard.
- IllegalAccessError - Error in java.lang
-
Thrown if an application attempts to access or modify a field, or to call a method that it does
not have access to.
- IllegalAccessError() - Constructor for error java.lang.IllegalAccessError
-
Constructs an IllegalAccessError
with no detail message.
- IllegalAccessError(String) - Constructor for error java.lang.IllegalAccessError
-
Constructs an IllegalAccessError
with the specified detail message.
- IllegalAccessException - Exception in java.lang
-
An IllegalAccessException is thrown when an application tries to reflectively create an instance
(other than an array), set or get a field, or invoke a method, but the currently executing method
does not have access to the definition of the specified class, field, method or constructor.
- IllegalAccessException() - Constructor for exception java.lang.IllegalAccessException
-
Constructs an IllegalAccessException
without a detail message.
- IllegalAccessException(String) - Constructor for exception java.lang.IllegalAccessException
-
Constructs an IllegalAccessException
with a detail message.
- IllegalArgumentException - Exception in java.lang
-
Thrown to indicate that a method has been passed an illegal or inappropriate argument.
- IllegalArgumentException() - Constructor for exception java.lang.IllegalArgumentException
-
Constructs an IllegalArgumentException
with no detail message.
- IllegalArgumentException(String) - Constructor for exception java.lang.IllegalArgumentException
-
Constructs an IllegalArgumentException
with the specified detail message.
- IllegalArgumentException(String, Throwable) - Constructor for exception java.lang.IllegalArgumentException
-
Constructs a new exception with the specified detail message and cause.
- IllegalArgumentException(Throwable) - Constructor for exception java.lang.IllegalArgumentException
-
Constructs a new exception with the specified cause and a detail message of
(cause==null ? null : cause.toString()) (which typically contains the class and detail
message of cause).
- IllegalBlockSizeException - Exception in javax.crypto
-
This exception is thrown when the length of data provided to a block
cipher is incorrect, i.e., does not match the block size of the cipher.
- IllegalBlockSizeException() - Constructor for exception javax.crypto.IllegalBlockSizeException
-
Constructs an IllegalBlockSizeException with no detail message.
- IllegalBlockSizeException(String) - Constructor for exception javax.crypto.IllegalBlockSizeException
-
Constructs an IllegalBlockSizeException with the specified
detail message.
- IllegalMonitorStateException - Exception in java.lang
-
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 exception java.lang.IllegalMonitorStateException
-
Constructs an IllegalMonitorStateException
with no detail message.
- IllegalMonitorStateException(String) - Constructor for exception java.lang.IllegalMonitorStateException
-
Constructs an IllegalMonitorStateException
with the specified detail message.
- IllegalStateException - Exception in ej.bon
-
Signals that a method has been invoked at an illegal or inappropriate time.
- IllegalStateException() - Constructor for exception ej.bon.IllegalStateException
-
Constructs an IllegalStateException with no detail message.
- IllegalStateException(String) - Constructor for exception ej.bon.IllegalStateException
-
Constructs an IllegalStateException with the specified detail message.
- IllegalStateException - Exception in java.lang
-
Signals that a method has been invoked at an illegal or inappropriate time.
- IllegalStateException() - Constructor for exception java.lang.IllegalStateException
-
Constructs an IllegalStateException with no detail message.
- IllegalStateException(String) - Constructor for exception java.lang.IllegalStateException
-
Constructs an IllegalStateException with the specified detail message.
- IllegalStateException(String, Throwable) - Constructor for exception java.lang.IllegalStateException
-
Constructs a new exception with the specified detail message and cause.
- IllegalStateException(Throwable) - Constructor for exception java.lang.IllegalStateException
-
Constructs a new exception with the specified cause and a detail message of
(cause==null ? null : cause.toString()) (which typically contains the class and detail
message of cause).
- IllegalThreadStateException - Exception in java.lang
-
Thrown to indicate that a thread is not in an appropriate state for the requested operation.
- IllegalThreadStateException() - Constructor for exception java.lang.IllegalThreadStateException
-
Constructs an IllegalThreadStateException
with no detail message.
- IllegalThreadStateException(String) - Constructor for exception java.lang.IllegalThreadStateException
-
Constructs an IllegalThreadStateException
with the specified detail message.
- Image - Class in ej.microui.display
-
An Image
object holds graphical display data.
- Image.OutputFormat - Enum in ej.microui.display
-
Specify the format to apply when creating an immutable image.
- ImageCreationException - Exception in ej.microui.display
-
Thrown when an image creation fail.
- ImageCreationException() - Constructor for exception ej.microui.display.ImageCreationException
-
Constructs an ImageCreationException with no detail message.
- ImageCreationException(String) - Constructor for exception ej.microui.display.ImageCreationException
-
Constructs an ImageCreationException with the specified detail message.
- ImageDeformation - Class in ej.microui.display.transform
-
This class holds a context in order to perform a free deformation on images.
- ImageDeformation() - Constructor for class ej.microui.display.transform.ImageDeformation
-
- ImageFlip - Class in ej.microui.display.transform
-
This class holds a context in order to perform a flip on images (0, 90, 180 or 270 degrees).
- ImageFlip() - Constructor for class ej.microui.display.transform.ImageFlip
-
- ImageFlip.Action - Enum in ej.microui.display.transform
-
Specify the flip to apply when drawing an image.
- ImagePermission - Class in ej.microui.display
-
Permission to create an
Image
.
- ImagePermission() - Constructor for class ej.microui.display.ImagePermission
-
Creates an image permission with null
as name.
- ImageRotation - Class in ej.microui.display.transform
-
- ImageRotation() - Constructor for class ej.microui.display.transform.ImageRotation
-
Deprecated.
- ImageScale - Class in ej.microui.display.transform
-
This class holds a context in order to draw images with scaling.
- ImageScale() - Constructor for class ej.microui.display.transform.ImageScale
-
- Immortals - Class in ej.bon
-
This class gives access to the global immortal objects pool.
- Immortals() - Constructor for class ej.bon.Immortals
-
- Immutables - Class in ej.bon
-
This class gives access to the global immutable objects pool.
- Immutables() - Constructor for class ej.bon.Immutables
-
- ImmutablesError - Error in ej.bon
-
Indicates an error accessing immutables data.
- ImmutablesError() - Constructor for error ej.bon.ImmutablesError
-
Constructs an ImmutablesError with no detail message.
- ImmutablesError(String) - Constructor for error ej.bon.ImmutablesError
-
Constructs an ImmutablesError with the specified detail message.
- implies(Permission) - Method in class ej.ecom.DeviceManagerPermission
-
- implies(Permission) - Method in class ej.ecom.io.ConnectionPermission
-
- implies(Permission) - Method in class ej.microui.display.DisplayPermission
-
- implies(Permission) - Method in class ej.microui.display.FontPermission
-
- implies(Permission) - Method in class ej.microui.display.ImagePermission
-
- implies(Permission) - Method in class ej.microui.event.EventPermission
-
- implies(Permission) - Method in class ej.microui.MicroUIPermission
-
- implies(Permission) - Method in class java.io.FilePermission
-
Checks if this FilePermission object "implies" the specified permission.
- implies(Permission) - Method in class java.net.SocketPermission
-
Checks if this socket permission object "implies" the
specified permission.
- implies(Permission) - Method in class java.security.BasicPermission
-
Checks if the specified permission is "implied" by this object.
- implies(Permission) - Method in class java.security.Permission
-
Checks if the specified permission's actions are "implied by" this object's actions.
- implies(Permission) - Method in class java.util.PropertyPermission
-
Checks if this PropertyPermission object "implies" the specified permission.
- in - Variable in class java.io.FilterInputStream
-
The input stream to be filtered.
- IncompatibleClassChangeError - Error in java.lang
-
Thrown when an incompatible class change has occurred to some class definition.
- IncompatibleClassChangeError() - Constructor for error java.lang.IncompatibleClassChangeError
-
Constructs an IncompatibleClassChangeError
with no detail message.
- IncompatibleClassChangeError(String) - Constructor for error java.lang.IncompatibleClassChangeError
-
Constructs an IncompatibleClassChangeError
with the specified detail message.
- IncompatibleFeatureException - Exception in ej.kf
-
This exception is thrown if a Feature being loaded is not compatible with the current Kernel.
- IncompatibleFeatureException() - Constructor for exception ej.kf.IncompatibleFeatureException
-
- 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(String) - Method in class java.lang.StringBuffer
-
Returns the index within this string of the first occurrence of the specified substring.
- indexOf(String, int) - Method in class java.lang.StringBuffer
-
Returns the index within this string of the first occurrence of the specified substring, starting
at the specified index.
- indexOf(String) - Method in class java.lang.StringBuilder
-
Returns the index within this string of the first occurrence of the specified substring.
- indexOf(String, int) - Method in class java.lang.StringBuilder
-
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.AbstractList
-
Returns the index of the first occurrence of the specified element in this list, or -1 if this
list does not contain the element.
- indexOf(Object) - Method in class java.util.ArrayList
-
Returns the index of the first occurrence of the specified element in this list, or -1 if this
list does not contain the element.
- indexOf(Object) - Method in interface java.util.List
-
Returns the index of the first occurrence of the specified element in this list, or -1 if this
list does not contain the element.
- indexOf(Object) - Method in class java.util.Vector
-
Returns the index of the first occurrence of the specified element in this vector, or -1 if this
vector does not contain the element.
- indexOf(Object, int) - Method in class java.util.Vector
-
Returns the index of the first occurrence of the specified element in this vector, searching
forwards from index
, or returns -1 if the element is not found.
- IndexOutOfBoundsException - Exception in java.lang
-
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 exception java.lang.IndexOutOfBoundsException
-
Constructs an IndexOutOfBoundsException
with no detail message.
- IndexOutOfBoundsException(String) - Constructor for exception java.lang.IndexOutOfBoundsException
-
Constructs an IndexOutOfBoundsException
with the specified detail message.
- INDICATE - Static variable in interface ej.bluetooth.BluetoothProperties
-
Indicates that the characteristic supports indications.
- Inet4Address - Class in java.net
-
This class represents an Internet Protocol version 4 (IPv4) address.
- Inet6Address - Class in java.net
-
This class represents an Internet Protocol version 6 (IPv6) address.
- InetAddress - Class in java.net
-
This class represents an Internet Protocol (IP) address.
- InetSocketAddress - Class in java.net
-
This class implements an IP Socket Address (IP address + port number)
It can also be a pair (hostname + port number), in which case an attempt
will be made to resolve the hostname.
- InetSocketAddress(int) - Constructor for class java.net.InetSocketAddress
-
Creates a socket address where the IP address is the wildcard address
and the port number a specified value.
- InetSocketAddress(InetAddress, int) - Constructor for class java.net.InetSocketAddress
-
Creates a socket address from an IP address and a port number.
- InetSocketAddress(String, int) - Constructor for class java.net.InetSocketAddress
-
Creates a socket address from a hostname and a port number.
- INHERITED - Static variable in class ej.microui.display.Font
-
Constant for inherited font identifier.
- Inherited - Annotation Type in java.lang.annotation
-
Indicates that an annotation type is automatically inherited.
- init(int, Key) - Method in class javax.crypto.Cipher
-
Initializes this cipher with a key.
- init(int, Key, SecureRandom) - Method in class javax.crypto.Cipher
-
Initializes this cipher with a key and a source of randomness.
- init(int, Key, AlgorithmParameterSpec) - Method in class javax.crypto.Cipher
-
Initializes this cipher with a key and a set of algorithm
parameters.
- init(int, Key, AlgorithmParameterSpec, SecureRandom) - Method in class javax.crypto.Cipher
-
Initializes this cipher with a key, a set of algorithm
parameters, and a source of randomness.
- init(int, Certificate) - Method in class javax.crypto.Cipher
-
Initializes this cipher with the public key from the given certificate.
- init(int, Certificate, SecureRandom) - Method in class javax.crypto.Cipher
-
Initializes this cipher with the public key from the given certificate
and
a source of randomness.
- init(Key) - Method in class javax.crypto.Mac
-
Initializes this Mac
object with the given key.
- init(Key, AlgorithmParameterSpec) - Method in class javax.crypto.Mac
-
Initializes this Mac
object with the given key and
algorithm parameters.
- init(KeyStore, char[]) - Method in class javax.net.ssl.KeyManagerFactory
-
Initializes this factory with a source of key material.
- init(KeyManager[], TrustManager[], SecureRandom) - Method in class javax.net.ssl.SSLContext
-
Initializes this context.
- init(KeyStore) - Method in class javax.net.ssl.TrustManagerFactory
-
Initializes this factory with a source of certificate
authorities and related trust material.
- initCause(Throwable) - Method in class java.lang.Throwable
-
Initializes the cause of this throwable to the specified value.
- initSign(PrivateKey) - Method in class java.security.Signature
-
Initialize this object for signing.
- initSign(PrivateKey, SecureRandom) - Method in class java.security.Signature
-
Initialize this object for signing.
- initVerify(PublicKey) - Method in class java.security.Signature
-
Initializes this object for verification.
- initVerify(Certificate) - Method in class java.security.Signature
-
Initializes this object for verification, using the public key from
the given certificate.
- InputConnection - Interface in ej.ecom.io
-
- InputStream - Class in java.io
-
This abstract class is the superclass of all classes representing an input stream of bytes.
- InputStream() - Constructor for class java.io.InputStream
-
- InputStreamReader - Class in java.io
-
An InputStreamReader is a bridge from byte streams to character streams: It reads bytes and
decodes them into characters using a specified charset
.
- InputStreamReader(InputStream) - Constructor for class java.io.InputStreamReader
-
Creates an InputStreamReader that uses the default charset.
- InputStreamReader(InputStream, String) - Constructor for class java.io.InputStreamReader
-
Creates an InputStreamReader that uses the named charset.
- insert(int, boolean) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the boolean
argument into this sequence.
- insert(int, char) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the char
argument into this sequence.
- insert(int, char[]) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the char
array argument into this sequence.
- insert(int, char[], int, int) - Method in class java.lang.StringBuffer
-
Inserts the string representation of a subarray of the str
array argument into this
sequence.
- insert(int, CharSequence) - Method in class java.lang.StringBuffer
-
Inserts the specified CharSequence
into this sequence.
- insert(int, CharSequence, int, int) - Method in class java.lang.StringBuffer
-
Inserts a subsequence of the specified CharSequence
into this sequence.
- insert(int, double) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the double
argument into this sequence.
- insert(int, float) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the float
argument into this sequence.
- insert(int, int) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the second int
argument into this sequence.
- insert(int, long) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the long
argument into this sequence.
- insert(int, Object) - Method in class java.lang.StringBuffer
-
Inserts the string representation of the Object
argument into this character sequence.
- insert(int, String) - Method in class java.lang.StringBuffer
-
Inserts the string into this character sequence.
- insert(int, boolean) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the boolean
argument into this sequence.
- insert(int, char) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the char
argument into this sequence.
- insert(int, char[]) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the char
array argument into this sequence.
- insert(int, char[], int, int) - Method in class java.lang.StringBuilder
-
Inserts the string representation of a subarray of the str
array argument into this
sequence.
- insert(int, CharSequence) - Method in class java.lang.StringBuilder
-
Inserts the specified CharSequence
into this sequence.
- insert(int, CharSequence, int, int) - Method in class java.lang.StringBuilder
-
Inserts a subsequence of the specified CharSequence
into this sequence.
- insert(int, double) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the double
argument into this sequence.
- insert(int, float) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the float
argument into this sequence.
- insert(int, int) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the second int
argument into this sequence.
- insert(int, long) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the long
argument into this sequence.
- insert(int, Object) - Method in class java.lang.StringBuilder
-
Inserts the string representation of the Object
argument into this character sequence.
- insert(int, String) - Method in class java.lang.StringBuilder
-
Inserts the string into this character sequence.
- insertElementAt(E, int) - Method in class java.util.Vector
-
Inserts the specified object as a component in this vector at the specified index
.
- install(InputStream) - Static method in class ej.kf.Kernel
-
- InstantiationError - Error in java.lang
-
Thrown when an application tries to use the Java new
construct to instantiate an
abstract class or an interface.
- InstantiationError() - Constructor for error java.lang.InstantiationError
-
Constructs an InstantiationError
with no detail message.
- InstantiationError(String) - Constructor for error java.lang.InstantiationError
-
Constructs an InstantiationError
with the specified detail message.
- InstantiationException - Exception in java.lang
-
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.
- InstantiationException() - Constructor for exception java.lang.InstantiationException
-
Constructs an InstantiationException
with no detail message.
- InstantiationException(String) - Constructor for exception java.lang.InstantiationException
-
Constructs an InstantiationException
with the specified detail message.
- INSUFFICIENT_AUTHENTICATION - Static variable in interface ej.bluetooth.BluetoothStatus
-
Insufficient authentication.
- INSUFFICIENT_AUTHORIZATION - Static variable in interface ej.bluetooth.BluetoothStatus
-
Insufficient authorization.
- INSUFFICIENT_ENCRYPTION - Static variable in interface ej.bluetooth.BluetoothStatus
-
Insufficient encryption.
- INSUFFICIENT_KEY_SIZE - Static variable in interface ej.bluetooth.BluetoothStatus
-
Insufficient key size.
- INSUFFICIENT_RESOURCES - Static variable in interface ej.bluetooth.BluetoothStatus
-
Insufficient resources.
- INT_SIZE - Static variable in class ej.bon.ByteArray
-
The size of an int.
- intBitsToFloat(int) - Static method in class java.lang.Float
-
Returns the float
value corresponding to a given bit representation.
- Integer - Class in java.lang
-
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 specified int
value.
- Integer(String) - Constructor for class java.lang.Integer
-
Constructs a newly allocated Integer
object that represents the int
value
indicated by the String
parameter.
- InterfaceAddress - Class in java.net
-
This class represents a Network Interface address.
- intern() - Method in class java.lang.String
-
Returns a canonical representation for the string object.
- InternalError - Error in java.lang
-
Thrown to indicate some unexpected internal error has occurred in the Java Virtual Machine.
- InternalError() - Constructor for error java.lang.InternalError
-
Constructs an InternalError
with no detail message.
- InternalError(String) - Constructor for error java.lang.InternalError
-
Constructs an InternalError
with the specified detail message.
- internalGet(int) - Method in class java.util.Calendar
-
Returns the value of the given calendar field.
- interrupt() - Method in class java.lang.Thread
-
Interrupts this thread.
- interrupted() - Static method in class java.lang.Thread
-
Tests whether the current thread has been interrupted.
- InterruptedException - Exception in java.lang
-
Thrown when a thread is waiting, sleeping, or otherwise occupied, and the thread is interrupted,
either before or during the activity.
- InterruptedException() - Constructor for exception java.lang.InterruptedException
-
Constructs an InterruptedException
with no detail message.
- InterruptedException(String) - Constructor for exception java.lang.InterruptedException
-
Constructs an InterruptedException
with the specified detail message.
- InterruptedIOException - Exception in java.io
-
Signals that an I/O operation has been interrupted.
- InterruptedIOException() - Constructor for exception java.io.InterruptedIOException
-
Constructs an InterruptedIOException
with null
as its error detail
message.
- InterruptedIOException(String) - Constructor for exception java.io.InterruptedIOException
-
Constructs an InterruptedIOException
with the specified detail message.
- intValue() - Method in class java.lang.Byte
-
Returns the value of this Byte
as an int
.
- intValue() - Method in class java.lang.Double
-
Returns the value of this Double
as an int
(by casting to type int
).
- intValue() - Method in class java.lang.Float
-
Returns the value of this Float
as an int
(by casting to type int
).
- intValue() - Method in class java.lang.Integer
-
Returns the value of this Integer
as an int
.
- intValue() - Method in class java.lang.Long
-
Returns the value of this Long
as an int
.
- intValue() - Method in class java.lang.Number
-
Returns the value of the specified number as an int
.
- intValue() - Method in class java.lang.Short
-
Returns the value of this Short
as an int
.
- INVALID_HANDLE - Static variable in interface ej.bluetooth.BluetoothStatus
-
Invalid handle.
- INVALID_OFFSET - Static variable in interface ej.bluetooth.BluetoothStatus
-
Invalid offset.
- INVALID_PDU - Static variable in interface ej.bluetooth.BluetoothStatus
-
Invalid PDU.
- INVALID_VALUE_LENGTH - Static variable in interface ej.bluetooth.BluetoothStatus
-
Invalid value length.
- InvalidAlgorithmParameterException - Exception in java.security
-
This is the exception for invalid or inappropriate algorithm parameters.
- InvalidAlgorithmParameterException() - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Constructs an InvalidAlgorithmParameterException with no detail
message.
- InvalidAlgorithmParameterException(String) - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Constructs an InvalidAlgorithmParameterException with the specified
detail message.
- InvalidAlgorithmParameterException(String, Throwable) - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Creates a InvalidAlgorithmParameterException
with the
specified detail message and cause.
- InvalidAlgorithmParameterException(Throwable) - Constructor for exception java.security.InvalidAlgorithmParameterException
-
Creates a InvalidAlgorithmParameterException
with the
specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- InvalidFormatException - Exception in ej.kf
-
This exception is thrown when a Feature data being loaded has an invalid format.
- InvalidFormatException() - Constructor for exception ej.kf.InvalidFormatException
-
- InvalidKeyException - Exception in java.security
-
This is the exception for invalid Keys (invalid encoding, wrong
length, uninitialized, etc).
- InvalidKeyException() - Constructor for exception java.security.InvalidKeyException
-
Constructs an InvalidKeyException with no detail message.
- InvalidKeyException(String) - Constructor for exception java.security.InvalidKeyException
-
Constructs an InvalidKeyException with the specified detail
message.
- InvalidKeyException(String, Throwable) - Constructor for exception java.security.InvalidKeyException
-
Creates a InvalidKeyException
with the specified
detail message and cause.
- InvalidKeyException(Throwable) - Constructor for exception java.security.InvalidKeyException
-
Creates a InvalidKeyException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- InvalidKeySpecException - Exception in java.security.spec
-
This is the exception for invalid key specifications.
- InvalidKeySpecException() - Constructor for exception java.security.spec.InvalidKeySpecException
-
Constructs an InvalidKeySpecException with no detail message.
- InvalidKeySpecException(String) - Constructor for exception java.security.spec.InvalidKeySpecException
-
Constructs an InvalidKeySpecException with the specified detail
message.
- InvalidKeySpecException(String, Throwable) - Constructor for exception java.security.spec.InvalidKeySpecException
-
Creates a InvalidKeySpecException
with the specified
detail message and cause.
- InvalidKeySpecException(Throwable) - Constructor for exception java.security.spec.InvalidKeySpecException
-
Creates a InvalidKeySpecException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- InvalidParameterSpecException - Exception in java.security.spec
-
This is the exception for invalid parameter specifications.
- InvalidParameterSpecException() - Constructor for exception java.security.spec.InvalidParameterSpecException
-
Constructs an InvalidParameterSpecException with no detail message.
- InvalidParameterSpecException(String) - Constructor for exception java.security.spec.InvalidParameterSpecException
-
Constructs an InvalidParameterSpecException with the specified detail
message.
- invoke() - Method in class ej.kf.Proxy
-
This method has for effect to invoke the same method on the reference.
- invokeBoolean() - Method in class ej.kf.Proxy
-
This method has for effect to invoke the same method on the reference.
- invokeByte() - Method in class ej.kf.Proxy
-
This method has for effect to invoke the same method on the reference.
- invokeChar() - Method in class ej.kf.Proxy
-
This method has for effect to invoke the same method on the reference.
- invokeDouble() - Method in class ej.kf.Proxy
-
This method has for effect to invoke the same method on the reference.
- invokeFloat() - Method in class ej.kf.Proxy
-
This method has for effect to invoke the same method on the reference.
- invokeInt() - Method in class ej.kf.Proxy
-
This method has for effect to invoke the same method on the reference.
- invokeLong() - Method in class ej.kf.Proxy
-
This method has for effect to invoke the same method on the reference.
- invokeRef() - Method in class ej.kf.Proxy
-
This method has for effect to invoke the same method on the reference.
- invokeShort() - Method in class ej.kf.Proxy
-
This method has for effect to invoke the same method on the reference.
- IOException - Exception in java.io
-
Signals that an I/O exception of some sort has occurred.
- IOException() - Constructor for exception java.io.IOException
-
Constructs an IOException
with null
as its error detail message.
- IOException(String) - Constructor for exception java.io.IOException
-
Constructs an IOException
with the specified detail message.
- IOException(String, Throwable) - Constructor for exception java.io.IOException
-
Constructs an IOException
with the specified detail message and cause.
- IOException(Throwable) - Constructor for exception java.io.IOException
-
Constructs an IOException
with the specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail
message of cause
).
- IP_MULTICAST_IF - Static variable in interface java.net.SocketOptions
-
Set which outgoing interface on which to send multicast packets.
- IP_MULTICAST_IF2 - Static variable in interface java.net.SocketOptions
-
Same as above.
- IP_MULTICAST_LOOP - Static variable in interface java.net.SocketOptions
-
This option enables or disables local loopback of multicast datagrams.
- IP_TOS - Static variable in interface java.net.SocketOptions
-
This option sets the type-of-service or traffic class field
in the IP header for a TCP or UDP socket.
- IPConfiguration - Class in ej.ecom.network
-
An IP configuration describes the settings of a network interface.
- IPConfiguration() - Constructor for class ej.ecom.network.IPConfiguration
-
- isAbsolute() - Method in class java.io.File
-
Tests whether this abstract pathname is absolute.
- isAdvertising() - Method in class ej.bluetooth.BluetoothAdapter
-
Returns whether this adapter is currently advertising.
- isAlive() - Method in class java.lang.Thread
-
Tests if this thread is alive.
- isAnyLocalAddress() - Method in class java.net.Inet4Address
-
Utility routine to check if the InetAddress in a wildcard address.
- isAnyLocalAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress in a wildcard address.
- isAnyLocalAddress() - Method in class java.net.InetAddress
-
Utility routine to check if the InetAddress in a wildcard address.
- isAPI(Class<?>) - Static method in class ej.kf.Kernel
-
Tells whether the given class is a Kernel API.
- 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 ej.microui.display.Font
-
Gets whether the font is bold or not.
- isBound() - Method in class java.net.DatagramSocket
-
Returns the binding state of the socket.
- isBound() - Method in class java.net.ServerSocket
-
Returns the binding state of the ServerSocket.
- isBound() - Method in class java.net.Socket
-
Returns the binding state of the socket.
- isCertificateEntry(String) - Method in class java.security.KeyStore
-
Returns true if the entry identified by the given alias
was created by a call to setCertificateEntry
,
or created by a call to setEntry
with a
TrustedCertificateEntry
.
- isClicked(int) - Static method in class ej.microui.event.generator.Buttons
-
Tells if an button event is a click event.
- isClosed() - Method in class java.net.DatagramSocket
-
Returns whether the socket is closed or not.
- isClosed() - Method in class java.net.ServerSocket
-
Returns the closed state of the ServerSocket.
- isClosed() - Method in class java.net.Socket
-
Returns the closed state of the socket.
- isColor() - Method in class ej.microui.display.Display
-
Tells whether the display offers color.
- isConnected() - Method in class ej.bluetooth.BluetoothDevice
-
Returns whether the adapter is currently connected to this device.
- isConnected() - Method in class java.net.DatagramSocket
-
Returns the connection state of the socket.
- isConnected() - Method in class java.net.Socket
-
Returns the connection state of the socket.
- isDaemon() - Method in class java.lang.Thread
-
Tests if this thread is a daemon thread.
- isDataAvailable(int) - Method in class ej.sp.ShieldedPlug
-
Determines whether data in the block with the given ID are available or not.
By default no data is available in a block.
- isDestroyed() - Method in class javax.crypto.spec.SecretKeySpec
-
- isDestroyed() - Method in interface javax.security.auth.Destroyable
-
Determine if this Object
has been destroyed.
- isDigit(char) - Static method in class java.lang.Character
-
Determines if the specified character is a digit.
- isDirectory() - Method in class java.io.File
-
Tests whether the file denoted by this abstract pathname is a
directory.
- isDisplayThread(Thread) - Method in class ej.microui.display.Display
-
Gets whether the given thread is the display events thread.
- isDisplayThread() - Method in class ej.microui.display.Display
-
Gets whether the current thread is the display events thread.
- isDNSStatic() - Method in class ej.ecom.network.IPConfiguration
-
Tells whether the DNS server address is statically configured or retrieved
from DHCP server.
- isDoubleBuffered() - Method in class ej.microui.display.Display
-
Returns if the display uses an underlying double buffer (either hardware or software).
- isDoubleClicked(int) - Static method in class ej.microui.event.generator.Buttons
-
Tells if an button event is a double click event.
- isDragged(int) - Static method in class ej.microui.event.generator.Pointer
-
Tells if a pointer event is a drag event.
- isEmpty() - Method in class java.lang.String
-
- isEmpty() - Method in class java.util.AbstractCollection
-
Returns true if this collection contains no elements.
- isEmpty() - Method in class java.util.AbstractMap
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in class java.util.ArrayList
-
Returns true if this list contains no elements.
- isEmpty() - Method in interface java.util.Collection
-
Returns true if this collection contains no elements.
- isEmpty() - Method in class java.util.Dictionary
-
Tests if this dictionary maps no keys to value.
- isEmpty() - Method in class java.util.HashMap
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in class java.util.Hashtable
-
Tests if this hashtable maps no keys to values.
- isEmpty() - Method in interface java.util.List
-
Returns true if this list contains no elements.
- isEmpty() - Method in interface java.util.Map
-
Returns true if this map contains no key-value mappings.
- isEmpty() - Method in interface java.util.Set
-
Returns true if this set contains no elements.
- isEmpty() - Method in class java.util.Vector
-
Tests if this vector has no components.
- isEmpty() - Method in class java.util.WeakHashMap
-
Returns true if this map contains no key-value mappings.
- isEnabled(NetworkInterface) - Static method in class ej.ecom.network.NetworkInterfaceManager
-
Tells whether a network interface is enabled or not.
- isEnqueued() - Method in class java.lang.ref.Reference
-
Tells whether or not this reference object has been enqueued, either by the program or by the
garbage collector.
- isEntered(int) - Static method in class ej.microui.event.generator.Pointer
-
Tells if a pointer event is an enter event.
- isEqual(byte[], byte[]) - Static method in class java.security.MessageDigest
-
Compares two digests for equality.
- isExited(int) - Static method in class ej.microui.event.generator.Pointer
-
Tells if a pointer event is an exit event.
- isFile() - Method in class java.io.File
-
Tests whether the file denoted by this abstract pathname is a normal
file.
- isHidden() - Method in class java.io.File
-
Tests whether the file named by this abstract pathname is a hidden
file.
- isIdentifierSupported(int) - Method in class ej.microui.display.Font
-
Checks whether the font supports the given identifier or not.
- isImmortal(Object) - Static method in class ej.bon.Immortals
-
Gets whether an object is immortal or not.
- isImmutable(Object) - Static method in class ej.bon.Immutables
-
Gets whether or not the given object is in the immutable objects pool or not.
- isImmutable() - Method in class ej.sp.ShieldedPlug
-
Gets if this database is immutable or not.
- isInfinite(double) - Static method in class java.lang.Double
-
Returns true
if the specified number is infinitely large in magnitude, false
otherwise.
- isInfinite() - Method in class java.lang.Double
-
Returns true
if this Double
value is infinitely large in magnitude, false
otherwise.
- isInfinite(float) - Static method in class java.lang.Float
-
Returns true
if the specified number is infinitely large in magnitude, false
otherwise.
- isInfinite() - Method in class java.lang.Float
-
Returns true
if this Float
value is infinitely large in magnitude, false
otherwise.
- isInInitialization() - Static method in class ej.bon.Util
-
Indicates whether the current code is part of the initialization phase.
- isInKernelMode() - Static method in class ej.kf.Kernel
-
Tells whether the current thread context is currently in Kernel mode.
- isInMission() - Static method in class ej.bon.Util
-
Indicates whether the system has entered the mission phase, i.e.
- isInstance(Object) - Method in class java.lang.Class
-
Determines if the specified Object
is assignment-compatible with the object represented
by this Class
.
- isInterface() - Method in class java.lang.Class
-
Determines if the specified Class
object represents an interface type.
- isInterrupted() - Method in class java.lang.Thread
-
Tests whether this thread has been interrupted.
- isIPv4CompatibleAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress is an
IPv4 compatible IPv6 address.
- isISOControl(char) - Static method in class java.lang.Character
-
Determines if the specified character is an ISO control character.
- isItalic() - Method in class ej.microui.display.Font
-
Gets whether the font is italic or not.
- isKeyEntry(String) - Method in class java.security.KeyStore
-
Returns true if the entry identified by the given alias
was created by a call to setKeyEntry
,
or created by a call to setEntry
with a
PrivateKeyEntry
or a SecretKeyEntry
.
- isLenient() - Method in class java.util.Calendar
-
Tells whether date/time interpretation is to be lenient.
- isLinkLocalAddress() - Method in class java.net.Inet4Address
-
Utility routine to check if the InetAddress is an link local address.
- isLinkLocalAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress is an link local address.
- isLinkLocalAddress() - Method in class java.net.InetAddress
-
Utility routine to check if the InetAddress is an link local address.
- isLong(int) - Static method in class ej.microui.event.generator.Buttons
-
Tells if an button event is a long event.
- isLoopback() - Method in class java.net.NetworkInterface
-
Returns whether a network interface is a loopback interface.
- isLoopbackAddress() - Method in class java.net.Inet4Address
-
Utility routine to check if the InetAddress is a loopback address.
- isLoopbackAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress is a loopback address.
- isLoopbackAddress() - Method in class java.net.InetAddress
-
Utility routine to check if the InetAddress is a loopback address.
- isLowerCase(char) - Static method in class java.lang.Character
-
Determines if the specified character is a lowercase character.
- isMCGlobal() - Method in class java.net.Inet4Address
-
Utility routine to check if the multicast address has global scope.
- isMCGlobal() - Method in class java.net.Inet6Address
-
Utility routine to check if the multicast address has global scope.
- isMCGlobal() - Method in class java.net.InetAddress
-
Utility routine to check if the multicast address has global scope.
- isMCLinkLocal() - Method in class java.net.Inet4Address
-
Utility routine to check if the multicast address has link scope.
- isMCLinkLocal() - Method in class java.net.Inet6Address
-
Utility routine to check if the multicast address has link scope.
- isMCLinkLocal() - Method in class java.net.InetAddress
-
Utility routine to check if the multicast address has link scope.
- isMCNodeLocal() - Method in class java.net.Inet4Address
-
Utility routine to check if the multicast address has node scope.
- isMCNodeLocal() - Method in class java.net.Inet6Address
-
Utility routine to check if the multicast address has node scope.
- isMCNodeLocal() - Method in class java.net.InetAddress
-
Utility routine to check if the multicast address has node scope.
- isMCOrgLocal() - Method in class java.net.Inet4Address
-
Utility routine to check if the multicast address has organization scope.
- isMCOrgLocal() - Method in class java.net.Inet6Address
-
Utility routine to check if the multicast address has organization scope.
- isMCOrgLocal() - Method in class java.net.InetAddress
-
Utility routine to check if the multicast address has organization scope.
- isMCSiteLocal() - Method in class java.net.Inet4Address
-
Utility routine to check if the multicast address has site scope.
- isMCSiteLocal() - Method in class java.net.Inet6Address
-
Utility routine to check if the multicast address has site scope.
- isMCSiteLocal() - Method in class java.net.InetAddress
-
Utility routine to check if the multicast address has site scope.
- isMirrored() - Method in class ej.microui.display.transform.AbstractTransform
-
Returns true
if vertical mirror is enabled.
- isMonospaced() - Method in class ej.microui.display.Font
-
Gets whether the font is monospaced or not.
- isMoved(int) - Static method in class ej.microui.event.generator.Pointer
-
Tells if a pointer event is a move event.
- isMulticastAddress() - Method in class java.net.Inet4Address
-
Utility routine to check if the InetAddress is an
IP multicast address.
- isMulticastAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress is an IP multicast
address.
- isMulticastAddress() - Method in class java.net.InetAddress
-
Utility routine to check if the InetAddress is an
IP multicast address.
- isMutable() - Method in class ej.microui.display.Image
-
Tells whether this image is mutable.
- isNaN(double) - Static method in class java.lang.Double
-
Returns true
if the specified number is a Not-a-Number (NaN) value, false
otherwise.
- isNaN() - Method in class java.lang.Double
-
Returns true
if this Double
value is a Not-a-Number (NaN), false
otherwise.
- isNaN(float) - Static method in class java.lang.Float
-
Returns true
if the specified number is a Not-a-Number (NaN) value, false
otherwise.
- isNaN() - Method in class java.lang.Float
-
Returns true
if this Float
value is a Not-a-Number (NaN), false
otherwise.
- isPending(int) - Method in class ej.sp.ShieldedPlug
-
Gets if data has been written into the block since last read.
- isPlain() - Method in class ej.microui.display.Font
-
Gets whether the font is plain or not.
- isPressed(int) - Static method in class ej.microui.event.generator.Buttons
-
Tells if a button event is a press event.
- isReleased(int) - Static method in class ej.microui.event.generator.Buttons
-
Tells if a button event is a release event.
- isRepeated(int) - Static method in class ej.microui.event.generator.Buttons
-
Tells if a button event is a repeat event.
- isScanning() - Method in class ej.bluetooth.BluetoothAdapter
-
Returns whether this adapter is currently scanning.
- isSet(int) - Method in class java.util.Calendar
-
Determines if the given calendar field has a value set, including cases that
the value has been set by internal fields calculations triggered by a
get
method call.
- isSharedInterface(Class<?>) - Static method in class ej.kf.Kernel
-
Tells whether the given class is a shared interface (i.e.
- isShown() - Method in class ej.microui.display.Displayable
-
Checks whether the displayable is visible on its display.
- isShown() - Method in class ej.microui.display.FlyingImage
-
Checks whether the FlyingImage
is visible on its display.
- isSiteLocalAddress() - Method in class java.net.Inet4Address
-
Utility routine to check if the InetAddress is a site local address.
- isSiteLocalAddress() - Method in class java.net.Inet6Address
-
Utility routine to check if the InetAddress is a site local address.
- isSiteLocalAddress() - Method in class java.net.InetAddress
-
Utility routine to check if the InetAddress is a site local address.
- isSoftAPEnabled() - Method in class ej.ecom.wifi.WifiManager
-
Tells whether if SoftAP is currently enabled.
- isSpaceChar(char) - Static method in class java.lang.Character
-
Determines if the specified character is a Unicode space character.
- isStarted(NetworkInterface) - Static method in class ej.ecom.network.NetworkInterfaceManager
-
Tells whether a network interface is started or not.
- isStarted() - Static method in class ej.microui.MicroUI
-
Checks if MicroUI has been started.
- isStatic() - Method in class ej.ecom.network.IPConfiguration
-
Tells whether the IP configuration is set statically or retrieved from a DHCP
server.
- isTraceStarted() - Static method in class ej.trace.Tracer
-
Tests whether the trace system is started or not.
- isTransparent() - Method in class ej.microui.display.Image
-
Tells whether this image contains at least a transparent pixel.
- isUnderlined() - Method in class ej.microui.display.Font
-
Gets whether the font is underlined or not.
- isUnresolved() - Method in class java.net.InetSocketAddress
-
Checks whether the address has been resolved or not.
- isUp() - Method in class java.net.NetworkInterface
-
Returns whether a network interface is up and running.
- isUpperCase(char) - Static method in class java.lang.Character
-
Determines if the specified character is an uppercase character.
- isWhitespace(char) - Static method in class java.lang.Character
-
Determines if the specified character is white space according to Java.
- Iterable<T> - Interface in java.lang
-
Implementing this interface allows an object to be the target of the "foreach" statement.
- iterator() - Method in interface java.lang.Iterable
-
Returns an iterator over a set of elements of type T.
- iterator() - Method in class java.util.AbstractCollection
-
Returns an iterator over the elements in this collection.
- iterator() - Method in class java.util.AbstractList
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in class java.util.ArrayList
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in interface java.util.Collection
-
Returns an iterator over the elements in this collection.
- Iterator<E> - Interface in java.util
-
An iterator over a collection.
- iterator() - Method in interface java.util.List
-
Returns an iterator over the elements in this list in proper sequence.
- iterator() - Method in interface java.util.Set
-
Returns an iterator over the elements in this set.
- iterator() - Method in class java.util.Vector
-
Returns a list iterator over the elements in this list (in proper sequence).
- IvParameterSpec - Class in javax.crypto.spec
-
This class specifies an initialization vector (IV).
- IvParameterSpec(byte[]) - Constructor for class javax.crypto.spec.IvParameterSpec
-
Creates an IvParameterSpec object using the bytes in iv
as the IV.
- IvParameterSpec(byte[], int, int) - Constructor for class javax.crypto.spec.IvParameterSpec
-
Creates an IvParameterSpec object using the first len
bytes in iv
, beginning at offset
inclusive, as the IV.
- LAO - Static variable in class ej.microui.display.Font
-
Constant for lao font identifier.
- lastElement() - Method in class java.util.Vector
-
Returns the last component of the vector.
- lastIndexOf(int) - Method in class java.lang.String
-
Returns the index within this string of the last occurrence of the specified character.
- lastIndexOf(int, int) - Method in class java.lang.String
-
Returns the index within this string of the last occurrence of the specified character, searching
backward starting at the specified index.
- lastIndexOf(String) - Method in class java.lang.String
-
Returns the index within this string of the last occurrence of the specified substring.
- lastIndexOf(String, int) - Method in class java.lang.String
-
Returns the index within this string of the last occurrence of the specified substring, searching
backward starting at the specified index.
- lastIndexOf(String) - Method in class java.lang.StringBuffer
-
Returns the index within this string of the rightmost occurrence of the specified substring.
- lastIndexOf(String, int) - Method in class java.lang.StringBuffer
-
Returns the index within this string of the last occurrence of the specified substring.
- lastIndexOf(String) - Method in class java.lang.StringBuilder
-
Returns the index within this string of the rightmost occurrence of the specified substring.
- lastIndexOf(String, int) - Method in class java.lang.StringBuilder
-
Returns the index within this string of the last occurrence of the specified substring.
- lastIndexOf(Object) - Method in class java.util.AbstractList
-
Returns the index of the last occurrence of the specified element in this list, or -1 if this
list does not contain the element.
- lastIndexOf(Object) - Method in class java.util.ArrayList
-
Returns the index of the last occurrence of the specified element in this list, or -1 if this
list does not contain the element.
- lastIndexOf(Object) - Method in interface java.util.List
-
Returns the index of the last occurrence of the specified element in this list, or -1 if this
list does not contain the element.
- lastIndexOf(Object) - Method in class java.util.Vector
-
Returns the index of the last occurrence of the specified element in this vector, or -1 if this
vector does not contain the element.
- lastIndexOf(Object, int) - Method in class java.util.Vector
-
Returns the index of the last occurrence of the specified element in this vector, searching
backwards from index
, or returns -1 if the element is not found.
- lastModified() - Method in class java.io.File
-
Returns the time that the file denoted by this abstract pathname was
last modified.
- LATIN - Static variable in class ej.microui.display.Font
-
Constant for latin font identifier.
- leave() - Method in class ej.ecom.wifi.WifiManager
-
Leaves the currently joined Wi-Fi access point.
- leaveGroup(InetAddress) - Method in class java.net.MulticastSocket
-
Leave a multicast group.
- leaveGroup(SocketAddress, NetworkInterface) - Method in class java.net.MulticastSocket
-
Leave a multicast group on a specified local interface.
- Leds - Class in ej.microui.led
-
This class is used to manage all LEDs available on the platform.
- LEFT - Static variable in class ej.microui.display.GraphicsContext
-
Constant for positioning the left side of the drawing at the anchor point.
- LEFT - Static variable in class ej.microui.event.generator.Command
-
The "left" command constant.
- LEFT_BOTTOM - Static variable in class ej.microui.display.GraphicsContext
-
Equivalent to LEFT | BOTTOM
.
- LEFT_TOP - Static variable in class ej.microui.display.GraphicsContext
-
Equivalent to LEFT | TOP
.
- LEFT_VCENTER - Static variable in class ej.microui.display.GraphicsContext
-
Equivalent to LEFT | VCENTER
.
- length() - Method in class ej.bon.ResourceArray
-
Gets the number of elements contained in the array (not the size in bytes).
- length() - Method in class java.io.File
-
Returns the length of the file denoted by this abstract pathname.
- length() - Method in interface java.lang.CharSequence
-
Returns the length of this character sequence.
- length() - Method in class java.lang.String
-
Returns the length of this string.
- length() - Method in class java.lang.StringBuffer
-
- length() - Method in class java.lang.StringBuilder
-
Returns the length (character count).
- LEPCHA - Static variable in class ej.microui.display.Font
-
Constant for lepcha font identifier.
- LIMBU - Static variable in class ej.microui.display.Font
-
Constant for limbu font identifier.
- LIME - Static variable in interface ej.microui.display.Colors
-
The lime RGB color constant.
The value 0x00ff00
is assigned to LIME
.
- limit(int, int, int) - Static method in class ej.bon.XMath
-
Limits a value between two others:
If value
is lower than min
, returns
min
.
If value
is greater than max
, returns
max
.
Otherwise, returns value
.
- limit(float, float, float) - Static method in class ej.bon.XMath
-
Limits a value between two others:
If value
is lower than min
, returns
min
.
If value
is greater than max
, returns
max
.
Otherwise, returns value
.
- limit(long, long, long) - Static method in class ej.bon.XMath
-
Limits a value between two others:
If value
is lower than min
, returns
min
.
If value
is greater than max
, returns
max
.
Otherwise, returns value
.
- limit(double, double, double) - Static method in class ej.bon.XMath
-
Limits a value between two others:
If value
is lower than min
, returns
min
.
If value
is greater than max
, returns
max
.
Otherwise, returns value
.
- LinkageError - Error in java.lang
-
Subclasses of LinkageError
indicate that a class has some dependency on another class;
however, the latter class has incompatibly changed after the compilation of the former class.
- LinkageError() - Constructor for error java.lang.LinkageError
-
Constructs a LinkageError
with no detail message.
- LinkageError(String) - Constructor for error java.lang.LinkageError
-
Constructs a LinkageError
with the specified detail message.
- LinkageError(String, Throwable) - Constructor for error java.lang.LinkageError
-
Constructs a LinkageError
with the specified detail message and cause.
- list() - Static method in class ej.ecom.DeviceManager
-
List all registered devices.
- list(Class<D>) - Static method in class ej.ecom.DeviceManager
-
List all registered devices such as the given type is assignable from the device class.
- list() - Method in class java.io.File
-
Returns an array of strings naming the files and directories in the
directory denoted by this abstract pathname.
- list(FilenameFilter) - Method in class java.io.File
-
Returns an array of strings naming the files and directories in the
directory denoted by this abstract pathname that satisfy the specified
filter.
- List<E> - Interface in java.util
-
An ordered collection (also known as a sequence).
- listFiles() - Method in class java.io.File
-
Returns an array of abstract pathnames denoting the files in the
directory denoted by this abstract pathname.
- listFiles(FilenameFilter) - Method in class java.io.File
-
Returns an array of abstract pathnames denoting the files and
directories in the directory denoted by this abstract pathname that
satisfy the specified filter.
- listFiles(FileFilter) - Method in class java.io.File
-
Returns an array of abstract pathnames denoting the files and
directories in the directory denoted by this abstract pathname that
satisfy the specified filter.
- listIterator() - Method in class java.util.AbstractList
-
Returns a list iterator over the elements in this list (in proper sequence).
- listIterator(int) - Method in class java.util.AbstractList
-
Returns a list iterator over the elements in this list (in proper sequence), starting at the
specified position in the list.
- listIterator() - Method in class java.util.ArrayList
-
Returns a list iterator over the elements in this list (in proper sequence).
- listIterator(int) - Method in class java.util.ArrayList
-
Returns a list iterator over the elements in this list (in proper sequence), starting at the
specified position in the list.
- listIterator() - Method in interface java.util.List
-
Returns a list iterator over the elements in this list (in proper sequence).
- listIterator(int) - Method in interface java.util.List
-
Returns a list iterator over the elements in this list (in proper sequence), starting at the
specified position in the list.
- ListIterator<E> - Interface in java.util
-
An iterator for lists that allows the programmer to traverse the list in either direction, modify
the list during iteration, and obtain the iterator's current position in the list.
- listIterator() - Method in class java.util.Vector
-
Returns a list iterator over the elements in this list (in proper sequence), starting at the
specified position in the list.
- listIterator(int) - Method in class java.util.Vector
-
Returns a list iterator over the elements in this list (in proper sequence), starting at the
specified position in the list.
- listRoots() - Static method in class java.io.File
-
List the available filesystem roots.
- LISU - Static variable in class ej.microui.display.Font
-
Constant for lisu font identifier.
- LITTLE_ENDIAN - Static variable in class ej.bon.ByteArray
-
Access mode little endian.
- load(InputStream) - Static method in class ej.kf.Kernel
-
- load(InputStream, char[]) - Method in class java.security.KeyStore
-
Loads this KeyStore from the given input stream.
- loadPlaylist(Playlist) - Method in class ej.audio.AudioPlayer
-
- lock - Variable in class java.io.Reader
-
The object used to synchronize operations on this stream.
- lock - Variable in class java.io.Writer
-
The object used to synchronize operations on this stream.
- log(double) - Static method in class ej.bon.XMath
-
Returns the natural logarithm (base e) of a double value.
- log(double) - Static method in class java.lang.Math
-
Returns the natural logarithm (base e) of a double
value.
- log10(double) - Static method in class java.lang.Math
-
Returns the base 10 logarithm of a double
value.
- log1p(double) - Static method in class java.lang.Math
-
Returns the natural logarithm of the sum of the argument and 1.
- LONG - Static variable in class ej.microui.event.generator.Buttons
-
The "long" action (button pressed for a "long" time).
- Long - Class in java.lang
-
The Long
class wraps a value of the primitive type long
in an object.
- Long(long) - Constructor for class java.lang.Long
-
Constructs a newly allocated Long
object that represents the specified long
argument.
- Long(String) - Constructor for class java.lang.Long
-
Constructs a newly allocated Long
object that represents the long
value indicated
by the String
parameter.
- LONG - Static variable in class java.util.Calendar
-
A style specifier indicating a long name, such as "January".
- LONG - Static variable in class java.util.TimeZone
-
A style specifier for getDisplayName()
indicating a long name, such as "Pacific
Standard Time."
- LONG_SIZE - Static variable in class ej.bon.ByteArray
-
The size of a long.
- longBitsToDouble(long) - Static method in class java.lang.Double
-
Returns the double
value corresponding to a given bit representation.
- longValue() - Method in class java.lang.Byte
-
Returns the value of this Byte
as a long
.
- longValue() - Method in class java.lang.Double
-
Returns the value of this Double
as a long
(by casting to type long
).
- longValue() - Method in class java.lang.Float
-
Returns value of this Float
as a long
(by casting to type long
).
- longValue() - Method in class java.lang.Integer
-
Returns the value of this Integer
as a long
.
- longValue() - Method in class java.lang.Long
-
Returns the value of this Long
as a long
value.
- longValue() - Method in class java.lang.Number
-
Returns the value of the specified number as a long
.
- longValue() - Method in class java.lang.Short
-
Returns the value of this Short
as a long
.
- name() - Method in class java.lang.Enum
-
Returns the name of this enum constant, exactly as declared in its enum declaration.
- NaN - Static variable in class java.lang.Double
-
A constant holding a Not-a-Number (NaN) value of type double
.
- NaN - Static variable in class java.lang.Float
-
A constant holding a Not-a-Number (NaN) value of type float
.
- nanoTime() - Static method in class java.lang.System
-
Returns the current value of the running Java Virtual Machine's high-resolution time source, in
nanoseconds.
- NativeException - Exception in ej.sni
-
RuntimeException
subclass that may be thrown from an SNI native using
SNI_throwNativeException()
function.
- NativeException(int, String) - Constructor for exception ej.sni.NativeException
-
Constructs a new
NativeException
with the specified error code and detail
message.
- NativeException(int, String, Throwable) - Constructor for exception ej.sni.NativeException
-
Constructs a new
NativeException
with the specified error code, detail message and cause.
- NativeIOException - Exception in ej.sni
-
IOException
subclass that may be thrown from an SNI native using
SNI_throwNativeIOException()
function.
- NativeIOException(int, String) - Constructor for exception ej.sni.NativeIOException
-
- NativeIOException(int, String, Throwable) - Constructor for exception ej.sni.NativeIOException
-
Constructs a new
NativeIOException
with the specified error code, detail message and cause.
- NAVY - Static variable in interface ej.microui.display.Colors
-
The navy RGB color constant.
The value 0x000080
is assigned to NAVY
.
- NEGATIVE_INFINITY - Static variable in class java.lang.Double
-
A constant holding the negative infinity of type double
.
- NEGATIVE_INFINITY - Static variable in class java.lang.Float
-
A constant holding the negative infinity of type float
.
- NegativeArraySizeException - Exception in java.lang
-
Thrown if an application tries to create an array with negative size.
- NegativeArraySizeException() - Constructor for exception java.lang.NegativeArraySizeException
-
Constructs a NegativeArraySizeException
with no detail message.
- NegativeArraySizeException(String) - Constructor for exception java.lang.NegativeArraySizeException
-
Constructs a NegativeArraySizeException
with the specified detail message.
- NetPermission - Class in java.net
-
This class is for various network permissions.
- NetPermission(String) - Constructor for class java.net.NetPermission
-
Creates a new NetPermission with the specified name.
- NetPermission(String, String) - Constructor for class java.net.NetPermission
-
Creates a new NetPermission object with the specified name.
- NetworkInterface - Class in java.net
-
This class represents a Network Interface made up of a name,
and a list of IP addresses assigned to this interface.
- NetworkInterfaceManager - Class in ej.ecom.network
-
A manager for the network interfaces.
- NetworkInterfaceManager() - Constructor for class ej.ecom.network.NetworkInterfaceManager
-
- NEW_TAI_LUE - Static variable in class ej.microui.display.Font
-
Constant for new tai lue font identifier.
- newArray(Class<T[]>, int) - Static method in class ej.bon.Util
-
Allocates a new array of object references from the given array type and
length.
- newDatagram(byte[], int) - Method in interface ej.ecom.io.DatagramConnection
-
- newDatagram(int) - Method in interface ej.ecom.io.DatagramConnection
-
- newDatagram(byte[], int, String) - Method in interface ej.ecom.io.DatagramConnection
-
- newDatagram(int, String) - Method in interface ej.ecom.io.DatagramConnection
-
- newInstance() - Method in class java.lang.Class
-
Creates a new instance of the class represented by this Class
object.
- newProxy(T, Module) - Static method in class ej.kf.Kernel
-
Allocates a new
Proxy
and sets its reference to the given object.
- newResource() - Method in class ej.sni.PoolOfImmortalByteBuffers
-
Allocate a new Immortal byte buffer resource
- newResource() - Method in class ej.sni.PoolOfReusableResources
-
Allocate a new resource
- next(int) - Method in class ej.audio.AudioPlayer
-
- NEXT - Static variable in class ej.microui.event.generator.Command
-
The "next" command constant.
- next() - Method in interface java.util.Iterator
-
Returns the next element in the iteration.
- next() - Method in interface java.util.ListIterator
-
Returns the next element in the list and advances the cursor position.
- next(int) - Method in class java.util.Random
-
Generates the next pseudorandom number.
- nextAfter(double, double) - Static method in class java.lang.Math
-
Returns the floating-point number adjacent to the first argument in the direction of the second
argument.
- nextAfter(float, double) - Static method in class java.lang.Math
-
Returns the floating-point number adjacent to the first argument in the direction of the second
argument.
- nextBoolean() - Method in class java.util.Random
-
Returns the next pseudorandom, uniformly distributed boolean
value from this random
number generator's sequence.
- nextBytes(byte[]) - Method in class java.util.Random
-
Generates random bytes and places them into a user-supplied byte array.
- nextDouble() - Method in class java.util.Random
-
Returns the next pseudorandom, uniformly distributed double
value between 0.0
and
1.0
from this random number generator's sequence.
- nextElement() - Method in interface java.util.Enumeration
-
Returns the next element of this enumeration if this enumeration object has at least one more
element to provide.
- nextFloat() - Method in class java.util.Random
-
Returns the next pseudorandom, uniformly distributed float
value between 0.0
and
1.0
from this random number generator's sequence.
- nextGaussian() - Method in class java.util.Random
-
Returns the next pseudorandom, Gaussian ("normally") distributed double
value with mean
0.0
and standard deviation 1.0
from this random number generator's sequence.
- nextIndex() - Method in interface java.util.ListIterator
-
Returns the index of the element that would be returned by a subsequent call to
ListIterator.next()
.
- nextInt() - Method in class java.util.Random
-
Returns the next pseudorandom, uniformly distributed int
value from this random number
generator's sequence.
- nextInt(int) - Method in class java.util.Random
-
Returns a pseudorandom, uniformly distributed int
value between 0 (inclusive) and the
specified value (exclusive), drawn from this random number generator's sequence.
- nextLong() - Method in class java.util.Random
-
Returns the next pseudorandom, uniformly distributed long
value from this random number
generator's sequence.
- nextUp(double) - Static method in class java.lang.Math
-
Returns the floating-point value adjacent to d
in the direction of positive infinity.
- nextUp(float) - Static method in class java.lang.Math
-
Returns the floating-point value adjacent to f
in the direction of positive infinity.
- NKO - Static variable in class ej.microui.display.Font
-
Constant for nko font identifier.
- NoClassDefFoundError - Error in java.lang
-
Thrown if the Java Virtual Machine or a ClassLoader
instance tries to load in the
definition of a class (as part of a normal method call or as part of creating a new instance
using the new
expression) and no definition of the class could be found.
- NoClassDefFoundError() - Constructor for error java.lang.NoClassDefFoundError
-
Constructs a NoClassDefFoundError
with no detail message.
- NoClassDefFoundError(String) - Constructor for error java.lang.NoClassDefFoundError
-
Constructs a NoClassDefFoundError
with the specified detail message.
- NONE - Static variable in interface ej.bluetooth.BluetoothPermissions
-
No access.
- NONE - Static variable in interface ej.bluetooth.BluetoothProperties
-
No property.
- NonNull - Annotation Type in ej.annotation
-
Indicates that a field, local variable, method return value or parameter can never be
null
.
- NonNullByDefault - Annotation Type in ej.annotation
-
Indicates that all fields, method return values or parameters can never be null
in
the annotated package or type.
- NORM_PRIORITY - Static variable in class java.lang.Thread
-
The default priority that is assigned to a thread.
- NoRouteToHostException - Exception in java.net
-
Signals that an error occurred while attempting to connect a
socket to a remote address and port.
- NoRouteToHostException(String) - Constructor for exception java.net.NoRouteToHostException
-
Constructs a new NoRouteToHostException with the specified detail
message as to why the remote host cannot be reached.
- NoRouteToHostException() - Constructor for exception java.net.NoRouteToHostException
-
Construct a new NoRouteToHostException with no detailed message.
- NoSuchAlgorithmException - Exception in java.security
-
This exception is thrown when a particular cryptographic algorithm is
requested but is not available in the environment.
- NoSuchAlgorithmException() - Constructor for exception java.security.NoSuchAlgorithmException
-
Constructs a NoSuchAlgorithmException with no detail
message.
- NoSuchAlgorithmException(String) - Constructor for exception java.security.NoSuchAlgorithmException
-
Constructs a NoSuchAlgorithmException with the specified
detail message.
- NoSuchAlgorithmException(String, Throwable) - Constructor for exception java.security.NoSuchAlgorithmException
-
Creates a NoSuchAlgorithmException
with the specified
detail message and cause.
- NoSuchAlgorithmException(Throwable) - Constructor for exception java.security.NoSuchAlgorithmException
-
Creates a NoSuchAlgorithmException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- NoSuchElementException - Exception in java.util
-
Thrown by the nextElement
method of an Enumeration
to indicate that
there are no more elements in the enumeration.
- NoSuchElementException() - Constructor for exception java.util.NoSuchElementException
-
Constructs a NoSuchElementException
with null as its error message string.
- NoSuchElementException(String) - Constructor for exception java.util.NoSuchElementException
-
Constructs a NoSuchElementException
, saving a reference to the error message string
s for later retrieval by the getMessage method.
- NoSuchFieldError - Error in java.lang
-
Thrown if an application tries to access or modify a specified field of an object, and that
object no longer has that field.
- NoSuchFieldError() - Constructor for error java.lang.NoSuchFieldError
-
Constructs a NoSuchFieldError
with no detail message.
- NoSuchFieldError(String) - Constructor for error java.lang.NoSuchFieldError
-
Constructs a NoSuchFieldError
with the specified detail message.
- NoSuchFieldException - Exception in java.lang
-
Signals that the class doesn't have a field of a specified name.
- NoSuchFieldException() - Constructor for exception java.lang.NoSuchFieldException
-
Constructor.
- NoSuchFieldException(String) - Constructor for exception java.lang.NoSuchFieldException
-
Constructor with a detail message.
- NoSuchMethodError - Error in java.lang
-
Thrown if an application tries to call a specified method of a class (either static or instance),
and that class no longer has a definition of that method.
- NoSuchMethodError() - Constructor for error java.lang.NoSuchMethodError
-
Constructs a NoSuchMethodError
with no detail message.
- NoSuchMethodError(String) - Constructor for error java.lang.NoSuchMethodError
-
Constructs a NoSuchMethodError
with the specified detail message.
- NoSuchMethodException - Exception in java.lang
-
Thrown when a particular method cannot be found.
- NoSuchMethodException() - Constructor for exception java.lang.NoSuchMethodException
-
Constructs a NoSuchMethodException
without a detail message.
- NoSuchMethodException(String) - Constructor for exception java.lang.NoSuchMethodException
-
Constructs a NoSuchMethodException
with a detail message.
- NoSuchPaddingException - Exception in javax.crypto
-
This exception is thrown when a particular padding mechanism is
requested but is not available in the environment.
- NoSuchPaddingException() - Constructor for exception javax.crypto.NoSuchPaddingException
-
Constructs a NoSuchPaddingException with no detail
message.
- NoSuchPaddingException(String) - Constructor for exception javax.crypto.NoSuchPaddingException
-
Constructs a NoSuchPaddingException with the specified
detail message.
- NoSuchProviderException - Exception in java.security
-
This exception is thrown when a particular security provider is
requested but is not available in the environment.
- NoSuchProviderException() - Constructor for exception java.security.NoSuchProviderException
-
Constructs a NoSuchProviderException with no detail message.
- NoSuchProviderException(String) - Constructor for exception java.security.NoSuchProviderException
-
Constructs a NoSuchProviderException with the specified detail
message.
- NOTIFY - Static variable in interface ej.bluetooth.BluetoothProperties
-
Indicates that the characteristic supports notifications.
- notify() - Method in class java.lang.Object
-
Wakes up a single thread that is waiting on this object's monitor.
- notifyAll() - Method in class java.lang.Object
-
Wakes up all threads that are waiting on this object's monitor.
- notifyObservers() - Method in class java.util.Observable
-
If this object has changed, as indicated by the hasChanged
method, then notify all
of its observers and then call the clearChanged
method to indicate that this object
has no longer changed.
- notifyObservers(Object) - Method in class java.util.Observable
-
If this object has changed, as indicated by the hasChanged
method, then notify all
of its observers and then call the clearChanged
method to indicate that this object
has no longer changed.
- NOVEMBER - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH
field indicating the eleventh month of the year in the Gregorian and
Julian calendars.
- Nullable - Annotation Type in ej.annotation
-
Indicates that a field, local variable, method return value or parameter can be
null
.
- NullPointerException - Exception in java.lang
-
Thrown when an application attempts to use null
in a case where an object is required.
- NullPointerException() - Constructor for exception java.lang.NullPointerException
-
Constructs a NullPointerException
with no detail message.
- NullPointerException(String) - Constructor for exception java.lang.NullPointerException
-
Constructs a NullPointerException
with the specified detail message.
- NUM - Static variable in class ej.microui.event.generator.Keypad
-
The NUM mode.
In NUM mode the keypad may return several digits according to the number of consequent key press.
- Number - Class in java.lang
-
The abstract class Number
is the superclass of classes BigDecimal
,
BigInteger
, Byte
, Double
, Float
,
Integer
, Long
, and Short
.
- Number() - Constructor for class java.lang.Number
-
- NumberFormatException - Exception in java.lang
-
Thrown to indicate that the application has attempted to convert a string to one of the numeric
types, but that the string does not have the appropriate format.
- NumberFormatException() - Constructor for exception java.lang.NumberFormatException
-
Constructs a NumberFormatException
with no detail message.
- NumberFormatException(String) - Constructor for exception java.lang.NumberFormatException
-
Constructs a NumberFormatException
with the specified detail message.
- Package - Class in java.lang
-
Package
represent a Java package.
- Package() - Constructor for class java.lang.Package
-
- paint(GraphicsContext) - Method in class ej.microui.display.Displayable
-
Draws the displayable.
- pair() - Method in class ej.bluetooth.BluetoothDevice
-
Initiates pairing with this device.
- pairReply(boolean) - Method in class ej.bluetooth.BluetoothDevice
-
Replies to the pairing request of this device.
- parseBoolean(String) - Static method in class java.lang.Boolean
-
Parses the string argument as a boolean.
- parseByte(String) - Static method in class java.lang.Byte
-
Parses the string argument as a signed decimal byte
.
- parseByte(String, int) - Static method in class java.lang.Byte
-
Parses the string argument as a signed byte
in the radix specified by the second
argument.
- parseDouble(String) - Static method in class java.lang.Double
-
Returns a new double
initialized to the value represented by the specified
String
, as performed by the valueOf
method of class Double
.
- parseFloat(String) - Static method in class java.lang.Float
-
Returns a new float
initialized to the value represented by the specified String
,
as performed by the valueOf
method of class Float
.
- parseInt(String) - Static method in class java.lang.Integer
-
Parses the string argument as a signed decimal integer.
- parseInt(String, int) - Static method in class java.lang.Integer
-
Parses the string argument as a signed integer in the radix specified by the second argument.
- parseLong(String) - Static method in class java.lang.Long
-
Parses the string argument as a signed decimal long
.
- parseLong(String, int) - Static method in class java.lang.Long
-
Parses the string argument as a signed long
in the radix specified by the second
argument.
- parseShort(String) - Static method in class java.lang.Short
-
Parses the string argument as a signed decimal short
.
- parseShort(String, int) - Static method in class java.lang.Short
-
Parses the string argument as a signed short
in the radix specified by the second
argument.
- passkeyReply(boolean, int) - Method in class ej.bluetooth.BluetoothDevice
-
Replies to the passkey request of this device.
- PASTE - Static variable in class ej.microui.event.generator.Command
-
The "paste" command constant.
- pathSeparator - Static variable in class java.io.File
-
The system-dependent path-separator character, represented as a string
for convenience.
- pathSeparatorChar - Static variable in class java.io.File
-
The system-dependent path-separator character.
- pause() - Method in class ej.audio.AudioPlayer
-
Pause the file currently playing.
- PAUSE - Static variable in class ej.microui.event.generator.Command
-
The "pause" command constant.
- peek() - Method in class java.util.Stack
-
Looks at the object at the top of this stack without removing it from the stack.
- Permission - Class in java.security
-
Abstract class for representing access to a system resource.
- Permission(String) - Constructor for class java.security.Permission
-
Constructs a permission with the specified name.
- PHAGS_PA - Static variable in class ej.microui.display.Font
-
Constant for phags pa font identifier.
- PI - Static variable in class ej.bon.XMath
-
The double
value that is closer than any other to pi, the
ratio of the circumference of a circle to its diameter.
- PI - Static variable in class java.lang.Math
-
The double
value that is closer than any other to pi, the ratio of the
circumference of a circle to its diameter.
- PKCS8EncodedKeySpec - Class in java.security.spec
-
This class represents the ASN.1 encoding of a private key, encoded according to the ASN.1 type
PrivateKeyInfo
.
- PKCS8EncodedKeySpec(byte[]) - Constructor for class java.security.spec.PKCS8EncodedKeySpec
-
Creates a new PKCS8EncodedKeySpec with the given encoded key.
- platformTimeMillis() - Static method in class ej.bon.Util
-
Gets an arbitrary time in milliseconds.
- platformTimeNanos() - Static method in class ej.bon.Util
-
Gets an arbitrary time in nanoseconds.
- play(AudioFile, int) - Method in class ej.audio.AudioPlayer
-
- play(int) - Method in class ej.audio.AudioPlayer
-
Plays the currently selected file in the Playlist.
- Playlist - Class in ej.audio
-
A playlist object using AudioFile.
- Playlist() - Constructor for class ej.audio.Playlist
-
Constructs a PlayList class containing a list for AudioFile.
- PM - Static variable in class java.util.Calendar
-
Value of the
Calendar.AM_PM
field indicating the period of the day from noon to just before
midnight.
- POINTER - Static variable in class ej.microui.event.Event
-
The POINTER event type.
- Pointer - Class in ej.microui.event.generator
-
A pointer event generator represents a pointing device that is usually associated to a group of physical buttons.
- Pointer(int, int, int) - Constructor for class ej.microui.event.generator.Pointer
-
Constructor with a specified area range (width
and height
) where elapsedTime, click and
doubleClick features are supported and enabled for the first nbButtons
(doubleClick feature is
initialized with a 200ms delay).
- Pointer(int, int) - Constructor for class ej.microui.event.generator.Pointer
-
Constructor with a specified area range (width
and height
) that does not support click,
doubleClick nor elapsedTime for any of its buttons.
- PointerEventHandler - Interface in ej.microui.event.controller
-
Event handler that manages
Pointer
events.
- poll() - Method in class ej.bon.ReferenceQueue
-
Queries the queue and returns and removes the first element of the queue.
- poll() - Method in class java.lang.ref.ReferenceQueue
-
Polls this queue to see if a reference object is available.
- PoolOfImmortalByteBuffers - Class in ej.sni
-
A pool of reusable immortal byte buffers.
- PoolOfImmortalByteBuffers(int, int) - Constructor for class ej.sni.PoolOfImmortalByteBuffers
-
Allocate a new pool of Immortals byte buffer resources
- PoolOfLimitedReusableResources - Class in ej.sni
-
A pool of resources where resources are allocated at creation time (no lazy allocation).
- PoolOfLimitedReusableResources(int, int) - Constructor for class ej.sni.PoolOfLimitedReusableResources
-
Allocate a new pool of resources
- PoolOfReusableResources - Class in ej.sni
-
A pool of reusable resources.
- PoolOfReusableResources(int) - Constructor for class ej.sni.PoolOfReusableResources
-
Allocate a new pool of resources
- pop() - Method in class java.util.Stack
-
Removes the object at the top of this stack and returns that object as the value of this
function.
- PortUnreachableException - Exception in java.net
-
Signals that an ICMP Port Unreachable message has been
received on a connected datagram.
- PortUnreachableException(String) - Constructor for exception java.net.PortUnreachableException
-
Constructs a new PortUnreachableException
with a
detail message.
- PortUnreachableException() - Constructor for exception java.net.PortUnreachableException
-
Construct a new PortUnreachableException
with no
detailed message.
- pos - Variable in class java.io.ByteArrayInputStream
-
The index of the next character to read from the input stream buffer.
- POSITIVE_INFINITY - Static variable in class java.lang.Double
-
A constant holding the positive infinity of type double
.
- POSITIVE_INFINITY - Static variable in class java.lang.Float
-
A constant holding the positive infinity of type float
.
- pow(double, double) - Static method in class ej.bon.XMath
-
Returns the value of the first argument raised to the power of the second
argument.
- pow(double, double) - Static method in class java.lang.Math
-
Returns the value of the first argument raised to the power of the second argument.
- PREPARE_QUEUE_FULL - Static variable in interface ej.bluetooth.BluetoothStatus
-
Prepare queue full.
- PRESSED - Static variable in class ej.microui.event.generator.Buttons
-
The "pressed" action.
- previous(int) - Method in class ej.audio.AudioPlayer
-
Plays the previous file in the
Playlist
.
- PREVIOUS - Static variable in class ej.microui.event.generator.Command
-
The "previous" command constant.
- previous() - Method in interface java.util.ListIterator
-
Returns the previous element in the list and moves the cursor position backwards.
- previousIndex() - Method in interface java.util.ListIterator
-
- Principal - Interface in ej.kf
-
This interface represents and identifies the Kernel or a Feature.
- Principal - Interface in java.security
-
This interface represents the abstract notion of a principal, which can be used to represent any entity, such as an
individual, a corporation, and a login id.
- print(boolean) - Method in class java.io.PrintStream
-
Prints a boolean value.
- print(char) - Method in class java.io.PrintStream
-
Prints a character.
- print(char[]) - Method in class java.io.PrintStream
-
Prints an array of characters.
- print(double) - Method in class java.io.PrintStream
-
Prints a double-precision floating-point number.
- print(float) - Method in class java.io.PrintStream
-
Prints a floating-point number.
- print(int) - Method in class java.io.PrintStream
-
Prints an integer.
- print(long) - Method in class java.io.PrintStream
-
Prints a long integer.
- print(Object) - Method in class java.io.PrintStream
-
Prints an object.
- print(String) - Method in class java.io.PrintStream
-
Prints a string.
- println() - Method in class java.io.PrintStream
-
Terminates the current line by writing the line separator string.
- println(boolean) - Method in class java.io.PrintStream
-
Prints a boolean and then terminate the line.
- println(char) - Method in class java.io.PrintStream
-
Prints a character and then terminate the line.
- println(char[]) - Method in class java.io.PrintStream
-
Prints an array of characters and then terminate the line.
- println(double) - Method in class java.io.PrintStream
-
Prints a double and then terminate the line.
- println(float) - Method in class java.io.PrintStream
-
Prints a float and then terminate the line.
- println(int) - Method in class java.io.PrintStream
-
Prints an integer and then terminate the line.
- println(long) - Method in class java.io.PrintStream
-
Prints a long and then terminate the line.
- println(Object) - Method in class java.io.PrintStream
-
Prints an Object and then terminate the line.
- println(String) - Method in class java.io.PrintStream
-
Prints a String and then terminate the line.
- printStackTrace() - Method in class java.lang.Throwable
-
Prints this throwable and its backtrace to the standard error stream.
- printStackTrace(PrintStream) - Method in class java.lang.Throwable
-
Prints this throwable and its backtrace to the specified print stream.
- PrintStream - Class in java.io
-
A PrintStream
adds functionality to another output stream, namely the ability to
print representations of various data values conveniently.
- PrintStream(OutputStream) - Constructor for class java.io.PrintStream
-
Creates a new print stream.
- PrintStream(OutputStream, boolean) - Constructor for class java.io.PrintStream
-
Creates a new print stream.
- PrintStream(OutputStream, boolean, String) - Constructor for class java.io.PrintStream
-
Creates a new print stream.
- PRIVATE_KEY - Static variable in class javax.crypto.Cipher
-
Constant used to indicate the to-be-unwrapped key is a "private key".
- PrivateKey - Interface in java.security
-
A private key.
- PROCEDURE_ALREADY_IN_PROGRESS - Static variable in interface ej.bluetooth.BluetoothStatus
-
Procedure already in progress.
- PropertyPermission - Class in java.util
-
This class is for property permissions.
- PropertyPermission(String, String) - Constructor for class java.util.PropertyPermission
-
Creates a new PropertyPermission object with the specified name.
- ProviderException - Exception in java.security
-
A runtime exception for Provider exceptions (such as
misconfiguration errors or unrecoverable internal errors),
which may be subclassed by Providers to
throw specialized, provider-specific runtime errors.
- ProviderException() - Constructor for exception java.security.ProviderException
-
Constructs a ProviderException with no detail message.
- ProviderException(String) - Constructor for exception java.security.ProviderException
-
Constructs a ProviderException with the specified detail
message.
- ProviderException(String, Throwable) - Constructor for exception java.security.ProviderException
-
Creates a ProviderException
with the specified
detail message and cause.
- ProviderException(Throwable) - Constructor for exception java.security.ProviderException
-
Creates a ProviderException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- Proxy<T> - Class in ej.kf
-
The superclass of proxy classes.
- Proxy() - Constructor for class ej.kf.Proxy
-
The default constructor.
- PUBLIC_KEY - Static variable in class javax.crypto.Cipher
-
Constant used to indicate the to-be-unwrapped key is a "public key".
- PublicKey - Interface in java.security
-
A public key.
- purge() - Method in class java.util.Timer
-
Removes all cancelled tasks from this timer's task queue.
- PURPLE - Static variable in interface ej.microui.display.Colors
-
The purple RGB color constant.
The value 0x800080
is assigned to PURPLE
.
- push(E) - Method in class java.util.Stack
-
Pushes an item onto the top of this stack.
- put(String, Object) - Static method in class ej.bon.Immutables
-
Maps the given ID to the given object in the immutable objects pool.
- put(K, V) - Method in class java.util.AbstractMap
-
Associates the specified value with the specified key in this map (optional operation).
- put(K, V) - Method in class java.util.Dictionary
-
Maps the specified key
to the specified value
in this dictionary.
- put(K, V) - Method in class java.util.HashMap
-
Associates the specified value with the specified key in this map.
- put(K, V) - Method in class java.util.Hashtable
-
Maps the specified key
to the specified value
in this hashtable.
- put(K, V) - Method in interface java.util.Map
-
Associates the specified value with the specified key in this map (optional operation).
- put(K, V) - Method in class java.util.WeakHashMap
-
Associates the specified value with the specified key in this map.
- putAll(Hashtable) - Static method in class ej.bon.Immutables
-
Maps all the mappings in the given table in the immutable objects pool.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.AbstractMap
-
Copies all of the mappings from the specified map to this map (optional operation).
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.HashMap
-
Copies all of the mappings from the specified map to this map.
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.Hashtable
-
Copies all of the mappings from the specified map to this hashtable.
- putAll(Map<? extends K, ? extends V>) - Method in interface java.util.Map
-
Copies all of the mappings from the specified map to this map (optional operation).
- putAll(Map<? extends K, ? extends V>) - Method in class java.util.WeakHashMap
-
Copies all of the mappings from the specified map to this map.
- random() - Static method in class java.lang.Math
-
Returns a double
value with a positive sign, greater than or equal to 0.0
and
less than 1.0
.
- Random - Class in java.util
-
An instance of this class is used to generate a stream of pseudorandom numbers.
- Random() - Constructor for class java.util.Random
-
Creates a new random number generator.
- Random(long) - Constructor for class java.util.Random
-
Creates a new random number generator using a single long
seed.
- RandomAccess - Interface in java.util
-
Marker interface used by List implementations to indicate that they support fast
(generally constant time) random access.
- READ - Static variable in interface ej.bluetooth.BluetoothPermissions
-
Read access, no encryption required.
- READ - Static variable in interface ej.bluetooth.BluetoothProperties
-
Indicates that the characteristic value may be read.
- READ - Static variable in class ej.ecom.DeviceManagerPermission
-
- READ - Static variable in class ej.ecom.io.Connector
-
Access mode READ.
- read(int, byte[]) - Method in class ej.sp.ShieldedPlug
-
Fills the given array with data from the block with the given ID.
- read(int, byte[], int) - Method in class ej.sp.ShieldedPlug
-
Fills the given array with block.length
bytes from the block with the given ID.
- read() - Method in class java.io.ByteArrayInputStream
-
Reads the next byte of data from this input stream.
- read(byte[], int, int) - Method in class java.io.ByteArrayInputStream
-
Reads up to len
bytes of data into an array of bytes from this input stream.
- read(byte[]) - Method in class java.io.DataInputStream
-
Reads some number of bytes from the contained input stream and stores them into the buffer array
b
.
- read(byte[], int, int) - Method in class java.io.DataInputStream
-
Reads up to len
bytes of data from the contained input stream into an array of
bytes.
- read() - Method in class java.io.FileInputStream
-
Reads a byte of data from this input stream.
- read(byte[]) - Method in class java.io.FileInputStream
-
Reads up to b.length
bytes of data from this input
stream into an array of bytes.
- read(byte[], int, int) - Method in class java.io.FileInputStream
-
Reads up to len
bytes of data from this input stream
into an array of bytes.
- read() - Method in class java.io.FilterInputStream
-
Reads the next byte of data from this input stream.
- read(byte[]) - Method in class java.io.FilterInputStream
-
Reads up to byte.length
bytes of data from this input stream into an array of bytes.
- read(byte[], int, int) - Method in class java.io.FilterInputStream
-
Reads up to len
bytes of data from this input stream into an array of bytes.
- read() - Method in class java.io.InputStream
-
Reads the next byte of data from the input stream.
- read(byte[]) - Method in class java.io.InputStream
-
Reads some number of bytes from the input stream and stores them into the buffer array
b
.
- read(byte[], int, int) - Method in class java.io.InputStream
-
Reads up to len
bytes of data from the input stream into an array of bytes.
- read() - Method in class java.io.InputStreamReader
-
Reads a single character.
- read(char[], int, int) - Method in class java.io.InputStreamReader
-
Reads characters into a portion of an array.
- read() - Method in class java.io.Reader
-
Reads a single character.
- read(char[]) - Method in class java.io.Reader
-
Reads characters into an array.
- read(char[], int, int) - Method in class java.io.Reader
-
Reads characters into a portion of an array.
- READ_AUTH - Static variable in interface ej.bluetooth.BluetoothPermissions
-
Read access, authentication required.
- READ_ENCRYPT - Static variable in interface ej.bluetooth.BluetoothPermissions
-
Read access, encryption required.
- READ_NOT_PERMITTED - Static variable in interface ej.bluetooth.BluetoothStatus
-
Read not permitted.
- READ_WRITE - Static variable in class ej.ecom.io.Connector
-
Access mode READ/WRITE.
- Readable - Interface in java.lang
-
This interface is only defined for hierarchy compatibility.
- readArray() - Method in class ej.bon.ResourceBuffer
-
- readBits(boolean) - Method in interface ej.ecom.io.BitsInput
-
Reads the next value of data from the input stream.
- readBits(int[], boolean) - Method in interface ej.ecom.io.BitsInput
-
Reads some number of values from the input stream and stores them into the buffer array data
.
- readBits(int[], int, int, boolean) - Method in interface ej.ecom.io.BitsInput
-
Reads up to len
values of data from the input stream into an array of values.
- readBits(short[], boolean) - Method in interface ej.ecom.io.BitsInput
-
Reads some number of values from the input stream and stores them into the buffer array data
.
- readBits(short[], int, int, boolean) - Method in interface ej.ecom.io.BitsInput
-
Reads up to len
values of data from the input stream into an array of values.
- readBits(byte[], boolean) - Method in interface ej.ecom.io.BitsInput
-
Reads some number of values from the input stream and stores them into the buffer array data
.
- readBits(byte[], int, int, boolean) - Method in interface ej.ecom.io.BitsInput
-
Reads up to len
values of data from the input stream into an array of values.
- readBoolean() - Method in class ej.bon.ResourceBuffer
-
Reads a boolean and increments position in the data.
- readBoolean() - Method in interface java.io.DataInput
-
Reads one input byte and returns true
if that byte is nonzero, false
if
that byte is zero.
- readBoolean() - Method in class java.io.DataInputStream
-
See the general contract of the readBoolean
method of DataInput
.
- readByte() - Method in class ej.bon.ResourceBuffer
-
Reads a byte and increments position in the data.
- readByte() - Method in interface java.io.DataInput
-
Reads and returns one input byte.
- readByte() - Method in class java.io.DataInputStream
-
See the general contract of the readByte
method of DataInput
.
- readChar(byte[], int) - Static method in class ej.bon.ByteArray
-
Reads a char in the given byte array at the given offset respecting the
endianness of the platform.
- readChar(byte[], int, int) - Static method in class ej.bon.ByteArray
-
Reads a char in the given byte array at the given offset respecting the
endianness of the array.
- readChar() - Method in class ej.bon.ResourceBuffer
-
Reads a char and increments position in the data.
- readChar() - Method in interface java.io.DataInput
-
Reads two input bytes and returns a char
value.
- readChar() - Method in class java.io.DataInputStream
-
See the general contract of the readChar
method of DataInput
.
- readDouble(int) - Method in class ej.sp.ShieldedPlug
-
Reads eight input bytes from the block with the given ID and returns a double
value.
The way the double
is built from the eight bytes is platform dependent.
- readDouble() - Method in interface java.io.DataInput
-
Reads eight input bytes and returns a double
value.
- readDouble() - Method in class java.io.DataInputStream
-
See the general contract of the readDouble
method of DataInput
.
- Reader - Class in java.io
-
Abstract class for reading character streams.
- Reader() - Constructor for class java.io.Reader
-
Creates a new character-stream reader whose critical sections will synchronize on the reader
itself.
- Reader(Object) - Constructor for class java.io.Reader
-
Creates a new character-stream reader whose critical sections will synchronize on the given
object.
- readFloat(int) - Method in class ej.sp.ShieldedPlug
-
Reads four input bytes from the block with the given ID and returns a float
value.
The way the float
is built from the four bytes is platform dependent.
- readFloat() - Method in interface java.io.DataInput
-
Reads four input bytes and returns a float
value.
- readFloat() - Method in class java.io.DataInputStream
-
See the general contract of the readFloat
method of DataInput
.
- readFully(byte[]) - Method in interface java.io.DataInput
-
Reads some bytes from an input stream and stores them into the buffer array b
.
- readFully(byte[], int, int) - Method in interface java.io.DataInput
-
Reads len
bytes from an input stream.
- readFully(byte[]) - Method in class java.io.DataInputStream
-
See the general contract of the readFully
method of DataInput
.
- readFully(byte[], int, int) - Method in class java.io.DataInputStream
-
See the general contract of the readFully
method of DataInput
.
- readInt(byte[], int) - Static method in class ej.bon.ByteArray
-
Reads an int in the given byte array at the given offset respecting the
endianness of the platform.
- readInt(byte[], int, int) - Static method in class ej.bon.ByteArray
-
Reads an int in the given byte array at the given offset respecting the
endianness of the array.
- readInt() - Method in class ej.bon.ResourceBuffer
-
Reads an integer and increments position in the data.
- readInt(int) - Method in class ej.sp.ShieldedPlug
-
Reads four input bytes from the block with the given ID and returns an int
value.
The way the int
is built from the four bytes is platform dependent.
- readInt() - Method in interface java.io.DataInput
-
Reads four input bytes and returns an int
value.
- readInt() - Method in class java.io.DataInputStream
-
See the general contract of the readInt
method of DataInput
.
- readLong(byte[], int) - Static method in class ej.bon.ByteArray
-
Reads a long in the given byte array at the given offset respecting the
endianness of the platform.
- readLong(byte[], int, int) - Static method in class ej.bon.ByteArray
-
Reads a long in the given byte array at the given offset respecting the
endianness of the array.
- readLong(int) - Method in class ej.sp.ShieldedPlug
-
Reads eight input bytes from the block with the given ID and returns a long
value.
The way the long
is built from the eight bytes is platform dependent.
- readLong() - Method in interface java.io.DataInput
-
Reads eight input bytes and returns a long
value.
- readLong() - Method in class java.io.DataInputStream
-
See the general contract of the readLong
method of DataInput
.
- readObject(int) - Method in class ej.sp.ShieldedPlug
-
Invokes the
readObject
method of the
SPReader
registered for the block with the given ID.
- readObject(ShieldedPlug, int) - Method in interface ej.sp.SPReader
-
Reads and returns an object from a block of the given
ShieldedPlug
.
- readPixel(int, int) - Method in class ej.microui.display.GraphicsContext
-
Obtains the ARGB color of the pixel at (x,y)
.
- readPixel(int, int) - Method in class ej.microui.display.Image
-
Obtains the ARGB color of the pixel at (x,y)
.
- readPosition() - Method in class ej.gnss.GnssManager
-
Read the position.
- readShort(byte[], int) - Static method in class ej.bon.ByteArray
-
Reads a short in the given byte array at the given offset respecting the
endianness of the platform.
- readShort(byte[], int, int) - Static method in class ej.bon.ByteArray
-
Reads a short in the given byte array at the given offset respecting the
endianness of the array.
- readShort() - Method in class ej.bon.ResourceBuffer
-
Reads a short and increments position in the data.
- readShort() - Method in interface java.io.DataInput
-
Reads two input bytes and returns a short
value.
- readShort() - Method in class java.io.DataInputStream
-
See the general contract of the readShort
method of DataInput
.
- readString() - Method in class ej.bon.ResourceBuffer
-
Reads a
String
and increments position in the data.
- readUnsignedByte(byte[], int) - Static method in class ej.bon.ByteArray
-
Reads an unsigned-byte in the given byte array at the given offset respecting
the endianness of the platform.
- readUnsignedByte() - Method in interface java.io.DataInput
-
Reads one input byte, zero-extends it to type int
, and returns the result, which is
therefore in the range 0
through 255
.
- readUnsignedByte() - Method in class java.io.DataInputStream
-
See the general contract of the readUnsignedByte
method of DataInput
.
- readUnsignedShort() - Method in interface java.io.DataInput
-
Reads two input bytes and returns an int
value in the range 0
through
65535
.
- readUnsignedShort() - Method in class java.io.DataInputStream
-
See the general contract of the readUnsignedShort
method of DataInput
.
- readUTF() - Method in interface java.io.DataInput
-
Reads in a string that has been encoded using a
modified UTF-8
format.
- readUTF(DataInput) - Static method in class java.io.DataInputStream
-
Reads from the stream
in
a representation of a Unicode character string encoded in
modified UTF-8 format; this string of characters is
then returned as a
String
.
- readUTF() - Method in class java.io.DataInputStream
-
See the general contract of the readUTF
method of DataInput
.
- readVarLong() - Method in class ej.bon.ResourceBuffer
-
Reads a 64-bits signed integer and increments position in the data.
- readVarSInt() - Method in class ej.bon.ResourceBuffer
-
Reads a 32-bits signed integer and increments position in the data.
- readVarUInt() - Method in class ej.bon.ResourceBuffer
-
Reads a 32-bits unsigned integer and increments position in the data.
- ready() - Method in class java.io.InputStreamReader
-
Tells whether this stream is ready to be read.
- ready() - Method in class java.io.Reader
-
Tells whether this stream is ready to be read.
- receive(Datagram) - Method in interface ej.ecom.io.DatagramConnection
-
- receive(DatagramPacket) - Method in class java.net.DatagramSocket
-
Receives a datagram packet from this socket.
- recordEvent(int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEvent(int, int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEvent(int, int, int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEvent(int, int, int, int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEvent(int, int, int, int, int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEvent(int, int, int, int, int, int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEvent(int, int, int, int, int, int, int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEvent(int, int, int, int, int, int, int, int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEvent(int, int, int, int, int, int, int, int, int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEvent(int, int, int, int, int, int, int, int, int, int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEvent(int, int, int, int, int, int, int, int, int, int, int) - Method in class ej.trace.Tracer
-
Record an event for this
Tracer
.
- recordEventEnd(int) - Method in class ej.trace.Tracer
-
Record the end of the execution of an event for this
Tracer
.
- recordEventEnd(int, int) - Method in class ej.trace.Tracer
-
Record the end of the execution of an event for this
Tracer
.
- RED - Static variable in interface ej.microui.display.Colors
-
The red RGB color constant.
The value 0xff0000
is assigned to RED
.
- Reference<T> - Class in java.lang.ref
-
Abstract base class for reference objects.
- ReferenceQueue<T> - Class in ej.bon
-
ReferenceQueue represents a queue of EnqueuedWeakReference.
- ReferenceQueue() - Constructor for class ej.bon.ReferenceQueue
-
- ReferenceQueue<T> - Class in java.lang.ref
-
Reference queues, to which registered reference objects are appended by the garbage collector
after the appropriate reachability changes are detected.
- ReferenceQueue() - Constructor for class java.lang.ref.ReferenceQueue
-
Constructs a new reference-object queue.
- ReflectiveOperationException - Exception in java.lang
-
Common superclass of exceptions thrown by reflective operations in core reflection.
- ReflectiveOperationException() - Constructor for exception java.lang.ReflectiveOperationException
-
Constructs a new exception with null
as its detail message.
- ReflectiveOperationException(String) - Constructor for exception java.lang.ReflectiveOperationException
-
Constructs a new exception with the specified detail message.
- ReflectiveOperationException(String, Throwable) - Constructor for exception java.lang.ReflectiveOperationException
-
Constructs a new exception with the specified detail message and cause.
- ReflectiveOperationException(Throwable) - Constructor for exception java.lang.ReflectiveOperationException
-
Constructs a new exception with the specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail
message of cause
).
- regionMatches(boolean, int, String, int, int) - Method in class java.lang.String
-
Tests if two string regions are equal.
- regionMatches(int, String, int, int) - Method in class java.lang.String
-
Tests if two string regions are equal.
- register(Class<D>, D) - Static method in class ej.ecom.DeviceManager
-
Registers a new device with the given type.
- RegistrationEvent<D extends Device> - Class in ej.ecom
-
- RegistrationEvent(D) - Constructor for class ej.ecom.RegistrationEvent
-
- RegistrationListener<D extends Device> - Interface in ej.ecom
-
The
RegistrationListener
interface defines methods for notification of registered and unregistered devices.
- rehash() - Method in class java.util.Hashtable
-
Increases the capacity of and internally reorganizes this hashtable, in order to accommodate and
access its entries more efficiently.
- REJANG - Static variable in class ej.microui.display.Font
-
Constant for rejang font identifier.
- release(Object) - Method in class ej.sni.PoolOfReusableResources
-
- RELEASED - Static variable in class ej.microui.event.generator.Buttons
-
The "released" action.
- remove() - Method in class ej.bon.ReferenceQueue
-
Queries the queue, returns and removes the first element of the queue.
- remove() - Method in class java.lang.ref.ReferenceQueue
-
Removes the next reference object in this queue, blocking until one becomes available.
- remove(long) - Method in class java.lang.ref.ReferenceQueue
-
Removes the next reference object in this queue, blocking until either one becomes available or
the given timeout period expires.
- remove(Object) - Method in class java.util.AbstractCollection
-
Removes a single instance of the specified element from this collection, if it is present
(optional operation).
- remove(int) - Method in class java.util.AbstractList
-
Removes the element at the specified position in this list (optional operation).
- remove(Object) - Method in class java.util.AbstractMap
-
Removes the mapping for a key from this map if it is present (optional operation).
- remove(int) - Method in class java.util.ArrayList
-
Removes the element at the specified position in this list.
- remove(Object) - Method in class java.util.ArrayList
-
Removes the first occurrence of the specified element from this list, if it is present.
- remove(Object) - Method in interface java.util.Collection
-
Removes a single instance of the specified element from this collection, if it is present
(optional operation).
- remove(Object) - Method in class java.util.Dictionary
-
Removes the key
(and its corresponding value
) from this dictionary.
- remove(Object) - Method in class java.util.HashMap
-
Removes the mapping for the specified key from this map if present.
- remove(Object) - Method in class java.util.Hashtable
-
Removes the key (and its corresponding value) from this hashtable.
- remove() - Method in interface java.util.Iterator
-
Removes from the underlying collection the last element returned by this iterator (optional
operation).
- remove(int) - Method in interface java.util.List
-
Removes the element at the specified position in this list (optional operation).
- remove(Object) - Method in interface java.util.List
-
Removes the first occurrence of the specified element from this list, if it is present (optional
operation).
- remove() - Method in interface java.util.ListIterator
-
- remove(Object) - Method in interface java.util.Map
-
Removes the mapping for a key from this map if it is present (optional operation).
- remove(Object) - Method in interface java.util.Set
-
Removes the specified element from this set if it is present (optional operation).
- remove(int) - Method in class java.util.Vector
-
Removes the element at the specified position in this Vector.
- remove(Object) - Method in class java.util.Vector
-
Removes the first occurrence of the specified element in this Vector If the Vector does not
contain the element, it is unchanged.
- remove(Object) - Method in class java.util.WeakHashMap
-
Removes the mapping for a key from this weak hash map if it is present.
- removeAll(Collection<?>) - Method in class java.util.AbstractCollection
-
Removes all of this collection's elements that are also contained in the specified collection
(optional operation).
- removeAll(Collection<?>) - Method in class java.util.AbstractSet
-
Removes from this set all of its elements that are contained in the specified collection
(optional operation).
- removeAll(Collection<?>) - Method in class java.util.ArrayList
-
Removes from this list all of its elements that are contained in the specified collection.
- removeAll(Collection<?>) - Method in interface java.util.Collection
-
Removes all of this collection's elements that are also contained in the specified collection
(optional operation).
- removeAll(Collection<?>) - Method in interface java.util.List
-
Removes from this list all of its elements that are contained in the specified collection
(optional operation).
- removeAll(Collection<?>) - Method in interface java.util.Set
-
Removes from this set all of its elements that are contained in the specified collection
(optional operation).
- removeAll(Collection<?>) - Method in class java.util.Vector
-
Removes from this Vector all of its elements that are contained in the specified Collection.
- removeAllElements() - Method in class java.util.Vector
-
Removes all components from this vector and sets its size to zero.
- removeAudioFile(AudioFile) - Method in class ej.audio.Playlist
-
Removes an audio file.
- removeBackgroundColor() - Method in class ej.microui.display.GraphicsContext
-
Removes the current background color.
- removeConverter(Converter<?>) - Static method in class ej.kf.Kernel
-
Removes the
Converter
to the list of converters.
- removeElement(Object) - Method in class java.util.Vector
-
Removes the first (lowest-indexed) occurrence of the argument from this vector.
- removeElementAt(int) - Method in class java.util.Vector
-
Deletes the component at the specified index.
- removeFeatureStateListener(FeatureStateListener) - Static method in class ej.kf.Kernel
-
Removes the
FeatureStateListener
to the list of listeners
that are notified when the state of a Feature has changed.
- removeFromSystemPool() - Method in class ej.microui.event.EventGenerator
-
Removes the generator from the system generators pool.
- removeRange(int, int) - Method in class java.util.AbstractList
-
Removes from this list all of the elements whose index is between fromIndex
, inclusive,
and toIndex
, exclusive.
- removeRange(int, int) - Method in class java.util.ArrayList
-
Removes from this list all of the elements whose index is between fromIndex
, inclusive,
and toIndex
, exclusive.
- removeRange(int, int) - Method in class java.util.Vector
-
Removes from this list all of the elements whose index is between fromIndex
, inclusive,
and toIndex
, exclusive.
- removeRegistrationListener(RegistrationListener<D>) - Static method in class ej.ecom.DeviceManager
-
Removes the given
RegistrationListener
from the list of listeners that are notified when a device is registered or unregistered.
- renameTo(File) - Method in class java.io.File
-
Renames the file denoted by this abstract pathname.
- Renderable - Interface in ej.microui.display
-
- RenderableChar - Class in ej.microui.display
-
- RenderableChar(Font, char) - Constructor for class ej.microui.display.RenderableChar
-
- RenderableString - Class in ej.microui.display
-
This class associates a string with a font.
- RenderableString(String, Font) - Constructor for class ej.microui.display.RenderableString
-
Creates a renderable string for given string and font.
- repaint() - Method in class ej.microui.display.Displayable
-
Requests a repaint for the entire displayable.
- repaint() - Method in class ej.microui.display.FlyingImage
-
Requests a repaint of the FlyingImage
.
- REPEATED - Static variable in class ej.microui.event.generator.Buttons
-
The "repeated" action (button held down).
- replace(char, char) - Method in class java.lang.String
-
Returns a new string resulting from replacing all occurrences of oldChar
in this
string with newChar
.
- replace(CharSequence, CharSequence) - Method in class java.lang.String
-
Replaces each substring of this string that matches the literal target sequence with the
specified literal replacement sequence.
- replace(int, int, String) - Method in class java.lang.StringBuffer
-
Replaces the characters in a substring of this sequence with characters in the specified
String
.
- replace(int, int, String) - Method in class java.lang.StringBuilder
-
Replaces the characters in a substring of this sequence with characters in the specified
String
.
- REQUEST_NOT_SUPPORTED - Static variable in interface ej.bluetooth.BluetoothStatus
-
Request not supported.
- reserve() - Method in class ej.sni.PoolOfReusableResources
-
Reserve a buffer.
- reset() - Method in interface ej.ecom.io.Datagram
-
- reset() - Method in class ej.microui.display.shape.AntiAliasedShapes
-
- reset() - Method in class ej.microui.display.shape.ThickShapes
-
Resets the
ThickShapes
global state to its initial values.
- reset() - Method in class ej.microui.event.generator.Keyboard
-
Reset the keyboard by flushing all pending characters.
- reset(int, int) - Method in class ej.microui.event.generator.Pointer
-
Stores the given position.
- reset(int) - Method in class ej.sp.ShieldedPlug
-
- reset() - Method in class java.io.ByteArrayInputStream
-
Resets the buffer to the marked position.
- reset() - Method in class java.io.ByteArrayOutputStream
-
Resets the count
field of this byte array output stream to zero, so that all
currently accumulated output in the output stream is discarded.
- reset() - Method in class java.io.FilterInputStream
-
Repositions this stream to the position at the time the mark
method was last called
on this input stream.
- reset() - Method in class java.io.InputStream
-
Repositions this stream to the position at the time the mark
method was last called
on this input stream.
- reset() - Method in class java.io.Reader
-
Resets the stream.
- reset() - Method in class java.security.MessageDigest
-
Resets the digest for further use.
- reset() - Method in class javax.crypto.Mac
-
Resets this Mac
object.
- resetAlpha() - Method in class ej.microui.display.transform.AbstractTransform
-
- resetRatios() - Method in class ej.microui.display.Font
-
Resets x and y ratios at their original value (construction value).
- resetTranslate() - Method in class ej.microui.display.transform.AbstractTransform
-
Resets translation ((0,0)
).
- ResourceArray - Class in ej.bon
-
- ResourceBuffer - Class in ej.bon
-
A resource buffer contains a set of data which is compacted to obtain a
minimal footprint.
- ResourceBuffer(String) - Constructor for class ej.bon.ResourceBuffer
-
- restartPlaylist() - Method in class ej.audio.AudioPlayer
-
Set the
Playlist
to the first {link @AudioFile}.
- RESUME - Static variable in class ej.microui.event.generator.Command
-
The "resume" command constant.
- retainAll(Collection<?>) - Method in class java.util.AbstractCollection
-
Retains only the elements in this collection that are contained in the specified collection
(optional operation).
- retainAll(Collection<?>) - Method in class java.util.ArrayList
-
Retains only the elements in this list that are contained in the specified collection.
- retainAll(Collection<?>) - Method in interface java.util.Collection
-
Retains only the elements in this collection that are contained in the specified collection
(optional operation).
- retainAll(Collection<?>) - Method in interface java.util.List
-
Retains only the elements in this list that are contained in the specified collection (optional
operation).
- retainAll(Collection<?>) - Method in interface java.util.Set
-
Retains only the elements in this set that are contained in the specified collection (optional
operation).
- retainAll(Collection<?>) - Method in class java.util.Vector
-
Retains only the elements in this Vector that are contained in the specified Collection.
- Retention - Annotation Type in java.lang.annotation
-
Indicates how long annotations with the annotated type are to be retained.
- RetentionPolicy - Enum in java.lang.annotation
-
Annotation retention policy.
- reverse() - Method in class java.lang.StringBuffer
-
Causes this character sequence to be replaced by the reverse of the sequence.
- reverse() - Method in class java.lang.StringBuilder
-
Causes this character sequence to be replaced by the reverse of the sequence.
- RIGHT - Static variable in class ej.microui.display.GraphicsContext
-
Constant for positioning the right side of the drawing at the anchor point.
- RIGHT - Static variable in class ej.microui.event.generator.Command
-
The "right" command constant.
- RIGHT_BOTTOM - Static variable in class ej.microui.display.GraphicsContext
-
Equivalent to RIGHT | BOTTOM
.
- RIGHT_TOP - Static variable in class ej.microui.display.GraphicsContext
-
Equivalent to RIGHT | TOP
.
- RIGHT_VCENTER - Static variable in class ej.microui.display.GraphicsContext
-
Equivalent to RIGHT | VCENTER
.
- rint(double) - Static method in class java.lang.Math
-
Returns the double
value that is closest in value to the argument and is equal to a
mathematical integer.
- Rotate - Class in ej.microui.display.transform
-
This class holds a context in order to perform a free rotation (0 to 360 degrees) on a renderable.
- Rotate() - Constructor for class ej.microui.display.transform.Rotate
-
- rotateLeft(int, int) - Static method in class java.lang.Integer
-
Returns the value obtained by rotating the two's complement binary representation of the
specified int
value left by the specified number of bits.
- rotateLeft(long, int) - Static method in class java.lang.Long
-
Returns the value obtained by rotating the two's complement binary representation of the
specified long
value left by the specified number of bits.
- rotateRight(int, int) - Static method in class java.lang.Integer
-
Returns the value obtained by rotating the two's complement binary representation of the
specified int
value right by the specified number of bits.
- rotateRight(long, int) - Static method in class java.lang.Long
-
Returns the value obtained by rotating the two's complement binary representation of the
specified long
value right by the specified number of bits.
- round(double) - Static method in class java.lang.Math
-
Returns the closest long
to the argument, with ties rounding up.
- round(float) - Static method in class java.lang.Math
-
Returns the closest int
to the argument, with ties rounding up.
- run(Runnable) - Static method in class ej.bon.Immortals
-
- run() - Method in class ej.bon.Timer
-
- run() - Method in class ej.bon.TimerTask
-
The action to be performed by this timer task.
- run() - Method in interface java.lang.Runnable
-
When an object implementing interface Runnable
is used to create a thread, starting
the thread causes the object's run
method to be called in that separately executing
thread.
- run() - Method in class java.lang.Thread
-
If this thread was constructed using a separate Runnable run object, then that Runnable object's
run method is called; otherwise, this method does nothing and returns.
- run() - Method in class java.util.TimerTask
-
The action to be performed by this timer task.
- RUNIC - Static variable in class ej.microui.display.Font
-
Constant for runic font identifier.
- Runnable - Interface in java.lang
-
The Runnable
interface should be implemented by any class whose instances are
intended to be executed by a thread.
- Runtime - Class in java.lang
-
Every Java application has a single instance of class Runtime
that allows the
application to interface with the environment in which the application is running.
- RuntimeException - Exception in java.lang
-
RuntimeException
is the superclass of those exceptions that can be thrown during the
normal operation of the Java Virtual Machine.
- RuntimeException() - Constructor for exception java.lang.RuntimeException
-
Constructs a new runtime exception with null
as its detail message.
- RuntimeException(String) - Constructor for exception java.lang.RuntimeException
-
Constructs a new runtime exception with the specified detail message.
- RuntimeException(String, Throwable) - Constructor for exception java.lang.RuntimeException
-
Constructs a new runtime exception with the specified detail message and cause.
- RuntimeException(Throwable) - Constructor for exception java.lang.RuntimeException
-
Constructs a new runtime exception with the specified cause and a detail message of
(cause==null ? null : cause.toString()) (which typically contains the class and detail
message of cause).
- RuntimePermission - Class in java.lang
-
This class is for runtime permissions.
- RuntimePermission(String) - Constructor for class java.lang.RuntimePermission
-
Creates a new RuntimePermission with the specified name.
- RuntimePermission(String, String) - Constructor for class java.lang.RuntimePermission
-
Creates a new RuntimePermission object with the specified name.
- runUnderContext(Module, Runnable) - Static method in class ej.kf.Kernel
-
- RW - Static variable in interface ej.bluetooth.BluetoothPermissions
-
Read and write access, no encryption required.
- RW_AUTH - Static variable in interface ej.bluetooth.BluetoothPermissions
-
Read and write access, authentication required.
- RW_ENCRYPT - Static variable in interface ej.bluetooth.BluetoothPermissions
-
Read and write access, encryption required.
- SafeVarargs - Annotation Type in java.lang
-
A programmer assertion that the body of the annotated method or constructor does not perform
potentially unsafe operations on its varargs parameter.
- SAMARITAN - Static variable in class ej.microui.display.Font
-
Constant for samaritan font identifier.
- SATURDAY - Static variable in class java.util.Calendar
-
- SAURASHTRA - Static variable in class ej.microui.display.Font
-
Constant for saurashtra font identifier.
- scalb(double, int) - Static method in class java.lang.Math
-
Return d
× 2scaleFactor
rounded as if performed by a single
correctly rounded floating-point multiply to a member of the double value set.
- scalb(float, int) - Static method in class java.lang.Math
-
Return f
× 2scaleFactor
rounded as if performed by a single
correctly rounded floating-point multiply to a member of the float value set.
- scan() - Method in class ej.ecom.wifi.WifiManager
-
Performs an active scan of available Wi-Fi access points.
- scan(boolean) - Method in class ej.ecom.wifi.WifiManager
-
Performs a scan of available access points.
- ScanCallbacks - Interface in ej.bluetooth.callbacks
-
The ScanCallbacks
interface provides callbacks related to scanning.
- schedule(TimerTask, long) - Method in class ej.bon.Timer
-
Schedules the specified task for execution after the specified delay.
- schedule(TimerTask, Date) - Method in class ej.bon.Timer
-
Schedules the specified task for execution at the specified time.
- schedule(TimerTask, long, long) - Method in class ej.bon.Timer
-
Schedules the specified task for repeated fixed-delay execution, beginning
after the specified delay.
- schedule(TimerTask, Date, long) - Method in class ej.bon.Timer
-
Schedules the specified task for repeated fixed-delay execution, beginning at
the specified time.
- 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, long, long) - Method in class ej.bon.Timer
-
Schedules the specified task for repeated fixed-rate execution, beginning
after the specified delay.
- scheduleAtFixedRate(TimerTask, Date, long) - Method in class ej.bon.Timer
-
Schedules the specified task for repeated fixed-rate execution, beginning at
the specified time.
- 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 after the
specified delay.
- scheduledExecutionTime() - Method in class ej.bon.TimerTask
-
Returns the scheduled execution time of the most recent actual execution of
this task.
- scheduledExecutionTime() - Method in class java.util.TimerTask
-
Returns the scheduled execution time of the most recent actual execution of this
task.
- search(Object) - Method in class java.util.Stack
-
Returns the 1-based position where an object is on this stack.
- SECOND - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating the second within the minute.
- SECRET_KEY - Static variable in class javax.crypto.Cipher
-
Constant used to indicate the to-be-unwrapped key is a "secret key".
- SecretKey - Interface in javax.crypto
-
A secret (symmetric) key.
- SecretKeySpec - Class in javax.crypto.spec
-
This class specifies a secret key in a provider-independent fashion.
- SecretKeySpec(byte[], String) - Constructor for class javax.crypto.spec.SecretKeySpec
-
Constructs a secret key from the given byte array.
- SecretKeySpec(byte[], int, int, String) - Constructor for class javax.crypto.spec.SecretKeySpec
-
Constructs a secret key from the given byte array, using the first len
bytes of key
,
starting at offset
inclusive.
- SecureRandom - Class in java.security
-
This class provides a cryptographically strong random number
generator (RNG).
- SecureRandom() - Constructor for class java.security.SecureRandom
-
- SecurityException - Exception in java.lang
-
Thrown by the security manager to indicate a security violation.
- SecurityException() - Constructor for exception java.lang.SecurityException
-
Constructs a SecurityException
with no detail message.
- SecurityException(String) - Constructor for exception java.lang.SecurityException
-
Constructs a SecurityException
with the specified detail message.
- SecurityException(String, Throwable) - Constructor for exception java.lang.SecurityException
-
Creates a SecurityException
with the specified detail message and cause.
- SecurityException(Throwable) - Constructor for exception java.lang.SecurityException
-
Creates a SecurityException
with the specified cause and a detail message of
(cause==null ? null : cause.toString()) (which typically contains the class and detail
message of cause).
- SecurityManager - Class in java.lang
-
The security manager is a class that allows applications to implement a security policy.
- SecurityManager() - Constructor for class java.lang.SecurityManager
-
Constructs a new SecurityManager
.
- SecurityMode - Enum in ej.ecom.wifi
-
List of Wi-Fi security modes.
- seek(long) - Method in class ej.bon.ResourceBuffer
-
Sets the buffer position indicator.
- seekToElementPointer(int) - Method in class ej.bon.ResourceArray
-
- SELECT - Static variable in class ej.microui.event.generator.Command
-
The "select" command constant.
- selectFileByIndex(int) - Method in class ej.audio.Playlist
-
Set the index of the selected file to the given index.
- selectNextFile() - Method in class ej.audio.Playlist
-
Select next file in list.
- selectPreviousFile() - Method in class ej.audio.Playlist
-
Select previous file in list.
- send(Datagram) - Method in interface ej.ecom.io.DatagramConnection
-
- send(int, int) - Method in class ej.microui.event.generator.Buttons
-
Sends a MicroUI event for the given action on given button to the listener of the Buttons.
- send(int) - Method in class ej.microui.event.generator.Command
-
Sends the given command to the event generator's listener
- send(int, char) - Method in class ej.microui.event.generator.Keyboard
-
Send an keyboard event to the MicroUI application.
- send(int, int) - Method in class ej.microui.event.generator.Pointer
-
Sends a MicroUI event for the given action on given button to the listener of the Pointer.
- send(int, int) - Method in class ej.microui.event.generator.States
-
Stores the given state value and sends a MicroUI
Event.STATE
to the States's listener.
- send(DatagramPacket) - Method in class java.net.DatagramSocket
-
Sends a datagram packet from this socket.
- sendEvent(int) - Method in class ej.microui.event.EventGenerator
-
- sendNotification(BluetoothDevice, byte[], boolean) - Method in class ej.bluetooth.BluetoothCharacteristic
-
Sends a notification on this characteristic to the given device with the given value.
- sendReadRequest() - Method in class ej.bluetooth.BluetoothAttribute
-
Sends a read request on this attribute.
- sendReadResponse(BluetoothDevice, int, byte[]) - Method in class ej.bluetooth.BluetoothAttribute
-
Sends the response to a read request sent by the given device on this attribute.
- sendWriteRequest(byte[]) - Method in class ej.bluetooth.BluetoothAttribute
-
Sends a write request on this attribute with the given value.
- sendWriteResponse(BluetoothDevice, int) - Method in class ej.bluetooth.BluetoothAttribute
-
Sends the response to a write request sent by the given device on this attribute.
- separator - Static variable in class java.io.File
-
The system-dependent default name-separator character, represented as a
string for convenience.
- separatorChar - Static variable in class java.io.File
-
The system-dependent default name-separator character.
- SEPTEMBER - Static variable in class java.util.Calendar
-
Value of the
Calendar.MONTH
field indicating the ninth month of the year in the Gregorian and
Julian calendars.
- Serializable - Interface in java.io
-
This interface is only defined for hierarchy compatibility.
- serialVersionUID - Static variable in interface java.security.Key
-
The class fingerprint that is set to indicate
serialization compatibility with a previous
version of the class.
- serialVersionUID - Static variable in interface java.security.PrivateKey
-
The class fingerprint that is set to indicate serialization
compatibility with a previous version of the class.
- serialVersionUID - Static variable in interface java.security.PublicKey
-
The class fingerprint that is set to indicate serialization compatibility with a previous version of the class.
- serialVersionUID - Static variable in interface javax.crypto.SecretKey
-
The class fingerprint that is set to indicate serialization compatibility since J2SE 1.4.
- ServerCallbacks - Interface in ej.bluetooth.callbacks
-
The ServerCallbacks
interface provides callbacks related to GATT server events.
- ServerSocket - Class in java.net
-
This class implements server sockets.
- ServerSocket() - Constructor for class java.net.ServerSocket
-
Creates an unbound server socket.
- ServerSocket(int) - Constructor for class java.net.ServerSocket
-
Creates a server socket, bound to the specified port.
- ServerSocket(int, int) - Constructor for class java.net.ServerSocket
-
Creates a server socket and binds it to the specified local port
number, with the specified backlog.
- ServerSocket(int, int, InetAddress) - Constructor for class java.net.ServerSocket
-
Create a server with the specified port, listen backlog, and
local IP address to bind to.
- ServerSocketFactory - Class in javax.net
-
This class creates server sockets.
- ServerSocketFactory() - Constructor for class javax.net.ServerSocketFactory
-
Creates a server socket factory.
- set(byte[], byte, int, int) - Static method in class ej.bon.ByteArray
-
Fills a zone of a byte array with the given value.
- set(int, E) - Method in class java.util.AbstractList
-
Replaces the element at the specified position in this list with the specified element (optional
operation).
- set(int, E) - Method in class java.util.ArrayList
-
Replaces the element at the specified position in this list with the specified element.
- set(int, int) - Method in class java.util.Calendar
-
Sets the given calendar field to the given value.
- set(int, int, int) - Method in class java.util.Calendar
-
Sets the values for the calendar fields YEAR
, MONTH
, and
DAY_OF_MONTH
.
- set(int, int, int, int, int) - Method in class java.util.Calendar
-
Sets the values for the calendar fields YEAR
, MONTH
,
DAY_OF_MONTH
, HOUR_OF_DAY
, and MINUTE
.
- set(int, int, int, int, int, int) - Method in class java.util.Calendar
-
Sets the values for the fields YEAR
, MONTH
, DAY_OF_MONTH
,
HOUR
, MINUTE
, and SECOND
.
- set(int, E) - Method in interface java.util.List
-
Replaces the element at the specified position in this list with the specified element (optional
operation).
- set(E) - Method in interface java.util.ListIterator
-
- Set<E> - Interface in java.util
-
A collection that contains no duplicate elements.
- set(int, E) - Method in class java.util.Vector
-
Replaces the element at the specified position in this Vector with the specified element.
- setAction(ImageFlip.Action) - Method in class ej.microui.display.transform.ImageFlip
-
- setAddress(Datagram) - Method in interface ej.ecom.io.Datagram
-
- setAddress(String) - Method in interface ej.ecom.io.Datagram
-
- setAddress(InetAddress) - Method in class java.net.DatagramPacket
-
Sets the IP address of the machine to which this datagram
is being sent.
- setAlpha(int) - Method in class ej.microui.display.transform.AbstractTransform
-
Specifiy the global opacity to apply on drawing.
- setAnalogValue(int, int, int) - Static method in class ej.hal.gpio.GPIO
-
Sets a value on the analog pin.
- setAngle(int) - Method in class ej.microui.display.transform.Rotate
-
Sets the new rotation angle.
- setBackgroundColor(int) - Method in class ej.microui.display.GraphicsContext
-
Sets the current background color.
Given value rgbColor
is interpreted as a 24-bit RGB color, where the eight least significant bits
matches the blue component, the next eight more significant bits matches the green component and the next eight
more significant bits matches the red component.
The background color is used by several drawings: draw text, draw anti-aliased line etc.
- setBacklight(int) - Method in class ej.microui.display.Display
-
Sets the backlight of the display.
- setBacklightColor(int) - Method in class ej.microui.display.Display
-
Sets the current backlight color, if it is allowed by implementation.
- setBaudrate(int) - Method in interface ej.ecom.io.CommConnection
-
Configures the baudrate.
- setBroadcast(boolean) - Method in class java.net.DatagramSocket
-
Enable/disable SO_BROADCAST.
- setCaps(AntiAliasedShapes.Cap, AntiAliasedShapes.Cap) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Configures the caps representation.
- setCertificateEntry(String, Certificate) - Method in class java.security.KeyStore
-
Assigns the given trusted certificate to the given alias.
- setChanged() - Method in class java.util.Observable
-
Marks this Observable object as having been changed; the hasChanged method will
now return true.
- setCharAt(int, char) - Method in class java.lang.StringBuffer
-
The character at the specified index is set to ch
.
- setCharAt(int, char) - Method in class java.lang.StringBuilder
-
The character at the specified index is set to ch
.
- setClientCallbacks(ClientCallbacks) - Method in class ej.bluetooth.BluetoothService
-
Sets the object which will receive the client events related to this service.
- setClip(int, int, int, int) - Method in class ej.microui.display.GraphicsContext
-
Sets the current clipping zone to the rectangle defined by the given location (x,y)
and size
(width,height)
.
- setColor(int) - Method in class ej.microui.display.GraphicsContext
-
Sets the current color.
Given value rgbColor
is interpreted as a 24-bit RGB color, where the eight least significant bits
matches the blue component, the next eight more significant bits matches the green component and the next eight
more significant bits matches the red component.
- setContrast(int) - Method in class ej.microui.display.Display
-
Sets the contrast of the display.
- setCurrentTimeMillis(long) - Static method in class ej.bon.Util
-
Sets the application time.
- setCurrentTimeMillis(Date) - Static method in class ej.bon.Util
-
Sets the application time.
- setDaemon(boolean) - Method in class java.lang.Thread
-
Marks this thread as either a
daemon thread
or a user thread.
- setData(byte[], int, int) - Method in interface ej.ecom.io.Datagram
-
- setData(byte[], int, int) - Method in class java.net.DatagramPacket
-
Set the data buffer for this packet.
- setData(byte[]) - Method in class java.net.DatagramPacket
-
Set the data buffer for this packet.
- setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler) - Static method in class ej.bon.Timer
-
Sets the default handler for uncaught exceptions.
- setDefaultUncaughtExceptionHandler(Thread.UncaughtExceptionHandler) - Static method in class java.lang.Thread
-
Set the default handler invoked when a thread abruptly terminates due to an uncaught exception,
and no other handler has been defined for that thread.
- setDelay(int) - Method in class ej.microui.event.generator.Keypad
-
Sets the delay The delay is the value between two press that allows to select a letter out of several.
- setDigitalValue(int, int, boolean) - Static method in class ej.hal.gpio.GPIO
-
Sets a value on the digital pin.
- setDNS(InetAddress[]) - Method in class ej.ecom.network.IPConfiguration
-
Sets the addresses of the DNS servers.
- setElementAt(E, int) - Method in class java.util.Vector
-
Sets the component at the specified index
of this vector to be the specified object.
- setEllipsis(boolean) - Method in class ej.microui.display.GraphicsContext
-
Enables (disables) truncation when rendering characters.
- setEndCap(AntiAliasedShapes.Cap) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Configures the cap representation of end of shape.
- setError() - Method in class java.io.PrintStream
-
Sets the error state of the stream to true
.
- setEventHandler(EventHandler) - Method in class ej.microui.event.EventGenerator
-
Sets an event handler to this event generator.
- setExecutable(boolean, boolean) - Method in class java.io.File
-
Sets the owner's or everybody's execute permission for this abstract
pathname.
- setExecutable(boolean) - Method in class java.io.File
-
A convenience method to set the owner's execute permission for this
abstract pathname.
- setExecutionQuota(int) - Method in class ej.kf.Module
-
Sets the execution quota allocated to the threads owned by this
Module
.
- setFactor(float) - Method in class ej.microui.display.transform.ImageScale
-
Set a new scaling factor.
- setFactorX(float) - Method in class ej.microui.display.transform.ImageScale
-
Set a new scaling X factor.
- setFactorY(float) - Method in class ej.microui.display.transform.ImageScale
-
Set a new scaling Y factor.
- setFade(int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Apply a new fade
.
- setFirstDayOfWeek(int) - Method in class java.util.Calendar
-
Sets what the first day of the week is; e.g., SUNDAY
in the U.S.,
MONDAY
in France.
- setFlyingImage(FlyingImage) - Method in class ej.microui.event.generator.Pointer
-
A Pointer generator manages positioning an image automatically if such image is set.
- setFlyingImage(FlyingImage, int, int) - Method in class ej.microui.event.generator.Pointer
-
A Pointer generator manages positioning an image automatically if such image is set.
- setFont(Font) - Method in class ej.microui.display.GraphicsContext
-
Sets the font for subsequent text operations.
- setGateway(InetAddress) - Method in class ej.ecom.network.IPConfiguration
-
Sets the IP address of the gateway.
- setID(String) - Method in class java.util.TimeZone
-
Sets the time zone ID.
- setImmortal(T) - Static method in class ej.bon.Immortals
-
Turns the given object into an immortal object.
- setInterface(InetAddress) - Method in class java.net.MulticastSocket
-
Set the multicast network interface used by methods
whose behavior would be affected by the value of the
network interface.
- setIP(InetAddress) - Method in class ej.ecom.network.IPConfiguration
-
Sets the IP address.
- setKeepAlive(boolean) - Method in class java.net.Socket
-
- setKeyEntry(String, byte[], Certificate[]) - Method in class java.security.KeyStore
-
Assigns the given key (that has already been protected) to the given
alias.
- setLanguage(String) - Method in class ej.microui.event.generator.Keypad
-
Sets the language.
- setLastModified(long) - Method in class java.io.File
-
Sets the last-modified time of the file or directory named by this
abstract pathname.
- setLedIntensity(int, int) - Static method in class ej.microui.led.Leds
-
Controls the intensity of the specified LED.
- setLedOff(int) - Static method in class ej.microui.led.Leds
-
Turns off the given LED.
- setLedOn(int) - Static method in class ej.microui.led.Leds
-
Turns on the given LED.
- setLength(int) - Method in interface ej.ecom.io.Datagram
-
- setLength(int) - Method in class java.lang.StringBuffer
-
Sets the length of the character sequence.
- setLength(int) - Method in class java.lang.StringBuilder
-
Sets the length of the character sequence.
- setLength(int) - Method in class java.net.DatagramPacket
-
Set the length for this packet.
- setLenient(boolean) - Method in class java.util.Calendar
-
Specifies whether or not date/time interpretation is to be lenient.
- setLocation(int, int) - Method in class ej.microui.display.FlyingImage
-
Sets the location of the FlyingImage
.
- setLoopbackMode(boolean) - Method in class java.net.MulticastSocket
-
Disable/Enable local loopback of multicast datagrams
The option is used by the platform's networking code as a hint
for setting whether multicast data will be looped back to
the local socket.
- setMinimalDaysInFirstWeek(int) - Method in class java.util.Calendar
-
Sets what the minimal days required in the first week of the year are; For example, if the first
week is defined as one that contains the first day of the first month of a year, call this method
with value 1.
- setMirror(boolean) - Method in class ej.microui.display.transform.AbstractTransform
-
Apply a vertical mirror on source image before drawing it.
- setMode(int, int, GPIO.Mode) - Static method in class ej.hal.gpio.GPIO
-
Configures the pin mode using the enumeration
GPIO.Mode
.
- setMode(int) - Method in class ej.microui.event.generator.Keypad
-
Sets the mode.
- setName(String) - Method in class ej.ecom.wifi.SoftAPConfiguration
-
Sets SoftAP name.
- setName(String) - Method in class java.lang.Thread
-
Changes the name of this thread to be equal to the argument name
.
- setNeedClientAuth(boolean) - Method in class javax.net.ssl.SSLServerSocket
-
Controls whether accept
ed server-mode
SSLSockets
will be initially configured to
require client authentication.
- setNeedClientAuth(boolean) - Method in class javax.net.ssl.SSLSocket
-
Configures the socket to require client authentication.
- setNetmask(InetAddress) - Method in class ej.ecom.network.IPConfiguration
-
Sets the netmask.
- setNetworkInterface(NetworkInterface) - Method in class java.net.MulticastSocket
-
Specify the network interface for outgoing multicast datagrams
sent on this socket.
- setOOBInline(boolean) - Method in class java.net.Socket
-
Enable/disable
SO_OOBINLINE
(receipt of TCP urgent data)
By default, this option is disabled and TCP urgent data received on a
socket is silently discarded.
- setOption(int, Object) - Method in interface java.net.SocketOptions
-
Enable/disable the option specified by optID.
- setOrigin(int, int) - Method in class ej.microui.event.generator.Pointer
-
Sets an origin offset.
- setParameter(AlgorithmParameterSpec) - Method in class java.security.Signature
-
Initializes this signature engine with the specified parameter set.
- setPassphrase(String) - Method in class ej.ecom.wifi.SoftAPConfiguration
-
Sets SoftAP passphrase.
- setPlaylistByIndex(int) - Method in class ej.audio.AudioPlayer
-
Read the file selected by the index on the
Playlist
.
- setPort(int) - Method in class java.net.DatagramPacket
-
Sets the port number on the remote host to which this datagram
is being sent.
- setPriority(int) - Method in class ej.microui.display.Display
-
Sets the priority of the display events processing.
- setPriority(int) - Method in class java.lang.Thread
-
Changes the priority of this thread.
- setProperty(String, String) - Method in class ej.microui.event.generator.GenericEventGenerator
-
Called at startup to configure the event generator with the specific properties set in the .microui file.
- setRatios(float, float) - Method in class ej.microui.display.Font
-
Sets x and y ratios.
- setReadable(boolean, boolean) - Method in class java.io.File
-
Sets the owner's or everybody's read permission for this abstract
pathname.
- setReadable(boolean) - Method in class java.io.File
-
A convenience method to set the owner's read permission for this abstract
pathname.
- setReader(int, SPReader) - Method in class ej.sp.ShieldedPlug
-
Registers the given
SPReader
to de-serialize objects from the block with the given ID.
If an
SPReader
is already defined for the block, it is replaced by the given
SPReader
.
- setReadOnly() - Method in class java.io.File
-
Marks the file or directory named by this abstract pathname so that
only read operations are allowed.
- setReceiveBufferSize(int) - Method in class java.net.DatagramSocket
-
Sets the SO_RCVBUF option to the specified value for this
DatagramSocket
.
- setReceiveBufferSize(int) - Method in class java.net.ServerSocket
-
Sets a default proposed value for the
SO_RCVBUF
option for sockets
accepted from this
ServerSocket
.
- setReceiveBufferSize(int) - Method in class java.net.Socket
-
Sets the
SO_RCVBUF
option to the
specified value for this
Socket
.
- setReuseAddress(boolean) - Method in class java.net.DatagramSocket
-
Enable/disable the SO_REUSEADDR socket option.
- setReuseAddress(boolean) - Method in class java.net.ServerSocket
-
- setReuseAddress(boolean) - Method in class java.net.Socket
-
- setRotationCenter(int, int) - Method in class ej.microui.display.transform.Rotate
-
Sets the new rotation center coordinates.
- setScale(Display) - Method in class ej.microui.event.generator.Pointer
-
Sets a display area for scaled area.
same as setScale(display.getWidth(), display.getHeight())
- setScale(int, int) - Method in class ej.microui.event.generator.Pointer
-
Sets a scaled area.
- setSecurityManager(SecurityManager) - Static method in class java.lang.System
-
Sets the System security.
- setSecurityMode(SecurityMode) - Method in class ej.ecom.wifi.AccessPoint
-
- setSecurityMode(SecurityMode) - Method in class ej.ecom.wifi.SoftAPConfiguration
-
Sets SoftAP security mode.
- setSeed(long) - Method in class java.util.Random
-
Sets the seed of this random number generator using a single long
seed.
- setSendBufferSize(int) - Method in class java.net.DatagramSocket
-
Sets the SO_SNDBUF option to the specified value for this
DatagramSocket
.
- setSendBufferSize(int) - Method in class java.net.Socket
-
Sets the
SO_SNDBUF
option to the
specified value for this
Socket
.
- setServerCallbacks(ServerCallbacks) - Method in class ej.bluetooth.BluetoothService
-
Sets the object which will receive the server events related to this service.
- setSize(int) - Method in class java.util.Vector
-
Sets the size of this vector.
- setSocketAddress(SocketAddress) - Method in class java.net.DatagramPacket
-
Sets the SocketAddress (usually IP address + port number) of the remote
host to which this datagram is being sent.
- setSoLinger(boolean, int) - Method in class java.net.Socket
-
Enable/disable
SO_LINGER
with the
specified linger time in seconds.
- setSoTimeout(int) - Method in class java.net.DatagramSocket
-
Enable/disable SO_TIMEOUT with the specified timeout, in
milliseconds.
- setSoTimeout(int) - Method in class java.net.ServerSocket
-
Enable/disable
SO_TIMEOUT
with the
specified timeout, in milliseconds.
- setSoTimeout(int) - Method in class java.net.Socket
-
Enable/disable
SO_TIMEOUT
with the specified timeout, in milliseconds.
- setSSID(String) - Method in class ej.ecom.wifi.AccessPoint
-
Sets the Service Set IDentification (SSID) of the network.
- setSSID(String) - Method in class ej.ecom.wifi.SoftAPConfiguration
-
Sets SoftAP SSID.
- setStartCap(AntiAliasedShapes.Cap) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Configures the cap representation of start of shape.
- setStrokeStyle(int) - Method in class ej.microui.display.GraphicsContext
-
Sets the stroke style of this graphics context.
- setTcpNoDelay(boolean) - Method in class java.net.Socket
-
Enable/disable
TCP_NODELAY
(disable/enable Nagle's algorithm).
- setThickness(int) - Method in class ej.microui.display.shape.AntiAliasedShapes
-
Apply a new thickness
.
- setThickness(int) - Method in class ej.microui.display.shape.ThickShapes
-
Apply a new thickness
.
- setTime(Date) - Method in class java.util.Calendar
-
Sets this Calendar's time with the given Date
.
- setTime(long) - Method in class java.util.Date
-
Sets this Date
object to represent a point in time that is time
milliseconds after January 1, 1970 00:00:00 GMT.
- setTimeInMillis(long) - Method in class java.util.Calendar
-
Sets this Calendar's current time from the given long value.
- setTimeToLive(int) - Method in class java.net.MulticastSocket
-
Set the default time-to-live for multicast packets sent out
on this MulticastSocket
in order to control the
scope of the multicasts.
- setTimeZone(TimeZone) - Method in class java.util.Calendar
-
Sets the time zone with the given time zone value.
- setTrafficClass(int) - Method in class java.net.DatagramSocket
-
Sets traffic class or type-of-service octet in the IP
datagram header for datagrams sent from this DatagramSocket.
- setTrafficClass(int) - Method in class java.net.Socket
-
Sets traffic class or type-of-service octet in the IP
header for packets sent from this Socket.
- setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler) - Method in class ej.bon.Timer
-
Sets the specific handler for uncaught exceptions on this
Timer
instance.
- setUncaughtExceptionHandler(UncaughtExceptionHandler) - Static method in class ej.kf.Kernel
-
- setUncaughtExceptionHandler(UncaughtExceptionHandler) - Static method in class ej.microui.MicroUI
-
Sets the exception handler called when an exception occurred in the library.
- setUncaughtExceptionHandler(Thread.UncaughtExceptionHandler) - Method in class java.lang.Thread
-
Set the handler invoked when this thread abruptly terminates due to an uncaught exception.
- setUseClientMode(boolean) - Method in class javax.net.ssl.SSLServerSocket
-
Controls whether accepted connections are in the (default) SSL
server mode, or the SSL client mode.
- setUseClientMode(boolean) - Method in class javax.net.ssl.SSLSocket
-
Configures the socket to use client (or server) mode when
handshaking.
- setValue(V) - Method in class java.util.AbstractMap.SimpleEntry
-
Replaces the value corresponding to this entry with the specified value.
- setValue(V) - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Replaces the value corresponding to this entry with the specified value (optional operation).
- setValue(V) - Method in interface java.util.Map.Entry
-
Replaces the value corresponding to this entry with the specified value (optional operation).
- setVolume(int) - Method in class ej.audio.AudioPlayer
-
Set the volume in percentage.
- setWritable(boolean, boolean) - Method in class java.io.File
-
Sets the owner's or everybody's write permission for this abstract
pathname.
- setWritable(boolean) - Method in class java.io.File
-
A convenience method to set the owner's write permission for this abstract
pathname.
- setWriter(int, SPWriter) - Method in class ej.sp.ShieldedPlug
-
Registers the given
SPWriter
to serialize objects into the block with the given ID.
If an
SPWriter
is already defined for the block, it is replaced by the given
SPWriter
.
- ShieldedPlug - Class in ej.sp
-
A shielded plug is a database that contains several memory blocks.
- Short - Class in java.lang
-
The Short
class wraps a value of primitive type short
in an object.
- Short(short) - Constructor for class java.lang.Short
-
Constructs a newly allocated Short
object that represents the specified short
value.
- Short(String) - Constructor for class java.lang.Short
-
Constructs a newly allocated Short
object that represents the short
value
indicated by the String
parameter.
- SHORT - Static variable in class java.util.Calendar
-
A style specifier indicating a short name, such as "Jan".
- SHORT - Static variable in class java.util.TimeZone
-
A style specifier for getDisplayName()
indicating a short name, such as "PST."
- SHORT_SIZE - Static variable in class ej.bon.ByteArray
-
The size of a short.
- ShortBufferException - Exception in javax.crypto
-
This exception is thrown when an output buffer provided by the user
is too short to hold the operation result.
- ShortBufferException() - Constructor for exception javax.crypto.ShortBufferException
-
Constructs a ShortBufferException with no detail
message.
- ShortBufferException(String) - Constructor for exception javax.crypto.ShortBufferException
-
Constructs a ShortBufferException with the specified
detail message.
- shortValue() - Method in class java.lang.Byte
-
Returns the value of this Byte
as a short
.
- shortValue() - Method in class java.lang.Double
-
Returns the value of this Double
as a short
(by casting to a short
).
- shortValue() - Method in class java.lang.Float
-
Returns the value of this Float
as a short
(by casting to a short
).
- shortValue() - Method in class java.lang.Integer
-
Returns the value of this Integer
as a short
.
- shortValue() - Method in class java.lang.Long
-
Returns the value of this Long
as a short
.
- shortValue() - Method in class java.lang.Number
-
Returns the value of the specified number as a short
.
- shortValue() - Method in class java.lang.Short
-
Returns the value of this Short
as a short
.
- show() - Method in class ej.microui.display.Displayable
-
Sets the displayable as visible on its display.
- show() - Method in class ej.microui.display.FlyingImage
-
Sets the FlyingImage
as visible on its display.
- showNotify() - Method in class ej.microui.display.Displayable
-
This method is called by system as soon as the displayable becomes visible.
- SIGN - Static variable in class java.security.Signature
-
Possible
Signature.state
value, signifying that
this signature object has been initialized for signing.
- sign() - Method in class java.security.Signature
-
Returns the signature bytes of all the data updated.
- sign(byte[], int, int) - Method in class java.security.Signature
-
Finishes the signature operation and stores the resulting signature
bytes in the provided buffer outbuf
, starting at
offset
.
- Signature - Class in java.security
-
The Signature class is used to provide applications the functionality
of a digital signature algorithm.
- Signature(String) - Constructor for class java.security.Signature
-
Creates a Signature object for the specified algorithm.
- SignatureException - Exception in java.security
-
This is the generic Signature exception.
- SignatureException() - Constructor for exception java.security.SignatureException
-
Constructs a SignatureException with no detail message.
- SignatureException(String) - Constructor for exception java.security.SignatureException
-
Constructs a SignatureException with the specified detail
message.
- SignatureException(String, Throwable) - Constructor for exception java.security.SignatureException
-
Creates a SignatureException
with the specified
detail message and cause.
- SignatureException(Throwable) - Constructor for exception java.security.SignatureException
-
Creates a SignatureException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause
).
- SignatureSpi - Class in java.security
-
This class defines the Service Provider Interface (SPI)
for the Signature
class, which is used to provide the
functionality of a digital signature algorithm.
- SignatureSpi() - Constructor for class java.security.SignatureSpi
-
- signum(int) - Static method in class java.lang.Integer
-
Returns the signum function of the specified int
value.
- signum(long) - Static method in class java.lang.Long
-
Returns the signum function of the specified long
value.
- signum(double) - Static method in class java.lang.Math
-
Returns the signum function of the argument; zero if the argument is zero, 1.0 if the argument is
greater than zero, -1.0 if the argument is less than zero.
- signum(float) - Static method in class java.lang.Math
-
Returns the signum function of the argument; zero if the argument is zero, 1.0f if the argument
is greater than zero, -1.0f if the argument is less than zero.
- SILVER - Static variable in interface ej.microui.display.Colors
-
The silver RGB color constant.
The value 0xc0c0c0
is assigned to SILVER
.
- SimpleEntry(Map.Entry<? extends K, ? extends V>) - Constructor for class java.util.AbstractMap.SimpleEntry
-
Creates an entry representing the same mapping as the specified entry.
- SimpleEntry(K, V) - Constructor for class java.util.AbstractMap.SimpleEntry
-
Creates an entry representing a mapping from the specified key to the specified value.
- SimpleImmutableEntry(Map.Entry<? extends K, ? extends V>) - Constructor for class java.util.AbstractMap.SimpleImmutableEntry
-
Creates an entry representing the same mapping as the specified entry.
- SimpleImmutableEntry(K, V) - Constructor for class java.util.AbstractMap.SimpleImmutableEntry
-
Creates an entry representing a mapping from the specified key to the specified value.
- sin(double) - Static method in class ej.bon.XMath
-
Returns the trigonometric sine of an angle.
- sin(double) - Static method in class java.lang.Math
-
Returns the trigonometric sine of an angle.
- Singleton - Static variable in class ej.microui.display.shape.AntiAliasedShapes
-
- Singleton - Static variable in class ej.microui.display.shape.ThickShapes
-
- Singleton - Static variable in class ej.microui.display.transform.ImageDeformation
-
Default instance created on MicroUI framework startup.
- Singleton - Static variable in class ej.microui.display.transform.ImageFlip
-
Default instance created on MicroUI framework startup.
- Singleton - Static variable in class ej.microui.display.transform.ImageRotation
-
Deprecated.
Default instance created on MicroUI framework startup.
- Singleton - Static variable in class ej.microui.display.transform.ImageScale
-
Default instance created on MicroUI framework startup.
- sinh(double) - Static method in class java.lang.Math
-
Returns the hyperbolic sine of a double
value.
- SINHALA - Static variable in class ej.microui.display.Font
-
Constant for sinhala font identifier.
- size() - Method in class java.io.ByteArrayOutputStream
-
Returns the current size of the buffer.
- size() - Method in class java.io.DataOutputStream
-
Returns the current value of the counter written
, the number of bytes written to
this data output stream so far.
- SIZE - Static variable in class java.lang.Byte
-
The number of bits used to represent a byte
value in two's complement binary form.
- SIZE - Static variable in class java.lang.Character
-
The number of bits used to represent a char value in unsigned binary form, constant
16
.
- SIZE - Static variable in class java.lang.Double
-
The number of bits used to represent a double
value.
- SIZE - Static variable in class java.lang.Float
-
The number of bits used to represent a float
value.
- SIZE - Static variable in class java.lang.Integer
-
The number of bits used to represent an int
value in two's complement binary form.
- SIZE - Static variable in class java.lang.Long
-
The number of bits used to represent a long
value in two's complement binary form.
- SIZE - Static variable in class java.lang.Short
-
The number of bits used to represent a short
value in two's complement binary form.
- size() - Method in class java.security.KeyStore
-
Retrieves the number of entries in this keystore.
- size() - Method in class java.util.AbstractCollection
-
Returns the number of elements in this collection.
- size() - Method in class java.util.AbstractMap
-
Returns the number of key-value mappings in this map.
- size() - Method in class java.util.ArrayList
-
Returns the number of elements in this list.
- size() - Method in interface java.util.Collection
-
Returns the number of elements in this collection.
- size() - Method in class java.util.Dictionary
-
Returns the number of entries (distinct keys) in this dictionary.
- size() - Method in class java.util.HashMap
-
Returns the number of key-value mappings in this map.
- size() - Method in class java.util.Hashtable
-
Returns the number of keys in this hashtable.
- size() - Method in interface java.util.List
-
Returns the number of elements in this list.
- size() - Method in interface java.util.Map
-
Returns the number of key-value mappings in this map.
- size() - Method in interface java.util.Set
-
Returns the number of elements in this set (its cardinality).
- size() - Method in class java.util.Vector
-
Returns the number of components in this vector.
- size() - Method in class java.util.WeakHashMap
-
Returns the number of key-value mappings in this map.
- skip(long) - Method in class java.io.ByteArrayInputStream
-
Skips n
bytes of input from this input stream.
- skip(long) - Method in class java.io.FileInputStream
-
Skips over and discards n
bytes of data from the
input stream.
- skip(long) - Method in class java.io.FilterInputStream
-
Skips over and discards n
bytes of data from the input stream.
- skip(long) - Method in class java.io.InputStream
-
Skips over and discards n
bytes of data from this input stream.
- skip(long) - Method in class java.io.Reader
-
Skips characters.
- skipBytes(int) - Method in interface java.io.DataInput
-
Makes an attempt to skip over n
bytes of data from the input stream, discarding the
skipped bytes.
- skipBytes(int) - Method in class java.io.DataInputStream
-
See the general contract of the skipBytes
method of DataInput
.
- sleep(long) - Static method in class java.lang.Thread
-
Causes the currently executing thread to sleep (temporarily cease execution) for the specified
number of milliseconds, subject to the precision and accuracy of system timers and schedulers.
- sleep(long, int) - Static method in class java.lang.Thread
-
Causes the currently executing thread to sleep (temporarily cease execution) for the specified
number of milliseconds plus the specified number of nanoseconds, subject to the precision and
accuracy of system timers and schedulers.
- SNI - Class in ej.sni
-
- SNI() - Constructor for class ej.sni.SNI
-
- SO_BINDADDR - Static variable in interface java.net.SocketOptions
-
Fetch the local address binding of a socket (this option cannot
be "set" only "gotten", since sockets are bound at creation time,
and so the locally bound address cannot be changed).
- SO_BROADCAST - Static variable in interface java.net.SocketOptions
-
Sets SO_BROADCAST for a socket.
- SO_KEEPALIVE - Static variable in interface java.net.SocketOptions
-
When the keepalive option is set for a TCP socket and no data
has been exchanged across the socket in either direction for
2 hours (NOTE: the actual value is implementation dependent),
TCP automatically sends a keepalive probe to the peer.
- SO_LINGER - Static variable in interface java.net.SocketOptions
-
Specify a linger-on-close timeout.
- SO_OOBINLINE - Static variable in interface java.net.SocketOptions
-
When the OOBINLINE option is set, any TCP urgent data received on
the socket will be received through the socket input stream.
- SO_RCVBUF - Static variable in interface java.net.SocketOptions
-
Set a hint the size of the underlying buffers used by the
platform for incoming network I/O.
- SO_REUSEADDR - Static variable in interface java.net.SocketOptions
-
Sets SO_REUSEADDR for a socket.
- SO_SNDBUF - Static variable in interface java.net.SocketOptions
-
Set a hint the size of the underlying buffers used by the
platform for outgoing network I/O.
- SO_TIMEOUT - Static variable in interface java.net.SocketOptions
-
Set a timeout on blocking Socket operations:
- Socket - Class in java.net
-
This class implements client sockets (also called just
"sockets").
- Socket() - Constructor for class java.net.Socket
-
Creates an unconnected socket, with the
system-default type of SocketImpl.
- Socket(String, int) - Constructor for class java.net.Socket
-
Creates a stream socket and connects it to the specified port
number on the named host.
- Socket(InetAddress, int) - Constructor for class java.net.Socket
-
Creates a stream socket and connects it to the specified port
number at the specified IP address.
- Socket(String, int, InetAddress, int) - Constructor for class java.net.Socket
-
Creates a socket and connects it to the specified remote host on
the specified remote port.
- Socket(InetAddress, int, InetAddress, int) - Constructor for class java.net.Socket
-
Creates a socket and connects it to the specified remote address on
the specified remote port.
- SocketAddress - Class in java.net
-
This class represents a Socket Address with no protocol attachment.
- SocketAddress() - Constructor for class java.net.SocketAddress
-
- SocketException - Exception in java.net
-
Thrown to indicate that there is an error creating or accessing a Socket.
- SocketException(String) - Constructor for exception java.net.SocketException
-
Constructs a new SocketException
with the
specified detail message.
- SocketException() - Constructor for exception java.net.SocketException
-
Constructs a new SocketException
with no detail message.
- SocketFactory - Class in javax.net
-
This class creates sockets.
- SocketFactory() - Constructor for class javax.net.SocketFactory
-
Creates a SocketFactory
.
- SocketOptions - Interface in java.net
-
Interface of methods to get/set socket options.
- SocketPermission - Class in java.net
-
This class represents access to a network via sockets.
- SocketPermission(String, String) - Constructor for class java.net.SocketPermission
-
Creates a new SocketPermission object with the specified actions.
- SocketTimeoutException - Exception in java.net
-
Signals that a timeout has occurred on a socket read or accept.
- SocketTimeoutException(String) - Constructor for exception java.net.SocketTimeoutException
-
Constructs a new SocketTimeoutException with a detail
message.
- SocketTimeoutException() - Constructor for exception java.net.SocketTimeoutException
-
Construct a new SocketTimeoutException with no detailed message.
- SoftAPConfiguration - Class in ej.ecom.wifi
-
Software enabled Access Point (SoftAP) configuration.
- SoftAPConfiguration() - Constructor for class ej.ecom.wifi.SoftAPConfiguration
-
- SOLID - Static variable in class ej.microui.display.GraphicsContext
-
Constant for the SOLID
stroke style.
- SOUND_OFF - Static variable in class ej.audio.AudioPlayer
-
Boolean indicating a mute state.
- SOUND_ON - Static variable in class ej.audio.AudioPlayer
-
Boolean indicating sound output is ON.
- source - Variable in class java.util.EventObject
-
The object on which the Event initially occurred.
- SPReader - Interface in ej.sp
-
The SPReader
interface provides a method for reconstructing objects from a block.
- SPWriter - Interface in ej.sp
-
The SPWriter
interface provides a method for serializing objects into a block.
- sqrt(double) - Static method in class ej.bon.XMath
-
Returns the correctly rounded positive square root of a double
value.
- sqrt(double) - Static method in class java.lang.Math
-
Returns the correctly rounded positive square root of a double
value.
- SSLContext - Class in javax.net.ssl
-
Instances of this class represent a secure socket protocol
implementation which acts as a factory for secure socket
factories or SSLEngine
s.
- SSLContext() - Constructor for class javax.net.ssl.SSLContext
-
- SSLContextSpi - Class in javax.net.ssl
-
This class defines the Service Provider Interface (SPI)
for the SSLContext
class.
- SSLContextSpi() - Constructor for class javax.net.ssl.SSLContextSpi
-
- SSLException - Exception in javax.net.ssl
-
Indicates some kind of error detected by an SSL subsystem.
- SSLException(String) - Constructor for exception javax.net.ssl.SSLException
-
Constructs an exception reporting an error found by
an SSL subsystem.
- SSLException(String, Throwable) - Constructor for exception javax.net.ssl.SSLException
-
Creates a SSLException
with the specified
detail message and cause.
- SSLException(Throwable) - Constructor for exception javax.net.ssl.SSLException
-
Creates a SSLException
with the specified cause
and a detail message of (cause==null ? null : cause.toString())
(which typically contains the class and detail message of
cause).
- SSLHandshakeException - Exception in javax.net.ssl
-
Indicates that the client and server could not negotiate the
desired level of security.
- SSLHandshakeException(String) - Constructor for exception javax.net.ssl.SSLHandshakeException
-
Constructs an exception reporting an error found by
an SSL subsystem during handshaking.
- SSLPermission - Class in javax.net.ssl
-
This class is for various network permissions.
- SSLPermission(String) - Constructor for class javax.net.ssl.SSLPermission
-
Creates a new SSLPermission with the specified name.
- SSLPermission(String, String) - Constructor for class javax.net.ssl.SSLPermission
-
Creates a new SSLPermission object with the specified name.
- SSLServerSocket - Class in javax.net.ssl
-
This class extends ServerSocket
s and
provides secure server sockets using protocols such as the Secure
Sockets Layer (SSL) or Transport Layer Security (TLS) protocols.
- SSLServerSocket() - Constructor for class javax.net.ssl.SSLServerSocket
-
Used only by subclasses.
- SSLServerSocket(int) - Constructor for class javax.net.ssl.SSLServerSocket
-
Used only by subclasses.
- SSLServerSocket(int, int) - Constructor for class javax.net.ssl.SSLServerSocket
-
Used only by subclasses.
- SSLServerSocket(int, int, InetAddress) - Constructor for class javax.net.ssl.SSLServerSocket
-
Used only by subclasses.
- SSLServerSocketFactory - Class in javax.net.ssl
-
SSLServerSocketFactory
s create
SSLServerSocket
s.
- SSLServerSocketFactory() - Constructor for class javax.net.ssl.SSLServerSocketFactory
-
Constructor is used only by subclasses.
- SSLSocket - Class in javax.net.ssl
-
This class extends Socket
s and provides secure
socket using protocols such as the "Secure
Sockets Layer" (SSL) or IETF "Transport Layer Security" (TLS) protocols.
- SSLSocket() - Constructor for class javax.net.ssl.SSLSocket
-
Used only by subclasses.
- SSLSocket(String, int) - Constructor for class javax.net.ssl.SSLSocket
-
Used only by subclasses.
- SSLSocket(InetAddress, int) - Constructor for class javax.net.ssl.SSLSocket
-
Used only by subclasses.
- SSLSocket(String, int, InetAddress, int) - Constructor for class javax.net.ssl.SSLSocket
-
Used only by subclasses.
- SSLSocket(InetAddress, int, InetAddress, int) - Constructor for class javax.net.ssl.SSLSocket
-
Used only by subclasses.
- SSLSocketFactory - Class in javax.net.ssl
-
SSLSocketFactory
s create SSLSocket
s.
- SSLSocketFactory() - Constructor for class javax.net.ssl.SSLSocketFactory
-
Constructor is used only by subclasses.
- Stack<E> - Class in java.util
-
The Stack
class represents a last-in-first-out (LIFO) stack of objects.
- Stack() - Constructor for class java.util.Stack
-
Creates an empty Stack.
- StackOverflowError - Error in java.lang
-
Thrown when a stack overflow occurs because an application recurses too deeply.
- StackOverflowError() - Constructor for error java.lang.StackOverflowError
-
Constructs a StackOverflowError
with no detail message.
- StackOverflowError(String) - Constructor for error java.lang.StackOverflowError
-
Constructs a StackOverflowError
with the specified detail message.
- StackTraceElement - Class in java.lang
-
An element in a stack trace.
- start(NetworkInterface) - Static method in class ej.ecom.network.NetworkInterfaceManager
-
Starts a network interface (hardware side).
- start() - Method in class ej.kf.Feature
-
Causes this Feature to start.
- start() - Method in interface ej.kf.FeatureEntryPoint
-
This method is called once by the Kernel when a Feature has been newly started.
- START - Static variable in class ej.microui.event.generator.Command
-
The "start" command constant.
- start() - Static method in class ej.microui.MicroUI
-
Starts MicroUI.
It implies starting event serialization as well as rendering mechanisms.
This method does nothing if MicroUI is already started.
- start() - Method in class java.lang.Thread
-
Causes this thread to begin execution; the Java Virtual Machine calls the run
method
of this thread.
- startAdvertising(AdvertisementCallbacks, ConnectionCallbacks, byte[]) - Method in class ej.bluetooth.BluetoothAdapter
-
Starts advertising.
- startHandshake() - Method in class javax.net.ssl.SSLSocket
-
Starts an SSL handshake on this connection.
- startScanning(ScanCallbacks) - Method in class ej.bluetooth.BluetoothAdapter
-
Starts scanning.
- startsWith(String) - Method in class java.lang.String
-
Tests if this string starts with the specified prefix.
- startsWith(String, int) - Method in class java.lang.String
-
Tests if the substring of this string beginning at the specified index starts with the specified
prefix.
- startTrace() - Static method in class ej.trace.Tracer
-
Starts to record the events.
- STATE - Static variable in class ej.microui.event.Event
-
The STATE event type.
- state - Variable in class java.security.Signature
-
Current state of this signature object.
- stateChanged(Feature, Feature.State) - Method in interface ej.kf.FeatureStateListener
-
Called when the state of a Feature has changed.
- States - Class in ej.microui.event.generator
-
A states event generator is usually associated to a group of physical devices holding a position (switch, rotary
wheel encoder, ...) and allows to generate events relating to them.
- States(int[], int[]) - Constructor for class ej.microui.event.generator.States
-
Creates a states generator.
- stop(NetworkInterface) - Static method in class ej.ecom.network.NetworkInterfaceManager
-
Stops a network interface (hardware side).
- stop() - Method in class ej.kf.Feature
-
Causes this Feature to stop.
- stop() - Method in interface ej.kf.FeatureEntryPoint
-
This method is called once by the Kernel when a Feature is going to be unloaded.
- STOP - Static variable in class ej.microui.event.generator.Command
-
The "stop" command constant.
- stop() - Static method in class ej.microui.MicroUI
-
Stops MicroUI.
It implies stopping any potential event serialization as well as rendering mechanisms.
This method does nothing if MicroUI is already stopped.
- stopAdvertising() - Method in class ej.bluetooth.BluetoothAdapter
-
Stops advertising.
- stopScanning() - Method in class ej.bluetooth.BluetoothAdapter
-
Stops scanning.
- stopTrace() - Static method in class ej.trace.Tracer
-
Stops to record the events.
- StreamConnection - Interface in ej.ecom.io
-
This interface defines a bidirectional connection: a connection on which an
InputStream
and an
OutputStream
can be open.
- StreamConnectionNotifier - Interface in ej.ecom.io
-
- String - Class in java.lang
-
The String
class represents character strings.
- String() - Constructor for class java.lang.String
-
Initializes a newly created String
object so that it represents an empty character
sequence.
- String(byte[]) - Constructor for class java.lang.String
-
Constructs a new String
by decoding the specified array of bytes using the platform's
default charset.
- String(byte[], int, int) - Constructor for class java.lang.String
-
Constructs a new String
by decoding the specified subarray of bytes using the platform's
default charset.
- String(byte[], int, int, String) - Constructor for class java.lang.String
-
Constructs a new String
by decoding the specified subarray of bytes using the specified
charset.
- String(byte[], String) - Constructor for class java.lang.String
-
Constructs a new String
by decoding the specified array of bytes using the specified
charset.
- String(char[]) - Constructor for class java.lang.String
-
Allocates a new String
so that it represents the sequence of characters currently
contained in the character array argument.
- String(char[], int, int) - Constructor for class java.lang.String
-
Allocates a new String
that contains characters from a subarray of the character array
argument.
- String(String) - Constructor for class java.lang.String
-
Initializes a newly created String
object so that it represents the same sequence of
characters as the argument; in other words, the newly created string is a copy of the argument
string.
- String(StringBuffer) - Constructor for class java.lang.String
-
Allocates a new string that contains the sequence of characters currently contained in the string
buffer argument.
- String(StringBuilder) - Constructor for class java.lang.String
-
Allocates a new string that contains the sequence of characters currently contained in the string
builder argument.
- StringBuffer - Class in java.lang
-
A thread-safe, mutable sequence of characters.
- StringBuffer() - Constructor for class java.lang.StringBuffer
-
Constructs a string buffer with no characters in it and an initial capacity of 16 characters.
- StringBuffer(CharSequence) - Constructor for class java.lang.StringBuffer
-
Constructs a string buffer that contains the same characters as the specified
CharSequence
.
- StringBuffer(int) - Constructor for class java.lang.StringBuffer
-
Constructs a string buffer with no characters in it and the specified initial capacity.
- StringBuffer(String) - Constructor for class java.lang.StringBuffer
-
Constructs a string buffer initialized to the contents of the specified string.
- StringBuilder - Class in java.lang
-
A mutable sequence of characters.
- StringBuilder() - Constructor for class java.lang.StringBuilder
-
Constructs a string builder with no characters in it and an initial capacity of 16 characters.
- StringBuilder(CharSequence) - Constructor for class java.lang.StringBuilder
-
Constructs a string builder that contains the same characters as the specified
CharSequence
.
- StringBuilder(int) - Constructor for class java.lang.StringBuilder
-
Constructs a string builder with no characters in it and an initial capacity specified by the
capacity
argument.
- StringBuilder(String) - Constructor for class java.lang.StringBuilder
-
Constructs a string builder initialized to the contents of the specified string.
- StringIndexOutOfBoundsException - Exception in java.lang
-
Thrown by String
methods to indicate that an index is either negative or greater
than the size of the string.
- StringIndexOutOfBoundsException() - Constructor for exception java.lang.StringIndexOutOfBoundsException
-
Constructs a StringIndexOutOfBoundsException
with no detail message.
- StringIndexOutOfBoundsException(int) - Constructor for exception java.lang.StringIndexOutOfBoundsException
-
Constructs a new StringIndexOutOfBoundsException
class with an argument indicating
the illegal index.
- StringIndexOutOfBoundsException(String) - Constructor for exception java.lang.StringIndexOutOfBoundsException
-
Constructs a StringIndexOutOfBoundsException
with the specified detail message.
- stringWidth(String) - Method in class ej.microui.display.Font
-
Gets the width of the given string with this font and its x ratio.
The width is the horizontal distance that would be occupied if the string was drawn using this font.
- STYLE_BOLD - Static variable in class ej.microui.display.Font
-
The bold style constant.
- STYLE_ITALIC - Static variable in class ej.microui.display.Font
-
The italic style constant.
- STYLE_PLAIN - Static variable in class ej.microui.display.Font
-
The plain style constant.
- STYLE_RESIZED - Static variable in class ej.microui.display.Font
-
The underlined style constant.
- STYLE_UNDERLINED - Static variable in class ej.microui.display.Font
-
The underlined style constant.
- subList(int, int) - Method in class java.util.AbstractList
-
Returns a view of the portion of this list between the specified fromIndex, inclusive,
and toIndex, exclusive.
- subList(int, int) - Method in class java.util.ArrayList
-
Returns a view of the portion of this list between the specified fromIndex
, inclusive,
and toIndex
, exclusive.
- subList(int, int) - Method in interface java.util.List
-
Returns a view of the portion of this list between the specified fromIndex, inclusive,
and toIndex, exclusive.
- subList(int, int) - Method in class java.util.Vector
-
Returns a view of the portion of this List between fromIndex, inclusive, and toIndex, exclusive.
- subSequence(int, int) - Method in interface java.lang.CharSequence
-
Returns a new CharSequence
that is a subsequence of this sequence.
- subSequence(int, int) - Method in class java.lang.String
-
Returns a new character sequence that is a subsequence of this sequence.
- subSequence(int, int) - Method in class java.lang.StringBuffer
-
Returns a new character sequence that is a subsequence of this sequence.
- subSequence(int, int) - Method in class java.lang.StringBuilder
-
Returns a new character sequence that is a subsequence of this sequence.
- substring(int) - Method in class java.lang.String
-
Returns a new string that is a substring of this string.
- substring(int, int) - Method in class java.lang.String
-
Returns a new string that is a substring of this string.
- substring(int) - Method in class java.lang.StringBuffer
-
Returns a new String
that contains a subsequence of characters currently contained
in this character sequence.
- substring(int, int) - Method in class java.lang.StringBuffer
-
Returns a new String
that contains a subsequence of characters currently contained
in this sequence.
- substring(int) - Method in class java.lang.StringBuilder
-
Returns a new String
that contains a subsequence of characters
currently contained in this character sequence.
- substring(int, int) - Method in class java.lang.StringBuilder
-
Returns a new String
that contains a subsequence of characters
currently contained in this sequence.
- substringWidth(String, int, int) - Method in class ej.microui.display.Font
-
Gets the width of the string from offset
to offset+len
with this font and its x ratio.
- SUNDANESE - Static variable in class ej.microui.display.Font
-
Constant for sundanese font identifier.
- SUNDAY - Static variable in class java.util.Calendar
-
- supportsExtendedFeatures(int) - Method in class ej.microui.event.generator.Buttons
-
Returns true
if the button supports the extended features elapsedTime, click and doubleClick
features.
- supportsMulticast() - Method in class java.net.NetworkInterface
-
Returns whether a network interface supports multicasting or not.
- SuppressWarnings - Annotation Type in java.lang
-
Indicates that the named compiler warnings should be suppressed in the annotated element (and in
all program elements contained in the annotated element).
- switchBacklight(boolean) - Method in class ej.microui.display.Display
-
Switches on or off the backlight of the display.
- switchOff() - Method in class ej.gnss.GnssManager
-
SwitchOff Positioning polling on the system.
- switchOn() - Method in class ej.gnss.GnssManager
-
SwitchOn Positioning polling on the system.
- SYLOTI_NAGRI - Static variable in class ej.microui.display.Font
-
Constant for syloti nagri font identifier.
- SYRIAC - Static variable in class ej.microui.display.Font
-
Constant for syriac font identifier.
- System - Class in java.lang
-
The System
class contains several useful class fields and methods.
- TAGALOG - Static variable in class ej.microui.display.Font
-
Constant for tagalog font identifier.
- TAGBANWA - Static variable in class ej.microui.display.Font
-
Constant for tagbanwa font identifier.
- TAI_LE - Static variable in class ej.microui.display.Font
-
Constant for tai le font identifier.
- TAI_THAM - Static variable in class ej.microui.display.Font
-
Constant for tai tham font identifier.
- TAI_VIET - Static variable in class ej.microui.display.Font
-
Constant for tai viet font identifier.
- TAMIL - Static variable in class ej.microui.display.Font
-
Constant for tamil font identifier.
- tan(double) - Static method in class ej.bon.XMath
-
Returns the trigonometric tangent of an angle.
- tan(double) - Static method in class java.lang.Math
-
Returns the trigonometric tangent of an angle.
- tanh(double) - Static method in class java.lang.Math
-
Returns the hyperbolic tangent of a double
value.
- Target - Annotation Type in java.lang.annotation
-
Indicates the kinds of program element to which an annotation type is applicable.
- TCP_NODELAY - Static variable in interface java.net.SocketOptions
-
Disable Nagle's algorithm for this connection.
- TEAL - Static variable in interface ej.microui.display.Colors
-
The teal RGB color constant.
The value 0x008080
is assigned to TEAL
.
- TELUGU - Static variable in class ej.microui.display.Font
-
Constant for telugu font identifier.
- TEXT_INPUT - Static variable in class ej.microui.event.generator.Keyboard
-
The TEXT_INPUT event action.
- THAANA - Static variable in class ej.microui.display.Font
-
Constant for thaana font identifier.
- THAI - Static variable in class ej.microui.display.Font
-
Constant for thai font identifier.
- ThickShapes - Class in ej.microui.display.shape
-
The
ThickShapes
class offers advanced drawing facilities, to render thick lines, circles etc.
- ThickShapes() - Constructor for class ej.microui.display.shape.ThickShapes
-
- Thread - Class in java.lang
-
A thread is a thread of execution in a program.
- Thread() - Constructor for class java.lang.Thread
-
Allocates a new Thread
object.
- Thread(Runnable) - Constructor for class java.lang.Thread
-
Allocates a new Thread object with a specific target object whose run method is called.
- Thread(Runnable, String) - Constructor for class java.lang.Thread
-
Allocates a new Thread
object.
- Thread(String) - Constructor for class java.lang.Thread
-
Allocates a new Thread
object.
- Thread.State - Enum in java.lang
-
A thread state.
- Thread.UncaughtExceptionHandler - Interface in java.lang
-
Interface for handlers invoked when a Thread abruptly terminates due to an uncaught
exception.
- Throwable - Class in java.lang
-
The Throwable
class is the superclass of all errors and exceptions in the Java language.
- Throwable() - Constructor for class java.lang.Throwable
-
Constructs a new throwable with null
as its detail message.
- Throwable(String) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified detail message.
- Throwable(String, Throwable) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified detail message and cause.
- Throwable(Throwable) - Constructor for class java.lang.Throwable
-
Constructs a new throwable with the specified cause and a detail message of
(cause==null ? null : cause.toString())
(which typically contains the class and detail
message of cause
).
- throwExceptionInThread(RuntimeException, Thread) - Static method in class ej.bon.Util
-
- throwHardExceptionInThread(RuntimeException, Thread) - Static method in class ej.bon.Util
-
- THURSDAY - Static variable in class java.util.Calendar
-
- TIBETAN - Static variable in class ej.microui.display.Font
-
Constant for tibetan font identifier.
- TIFINAGH - Static variable in class ej.microui.display.Font
-
Constant for tifinagh font identifier.
- time - Variable in class java.util.Calendar
-
The currently set time for this calendar, expressed in milliseconds after January 1, 1970,
0:00:00 GMT.
- Timer - Class in ej.bon
-
A facility for threads to schedule tasks for future execution in a background
thread.
- Timer() - Constructor for class ej.bon.Timer
-
Creates a new timer.
- Timer(boolean) - Constructor for class ej.bon.Timer
-
Creates a new timer.
- Timer - Class in java.util
-
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.
- Timer(String) - Constructor for class java.util.Timer
-
Creates a new timer whose associated thread has the specified name.
- TimerTask - Class in ej.bon
-
A task that can be scheduled for one-time or repeated execution by a Timer.
- TimerTask() - Constructor for class ej.bon.TimerTask
-
Creates a new timer task.
- TimerTask - Class in java.util
-
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.
- TimeZone - Class in java.util
-
TimeZone
represents a time zone offset, and also figures out daylight savings.
- TimeZone() - Constructor for class java.util.TimeZone
-
Sole constructor.
- toArray() - Method in class java.util.AbstractCollection
-
Returns an array containing all of the elements in this collection.
- toArray(T[]) - Method in class java.util.AbstractCollection
-
Returns an array containing all of the elements in this collection; the runtime type of the
returned array is that of the specified array.
- toArray() - Method in class java.util.ArrayList
-
Returns an array containing all of the elements in this list in proper sequence (from first to
last element).
- toArray(T[]) - Method in class java.util.ArrayList
-
Returns an array containing all of the elements in this list in proper sequence (from first to
last element); the runtime type of the returned array is that of the specified array.
- toArray() - Method in interface java.util.Collection
-
Returns an array containing all of the elements in this collection.
- toArray(T[]) - Method in interface java.util.Collection
-
Returns an array containing all of the elements in this collection; the runtime type of the
returned array is that of the specified array.
- toArray() - Method in interface java.util.List
-
Returns an array containing all of the elements in this list in proper sequence (from first to
last element).
- toArray(T[]) - Method in interface java.util.List
-
Returns an array containing all of the elements in this list in proper sequence (from first to
last element); the runtime type of the returned array is that of the specified array.
- toArray() - Method in interface java.util.Set
-
Returns an array containing all of the elements in this set.
- toArray(T[]) - Method in interface java.util.Set
-
Returns an array containing all of the elements in this set; the runtime type of the returned
array is that of the specified array.
- toArray() - Method in class java.util.Vector
-
Returns an array containing all of the elements in this Vector in the correct order.
- toArray(T[]) - Method in class java.util.Vector
-
Returns an array containing all of the elements in this Vector in the correct order; the runtime
type of the returned array is that of the specified array.
- toBinaryString(int) - Static method in class java.lang.Integer
-
Returns a string representation of the integer argument as an unsigned integer in base 2.
- toBinaryString(long) - Static method in class java.lang.Long
-
Returns a string representation of the long
argument as an unsigned integer in
base 2.
- toByteArray() - Method in class java.io.ByteArrayOutputStream
-
Creates a newly allocated byte array.
- toCharArray() - Method in class java.lang.String
-
Converts this string to a new character array.
- toCString(String, byte[]) - Static method in class ej.sni.SNI
-
Transforms a Java String into a C String.
The platform default encoding is used to transform Java characters into C characters.
The created C String is a NULL terminated String (ends with '\0').
- toDegrees(double) - Static method in class ej.bon.XMath
-
Converts an angle measured in radians to an approximately equivalent angle
measured in degrees.
- toDegrees(double) - Static method in class java.lang.Math
-
Converts an angle measured in radians to an approximately equivalent angle measured in degrees.
- toHexString(int) - Static method in class java.lang.Integer
-
Returns a string representation of the integer argument as an unsigned integer in base 16.
- toHexString(long) - Static method in class java.lang.Long
-
Returns a string representation of the long
argument as an unsigned integer in
base 16.
- toJavaString(byte[]) - Static method in class ej.sni.SNI
-
Transforms a C String into a Java String,
using platform default encoding.
- toLowerCase(char) - Static method in class java.lang.Character
-
Converts the character argument to lowercase using case mapping information from the UnicodeData
file.
- toLowerCase() - Method in class java.lang.String
-
Converts all of the characters in this String
to lower case using the rules of the
default locale.
- toOctalString(int) - Static method in class java.lang.Integer
-
Returns a string representation of the integer argument as an unsigned integer in base 8.
- TooManyWaitingThreadsException - Exception in ej.sp
-
Signals that too many threads are waiting for a block.
- TooManyWaitingThreadsException() - Constructor for exception ej.sp.TooManyWaitingThreadsException
-
Builds a TooManyWaitingThreadsException with no detail message.
- TOP - Static variable in class ej.microui.display.GraphicsContext
-
Constant for positioning the top of the drawing at the anchor point.
- toRadians(double) - Static method in class ej.bon.XMath
-
Converts an angle measured in degrees to an approximately equivalent angle
measured in radians.
- toRadians(double) - Static method in class java.lang.Math
-
Converts an angle measured in degrees to an approximately equivalent angle measured in radians.
- toString() - Method in interface ej.kf.Principal
-
Gets a string representation of the X.500 distinguished name using the format defined in RFC 2253.
- toString() - Method in class java.io.ByteArrayOutputStream
-
Converts the buffer's contents into a string decoding bytes using the platform's default
character set.
- toString() - Method in class java.io.File
-
Returns the pathname string of this abstract pathname.
- toString() - Method in interface java.lang.annotation.Annotation
-
Returns a string representation of this annotation.
- toString(boolean) - Static method in class java.lang.Boolean
-
Returns a String
object representing the specified boolean.
- toString() - Method in class java.lang.Boolean
-
Returns a String
object representing this Boolean's value.
- toString(byte) - Static method in class java.lang.Byte
-
Returns a new String
object representing the specified byte
.
- toString() - Method in class java.lang.Byte
-
Returns a String
object representing this Byte
's value.
- toString(char) - Static method in class java.lang.Character
-
Returns a String
object representing the specified char
.
- toString() - Method in class java.lang.Character
-
Returns a String
object representing this Character
's value.
- toString() - Method in interface java.lang.CharSequence
-
Returns a string containing the characters in this sequence in the same order as this sequence.
- toString() - Method in class java.lang.Class
-
Converts the object to a string.
- toString(double) - Static method in class java.lang.Double
-
Returns a string representation of the double
argument.
- toString() - Method in class java.lang.Double
-
Returns a string representation of this Double
object.
- toString() - Method in class java.lang.Enum
-
Returns the name of this enum constant, as contained in the declaration.
- toString(float) - Static method in class java.lang.Float
-
Returns a string representation of the float
argument.
- toString() - Method in class java.lang.Float
-
Returns a string representation of this Float
object.
- toString(int) - Static method in class java.lang.Integer
-
Returns a String
object representing the specified integer.
- toString(int, int) - Static method in class java.lang.Integer
-
Returns a string representation of the first argument in the radix specified by the second
argument.
- toString() - Method in class java.lang.Integer
-
Returns a String
object representing this Integer
's value.
- toString(long) - Static method in class java.lang.Long
-
Returns a String
object representing the specified long
.
- toString(long, int) - Static method in class java.lang.Long
-
Returns a string representation of the first argument in the radix specified by the second
argument.
- toString() - Method in class java.lang.Long
-
Returns a String
object representing this Long
's value.
- toString() - Method in class java.lang.Object
-
Returns a string representation of the object.
- toString() - Method in class java.lang.Package
-
Returns the string representation of this Package.
- toString(short) - Static method in class java.lang.Short
-
Returns a new String
object representing the specified short
.
- toString() - Method in class java.lang.Short
-
Returns a String
object representing this Short
's value.
- toString() - Method in class java.lang.StackTraceElement
-
Returns a string representation of this stack trace element.
- toString() - Method in class java.lang.String
-
This object (which is already a string!) is itself returned.
- toString() - Method in class java.lang.StringBuffer
-
- toString() - Method in class java.lang.StringBuilder
-
- toString() - Method in class java.lang.Thread
-
Returns a string representation of this thread, including the thread's name, priority, and thread
group.
- toString() - Method in class java.lang.Throwable
-
Returns a short description of this throwable.
- toString() - Method in class java.net.InetAddress
-
Converts this IP address to a String
.
- toString() - Method in class java.net.InetSocketAddress
-
Constructs a string representation of this InetSocketAddress.
- toString() - Method in class java.net.InterfaceAddress
-
Converts this Interface address to a String
.
- toString() - Method in class java.net.NetworkInterface
-
- toString() - Method in class java.net.ServerSocket
-
Returns the implementation address and implementation port of
this socket as a String
.
- toString() - Method in class java.net.Socket
-
Converts this socket to a String
.
- toString() - Method in class java.security.MessageDigest
-
Returns a string representation of this message digest object.
- toString() - Method in class java.security.Permission
-
Returns a string describing this Permission.
- toString() - Method in interface java.security.Principal
-
Returns a string representation of this principal.
- toString() - Method in class java.security.Signature
-
Returns a string representation of this signature object,
providing information that includes the state of the object
and the name of the algorithm used.
- toString() - Method in class java.util.AbstractCollection
-
Returns a string representation of this collection.
- toString() - Method in class java.util.AbstractMap.SimpleEntry
-
Returns a String representation of this map entry.
- toString() - Method in class java.util.AbstractMap.SimpleImmutableEntry
-
Returns a String representation of this map entry.
- toString() - Method in class java.util.AbstractMap
-
Returns a string representation of this map.
- toString() - Method in class java.util.Calendar
-
Return a string representation of this calendar.
- toString() - Method in class java.util.Date
-
Converts this Date
object to a String
of the form:
- toString() - Method in class java.util.EventObject
-
Returns a String representation of this EventObject.
- toString() - Method in class java.util.Hashtable
-
Returns a string representation of this Hashtable object in the form of a set of
entries, enclosed in braces and separated by the ASCII characters ", " (comma and
space).
- toString() - Method in class java.util.Vector
-
Returns a string representation of this Vector, containing the String representation of each
element.
- toString() - Method in class javax.security.auth.x500.X500Principal
-
Return a user-friendly string representation of this X500Principal
.
- totalMemory() - Static method in class ej.bon.Immortals
-
Returns the total amount of immortal memory.
- totalMemory() - Static method in class ej.bon.Immutables
-
Returns the total amount of immutable memory.
- totalMemory() - Method in class java.lang.Runtime
-
Returns the total amount of memory in the Java virtual machine.
- toUpperCase(char) - Static method in class java.lang.Character
-
Converts the character argument to uppercase using case mapping information from the UnicodeData
file.
- toUpperCase() - Method in class java.lang.String
-
Converts all of the characters in this String
to upper case using the rules of the
default locale.
- TRACE_ENABLED_CONSTANT_PROPERTY - Static variable in class ej.trace.Tracer
-
The value of this boolean constant property is
true
when the traces are enabled in the system and
false
otherwise (see
Constants
).
- Tracer - Class in ej.trace
-
A
Tracer
object is used to trace events for debug or monitoring.
- Tracer(String, int) - Constructor for class ej.trace.Tracer
-
Creates a new tracer with the given name.
- translate(int, int) - Method in class ej.microui.display.GraphicsContext
-
Translates the GraphicsContext
origin with the given vector (x,y)
.
- translate(int, int) - Method in class ej.microui.display.transform.AbstractTransform
-
Translates the transformation origin with the given vector (x,y)
.
- TRANSPARENT - Static variable in class ej.microui.display.GraphicsContext
-
Minimal opacity.
- trim() - Method in class java.lang.String
-
Returns a copy of the string, with leading and trailing whitespace omitted.
- trimToSize() - Method in class java.lang.StringBuffer
-
Attempts to reduce storage used for the character sequence.
- trimToSize() - Method in class java.lang.StringBuilder
-
Attempts to reduce storage used for the character sequence.
- trimToSize() - Method in class java.util.ArrayList
-
Trims the capacity of this ArrayList instance to be the list's current size.
- trimToSize() - Method in class java.util.Vector
-
Trims the capacity of this vector to be the vector's current size.
- TRUE - Static variable in class java.lang.Boolean
-
The Boolean
object corresponding to the primitive value true
.
- TrustManager - Interface in javax.net.ssl
-
This is the base interface for JSSE trust managers.
- TrustManagerFactory - Class in javax.net.ssl
-
This class acts as a factory for trust managers based on a
source of trust material.
- TrustManagerFactory() - Constructor for class javax.net.ssl.TrustManagerFactory
-
- TrustManagerFactorySpi - Class in javax.net.ssl
-
This class defines the Service Provider Interface (SPI)
for the TrustManagerFactory
class.
- TrustManagerFactorySpi() - Constructor for class javax.net.ssl.TrustManagerFactorySpi
-
- TUESDAY - Static variable in class java.util.Calendar
-
- Type - Interface in java.lang.reflect
-
Type is the common superinterface for all types in the Java programming language.
- wait() - Method in class java.lang.Object
-
- wait(long) - Method in class java.lang.Object
-
Causes the current thread to wait until either another thread invokes the
Object.notify()
method or the
Object.notifyAll()
method for
this object, or a specified amount of time has elapsed.
- wait(long, int) - Method in class java.lang.Object
-
Causes the current thread to wait until another thread invokes the
Object.notify()
method or the
Object.notifyAll()
method for
this object, or some other thread interrupts the current thread, or a certain amount of real time
has elapsed.
- waitFor(int) - Method in class ej.sp.ShieldedPlug
-
Causes current thread to wait until another thread write data into the block with the given ID.
If data has been written in the block since last read, this method returns immediately.
- waitFor(int[]) - Method in class ej.sp.ShieldedPlug
-
Causes current thread to wait until another thread write data into at least one block from the blocks with the
given IDs.
If data has been written in one block since last read from it, this method returns immediately.
- waitForEvent(int) - Method in class ej.microui.display.Display
-
Sends event
in the event stream and blocks the current thread (with all its locks) until the
event
processing is finished.
- waitForEvent() - Method in class ej.microui.display.Display
-
Blocks the current thread (with all its locks) until all events outstanding at the time of the call have been
processed.
- WeakHashMap<K,V> - Class in java.util
-
Hash table based implementation of the Map interface, with weak keys.
- WeakHashMap() - Constructor for class java.util.WeakHashMap
-
Constructs a new, empty WeakHashMap with the default initial capacity (16) and load
factor (0.75).
- WeakHashMap(int) - Constructor for class java.util.WeakHashMap
-
Constructs a new, empty WeakHashMap with the given initial capacity and the default load
factor (0.75).
- WeakHashMap(int, float) - Constructor for class java.util.WeakHashMap
-
Constructs a new, empty WeakHashMap with the given initial capacity and the given load
factor.
- WeakHashMap(Map<? extends K, ? extends V>) - Constructor for class java.util.WeakHashMap
-
Constructs a new WeakHashMap with the same mappings as the specified map.
- WeakHashtable - Class in ej.bon
-
- WeakHashtable() - Constructor for class ej.bon.WeakHashtable
-
Constructs a new, empty weak hashtable with a default capacity and load
factor.
- WeakHashtable(int) - Constructor for class ej.bon.WeakHashtable
-
Constructs a new, empty weak hashtable with the specified initial capacity.
- WeakReference<T> - Class in java.lang.ref
-
Weak reference objects, which do not prevent their referents from being made finalizable,
finalized, and then reclaimed.
- WeakReference(T) - Constructor for class java.lang.ref.WeakReference
-
Creates a new weak reference that refers to the given object.
- WeakReference(T, ReferenceQueue<? super T>) - Constructor for class java.lang.ref.WeakReference
-
Creates a new weak reference that refers to the given object and is registered with the given
queue.
- WEDNESDAY - Static variable in class java.util.Calendar
-
- WEEK_OF_MONTH - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating the week number within the
current month.
- WEEK_OF_YEAR - Static variable in class java.util.Calendar
-
Field number for get
and set
indicating the week number within the
current year.
- WHITE - Static variable in interface ej.microui.display.Colors
-
The white RGB color constant.
The value 0xffffff
is assigned to WHITE
.
- WifiCapability - Enum in ej.ecom.wifi
-
List of possible capabilities for the underlying Wi-Fi module.
- WifiManager - Class in ej.ecom.wifi
-
Manages the Wi-Fi capabilities.
- WifiManager() - Constructor for class ej.ecom.wifi.WifiManager
-
- WPSMode - Enum in ej.ecom.wifi
-
List of Wi-Fi Protected Setup (WPS) modes.
- wrap(Key) - Method in class javax.crypto.Cipher
-
Wrap a key.
- WRAP_MODE - Static variable in class javax.crypto.Cipher
-
Constant used to initialize cipher to key-wrapping mode.
- WRITE - Static variable in interface ej.bluetooth.BluetoothPermissions
-
Write access, no encryption required.
- WRITE - Static variable in interface ej.bluetooth.BluetoothProperties
-
Indicates that the characteristic value may be written.
- WRITE - Static variable in class ej.ecom.io.Connector
-
Access mode WRITE.
- write(int, byte[]) - Method in class ej.sp.ShieldedPlug
-
Writes block length bytes from the specified byte array to the block with the given ID.
The write(blockID, data)
method has the same effect as:
- write(int, byte[], int) - Method in class ej.sp.ShieldedPlug
-
Writes block length bytes from the specified byte array to the block with the given ID.
Element data[destOffset]
is the first byte written to the block.
- write(byte[], int, int) - Method in class java.io.ByteArrayOutputStream
-
Writes len
bytes from the specified byte array starting at offset off
to this byte array output stream.
- write(int) - Method in class java.io.ByteArrayOutputStream
-
Writes the specified byte to this byte array output stream.
- write(byte[]) - Method in interface java.io.DataOutput
-
Writes to the output stream all the bytes in array b
.
- write(byte[], int, int) - Method in interface java.io.DataOutput
-
Writes len
bytes from array b
, in order, to the output stream.
- write(int) - Method in interface java.io.DataOutput
-
Writes to the output stream the eight low-order bits of the argument b
.
- write(byte[], int, int) - Method in class java.io.DataOutputStream
-
Writes len
bytes from the specified byte array starting at offset off
to the underlying output stream.
- write(int) - Method in class java.io.DataOutputStream
-
Writes the specified byte (the low eight bits of the argument b
) to the underlying
output stream.
- write(int) - Method in class java.io.FileOutputStream
-
Writes the specified byte to this file output stream.
- write(byte[]) - Method in class java.io.FileOutputStream
-
Writes b.length
bytes from the specified byte array
to this file output stream.
- write(byte[], int, int) - Method in class java.io.FileOutputStream
-
Writes len
bytes from the specified byte array
starting at offset off
to this file output stream.
- write(byte[]) - Method in class java.io.FilterOutputStream
-
Writes b.length
bytes to this output stream.
- write(byte[], int, int) - Method in class java.io.FilterOutputStream
-
Writes len
bytes from the specified byte
array starting at offset
off
to this output stream.
- write(int) - Method in class java.io.FilterOutputStream
-
Writes the specified byte
to this output stream.
- write(byte[]) - Method in class java.io.OutputStream
-
Writes b.length
bytes from the specified byte array to this output stream.
- write(byte[], int, int) - Method in class java.io.OutputStream
-
Writes len
bytes from the specified byte array starting at offset off
to this output stream.
- write(int) - Method in class java.io.OutputStream
-
Writes the specified byte to this output stream.
- write(char[], int, int) - Method in class java.io.OutputStreamWriter
-
Writes a portion of an array of characters.
- write(int) - Method in class java.io.OutputStreamWriter
-
Writes a single character.
- write(String, int, int) - Method in class java.io.OutputStreamWriter
-
Writes a portion of a string.
- write(byte[], int, int) - Method in class java.io.PrintStream
-
Writes len
bytes from the specified byte array starting at offset off
to this stream.
- write(int) - Method in class java.io.PrintStream
-
Writes the specified byte to this stream.
- write(char[]) - Method in class java.io.Writer
-
Writes an array of characters.
- write(char[], int, int) - Method in class java.io.Writer
-
Writes a portion of an array of characters.
- write(int) - Method in class java.io.Writer
-
Writes a single character.
- write(String) - Method in class java.io.Writer
-
Writes a string.
- write(String, int, int) - Method in class java.io.Writer
-
Writes a portion of a string.
- WRITE_AUTH - Static variable in interface ej.bluetooth.BluetoothPermissions
-
Write access, authentication required.
- WRITE_ENCRYPT - Static variable in interface ej.bluetooth.BluetoothPermissions
-
Write access, encryption required.
- WRITE_NO_RESPONSE - Static variable in interface ej.bluetooth.BluetoothProperties
-
Indicates that the characteristic value may be written (using write without response procedure).
- WRITE_NOT_PERMITTED - Static variable in interface ej.bluetooth.BluetoothStatus
-
Write not permitted.
- WRITE_REQUEST_REJECTED - Static variable in interface ej.bluetooth.BluetoothStatus
-
Write request rejected.
- WRITE_SIGNED - Static variable in interface ej.bluetooth.BluetoothProperties
-
Indicates that the characteristic value may be written (using signed write procedure).
- writeBits(int) - Method in interface ej.ecom.io.BitsOutput
-
The data to send is masked using the following formula:
val &= (1 << getLength()) - 1
- writeBits(int[]) - Method in interface ej.ecom.io.BitsOutput
-
Writes data.length
data from the specified integer array to this output stream.
- writeBits(int[], int, int) - Method in interface ej.ecom.io.BitsOutput
-
Writes len
data from the specified integer array starting at offset off
to this output
stream.
- writeBits(short[], boolean) - Method in interface ej.ecom.io.BitsOutput
-
Writes data.length
data from the specified short array to this output stream.
- writeBits(short[], int, int, boolean) - Method in interface ej.ecom.io.BitsOutput
-
Writes len
data from the specified short array starting at offset off
to this output
stream.
- writeBits(byte[], boolean) - Method in interface ej.ecom.io.BitsOutput
-
Writes data.length
data from the specified short array to this output stream.
- writeBits(byte[], int, int, boolean) - Method in interface ej.ecom.io.BitsOutput
-
Writes len
data from the specified short array starting at offset off
to this output
stream.
- writeBoolean(boolean) - Method in interface java.io.DataOutput
-
Writes a boolean
value to this output stream.
- writeBoolean(boolean) - Method in class java.io.DataOutputStream
-
Writes a boolean
to the underlying output stream as a 1-byte value.
- writeByte(int) - Method in interface java.io.DataOutput
-
Writes to the output stream the eight low- order bits of the argument v
.
- writeByte(int) - Method in class java.io.DataOutputStream
-
Writes out a byte
to the underlying output stream as a 1-byte value.
- writeChar(int) - Method in interface java.io.DataOutput
-
Writes a char
value, which is comprised of two bytes, to the output stream.
- writeChar(int) - Method in class java.io.DataOutputStream
-
Writes a char
to the underlying output stream as a 2-byte value, high byte first.
- writeChars(String) - Method in interface java.io.DataOutput
-
Writes every character in the string s
, to the output stream, in order, two bytes
per character.
- writeChars(String) - Method in class java.io.DataOutputStream
-
Writes a string to the underlying output stream as a sequence of characters.
- writeDouble(int, double) - Method in class ej.sp.ShieldedPlug
-
Writes a double
value, which is comprised of eight bytes, to the block with the given ID.
The way the double
is written from the eight bytes is platform dependent.
- writeDouble(double) - Method in interface java.io.DataOutput
-
Writes a double
value, which is comprised of eight bytes, to the output stream.
- writeDouble(double) - Method in class java.io.DataOutputStream
-
Converts the double argument to a long
using the doubleToLongBits
method in class Double
, and then writes that long
value to the
underlying output stream as an 8-byte quantity, high byte first.
- writeFloat(int, float) - Method in class ej.sp.ShieldedPlug
-
Writes a float
value, which is comprised of four bytes, to the block with the given ID.
The way the float
is written from the four bytes is platform dependent.
- writeFloat(float) - Method in interface java.io.DataOutput
-
Writes a float
value, which is comprised of four bytes, to the output stream.
- writeFloat(float) - Method in class java.io.DataOutputStream
-
Converts the float argument to an int
using the floatToIntBits
method
in class Float
, and then writes that int
value to the underlying output
stream as a 4-byte quantity, high byte first.
- writeInt(byte[], int, int) - Static method in class ej.bon.ByteArray
-
Writes an int in the given byte array at the given offset respecting the
endianness of the platform.
- writeInt(byte[], int, int, int) - Static method in class ej.bon.ByteArray
-
Writes an int in the given byte array at the given offset respecting the
endianness of the array.
- writeInt(int, int) - Method in class ej.sp.ShieldedPlug
-
Writes an int
value, which is comprised of four bytes, to the block with the given ID.
The way the int
is written from the four bytes is platform dependent.
- writeInt(int) - Method in interface java.io.DataOutput
-
Writes an int
value, which is comprised of four bytes, to the output stream.
- writeInt(int) - Method in class java.io.DataOutputStream
-
Writes an int
to the underlying output stream as four bytes, high byte first.
- writeLong(byte[], int, long) - Static method in class ej.bon.ByteArray
-
Writes a long in the given byte array at the given offset respecting the
endianness of the platform.
- writeLong(byte[], int, long, int) - Static method in class ej.bon.ByteArray
-
Writes a long in the given byte array at the given offset respecting the
endianness of the array.
- writeLong(int, long) - Method in class ej.sp.ShieldedPlug
-
Writes a long
value, which is comprised of eight bytes, to the block with the given ID.
The way the long
is written from the eight bytes is platform dependent.
- writeLong(long) - Method in interface java.io.DataOutput
-
Writes a long
value, which is comprised of eight bytes, to the output stream.
- writeLong(long) - Method in class java.io.DataOutputStream
-
Writes a long
to the underlying output stream as eight bytes, high byte first.
- writeObject(int, Object) - Method in class ej.sp.ShieldedPlug
-
Invokes the
writeObject
method of the
SPWriter
registered for the block with the given ID.
- writeObject(ShieldedPlug, int, Object) - Method in interface ej.sp.SPWriter
-
- Writer - Class in java.io
-
Abstract class for writing to character streams.
- Writer() - Constructor for class java.io.Writer
-
Creates a new character-stream writer whose critical sections will synchronize on the writer
itself.
- Writer(Object) - Constructor for class java.io.Writer
-
Creates a new character-stream writer whose critical sections will synchronize on the given
object.
- writeShort(byte[], int, int) - Static method in class ej.bon.ByteArray
-
Writes a short in the given byte array at the given offset respecting the
endianness of the platform.
- writeShort(byte[], int, int, int) - Static method in class ej.bon.ByteArray
-
Writes a short in the given byte array at the given offset respecting the
endianness of the array.
- writeShort(int) - Method in interface java.io.DataOutput
-
Writes two bytes to the output stream to represent the value of the argument.
- writeShort(int) - Method in class java.io.DataOutputStream
-
Writes a short
to the underlying output stream as two bytes, high byte first.
- writeTo(OutputStream) - Method in class java.io.ByteArrayOutputStream
-
Writes the complete contents of this byte array output stream to the specified output stream
argument, as if by calling the output stream's write method using
out.write(buf, 0, count)
.
- writeUTF(String) - Method in interface java.io.DataOutput
-
Writes two bytes of length information to the output stream, followed by the
modified UTF-8 representation of every character in
the string
s
.
- writeUTF(String) - Method in class java.io.DataOutputStream
-
Writes a string to the underlying output stream using
modified UTF-8 encoding in a machine-independent
manner.
- written - Variable in class java.io.DataOutputStream
-
The number of bytes written to the data output stream so far.