- 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(long) - Static method in class java.lang.Math
-
Returns the absolute value of a long value.
- abs(int) - Static method in class java.lang.Math
-
Returns the absolute value of an integer value.
- AbstractCollection<E> - Class in java.util
-
A basic implementation of most of the methods in the Collection interface to
make it easier to create a collection.
- AbstractList<E> - Class in java.util
-
A basic implementation of most of the methods in the List interface to make
it easier to create a List based on a random-access data structure.
- AbstractMap<K,V> - Class in java.util
-
An abstract implementation of Map to make it easier to create your own
implementations.
- AbstractMap.SimpleEntry<K,V> - Class in java.util
-
A class which implements Map.Entry.
- AbstractMap.SimpleImmutableEntry<K,V> - Class in java.util
-
A class containing an immutable key and value.
- AbstractQueue<E> - Class in java.util
-
This class provides skeletal implementations of some
Queue
operations.
- AbstractSequentialList<E> - Class in java.util
-
Abstract superclass to make it easier to implement the List interface when
backed by a sequential-access store, such as a linked list.
- AbstractSet<E> - Class in java.util
-
An abstract implementation of Set to make it easier to create your own
implementations.
- accept(File, String) - Method in interface java.io.FilenameFilter
-
This method determines whether or not a given file should be included
in a directory listing.
- accept() - Method in class java.net.ServerSocket
-
Accepts a new connection and returns a connected Socket
instance
representing that connection.
- accumulate(String, Object) - Method in class tijos.framework.util.json.JSONObject
-
Accumulate values under a key.
- acos(double) - Static method in class java.lang.Math
-
Inverse cosine function.
- activate(int) - Method in class tijos.framework.appcenter.TiAPPManager
-
Activate the current APP
- activate(String) - Method in class tijos.framework.appcenter.TiAPPManager
-
Activate the current APP
- AD - Static variable in class java.util.GregorianCalendar
-
Constant representing the era AD (Anno Domini).
- add(E) - Method in class java.util.AbstractCollection
-
Add an object to the collection (optional operation).
- add(int, E) - Method in class java.util.AbstractList
-
Insert an element into the list at a given position (optional operation).
- add(E) - Method in class java.util.AbstractList
-
Add an element to the end of the list (optional operation).
- add(E) - Method in class java.util.AbstractQueue
-
Inserts the specified element into this queue if it is possible to do so
immediately without violating capacity restrictions, returning
true upon success and throwing an IllegalStateException
if no space is currently available.
- add(int, E) - Method in class java.util.AbstractSequentialList
-
Insert an element into the list at a given position (optional operation).
- add(E) - Method in class java.util.ArrayDeque
-
Inserts the specified element at the end of this deque.
- add(E) - Method in class java.util.ArrayList
-
Appends the supplied element to the end of this list.
- add(int, E) - Method in class java.util.ArrayList
-
Adds the supplied element at the specified index, shifting all
elements currently at that index or higher one to the right.
- add(int, int) - Method in class java.util.Calendar
-
Adds the specified amount of time to the given time field.
- add(E) - Method in interface java.util.Collection
-
Add an element to this collection.
- add(E) - Method in interface java.util.Deque
-
Inserts the specified element into the queue represented by this deque
(in other words, at the tail of this deque) if it is possible to do so
immediately without violating capacity restrictions, returning
true upon success and throwing an
IllegalStateException if no space is currently available.
- add(int, int) - Method in class java.util.GregorianCalendar
-
Adds the specified amount of time to the given time field.
- add(T) - Method in class java.util.HashSet
-
Adds the given Object to the set if it is not already in the Set.
- add(T) - Method in class java.util.LinkedList
-
Adds an element to the end of the list.
- add(int, T) - Method in class java.util.LinkedList
-
Inserts an element in the given position in the list.
- add(int, E) - Method in interface java.util.List
-
Insert an element into the list at a given position (optional operation).
- add(E) - Method in interface java.util.List
-
Add an element to the end of the list (optional operation).
- add(E) - Method in interface java.util.ListIterator
-
Insert an element into the list at the current position of the iterator
(optional operation).
- add(E) - Method in interface java.util.Queue
-
Inserts the specified element into this queue if it is possible to do so
immediately without violating capacity restrictions, returning
true upon success and throwing an IllegalStateException
if no space is currently available.
- add(E) - Method in interface java.util.Set
-
Adds the specified element to the set if it is not already present
(optional operation).
- add(T) - Method in class java.util.TreeSet
-
Adds the spplied Object to the Set if it is not already in the Set;
returns true if the element is added, false otherwise.
- add(T) - Method in class java.util.Vector
-
Adds an object to the Vector.
- add(int, T) - Method in class java.util.Vector
-
Adds an object at the specified index.
- addAll(Collection<? extends E>) - Method in class java.util.AbstractCollection
-
Add all the elements of a given collection to this collection (optional
operation).
- addAll(int, Collection<? extends E>) - Method in class java.util.AbstractList
-
Insert the contents of a collection into the list at a given position
(optional operation).
- addAll(Collection<? extends E>) - Method in class java.util.AbstractQueue
-
Adds all of the elements in the specified collection to this
queue.
- addAll(int, Collection<? extends E>) - Method in class java.util.AbstractSequentialList
-
Insert the contents of a collection into the list at a given position
(optional operation).
- addAll(Collection<? extends E>) - Method in class java.util.ArrayList
-
Add each element in the supplied Collection to this List.
- addAll(int, Collection<? extends E>) - Method in class java.util.ArrayList
-
Add all elements in the supplied collection, inserting them beginning
at the specified index.
- addAll(Collection<? extends E>) - Method in interface java.util.Collection
-
Add the contents of a given collection to this collection.
- addAll(Collection<? super T>, T...) - Static method in class java.util.Collections
-
Adds all the specified elements to the given collection, in a similar
way to the addAll
method of the Collection
.
- addAll(Collection<? extends T>) - Method in class java.util.LinkedList
-
Append the elements of the collection in iteration order to the end of
this list.
- addAll(int, Collection<? extends T>) - Method in class java.util.LinkedList
-
Insert the elements of the collection in iteration order at the given
index of this list.
- addAll(int, Collection<? extends E>) - Method in interface java.util.List
-
Insert the contents of a collection into the list at a given position
(optional operation).
- addAll(Collection<? extends E>) - Method in interface java.util.List
-
Add the contents of a collection to the end of the list (optional
operation).
- addAll(Collection<? extends E>) - Method in class java.util.PriorityQueue
-
- addAll(Collection<? extends E>) - Method in interface java.util.Set
-
Adds all of the elements of the given collection to this set (optional
operation).
- addAll(Collection<? extends T>) - Method in class java.util.TreeSet
-
Adds all of the elements in the supplied Collection to this TreeSet.
- addAll(Collection<? extends T>) - Method in class java.util.Vector
-
Appends all elements of the given collection to the end of this Vector.
- addAll(int, Collection<? extends T>) - Method in class java.util.Vector
-
Inserts all elements of the given collection at the given index of
this Vector.
- addAttribute(AttributedCharacterIterator.Attribute, Object) - Method in class java.text.AttributedString
-
Adds an attribute to the entire string.
- addAttribute(AttributedCharacterIterator.Attribute, Object, int, int) - Method in class java.text.AttributedString
-
Adds an attribute to a subrange of the string.
- addAttributes(Map<? extends AttributedCharacterIterator.Attribute, ?>, int, int) - Method in class java.text.AttributedString
-
Adds a set of attributes to a subrange of the string.
- addComment(String) - Method in class tijos.framework.networkcenter.ntp.TimeInfo
-
Add comment (error/warning) to list of comments associated
with processing of NTP parameters.
- addElement(T) - Method in class java.util.Vector
-
Adds an element to the Vector at the end of the Vector.
- addFirst(E) - Method in class java.util.ArrayDeque
-
Inserts the specified element at the front of this deque.
- addFirst(E) - Method in interface java.util.Deque
-
Inserts the specified element at the front of this deque if it is
possible to do so immediately without violating capacity restrictions.
- addFirst(T) - Method in class java.util.LinkedList
-
Insert an element at the first of the list.
- addLast(E) - Method in class java.util.ArrayDeque
-
Inserts the specified element at the end of this deque.
- addLast(E) - Method in interface java.util.Deque
-
Inserts the specified element at the end of this deque if it is
possible to do so immediately without violating capacity restrictions.
- addLast(T) - Method in class java.util.LinkedList
-
Insert an element at the last of the list.
- addListener(ITiEventListener) - Method in class tijos.framework.eventcenter.TiEventService
-
Add BUS event listener
- addObserver(Observer) - Method in class java.util.Observable
-
Adds an Observer.
- addShutdownHook(Thread) - Method in class java.lang.Runtime
-
Add a shutdown hook.
- addSuppressed(Throwable) - Method in class java.lang.Throwable
-
Currently unimplemented.
- after(Object) - Method in class java.util.Calendar
-
Compares the given calendar with this.
- after(Date) - Method in class java.util.Date
-
Tests if this date is after the specified date.
- ALL - Static variable in class tijos.framework.util.logging.Logger
-
The ALL
level is used as a threshold for filtering log records,
meaning that every message should be logged.
- ALL_STYLES - Static variable in class java.util.Calendar
-
A style specifier for #getDisplayNames(int,int,Locale)
stating that names should be returned in both long and short variants.
- ALTERNATE - Static variable in class java.util.FormattableFlags
-
Requires the use of an alternate form, as specified
in the documentation of
Formattable
.
- AM - Static variable in class java.util.Calendar
-
Useful constant for 12-hour clock.
- AM_PM - Static variable in class java.util.Calendar
-
Constant representing the part of the day for 12-hour clock.
- and(BitSet) - Method in class java.util.BitSet
-
Performs the logical AND operation on this bit set and the
given set
.
- andNot(BitSet) - Method in class java.util.BitSet
-
Performs the logical AND operation on this bit set and the
complement of the given bs
.
- Annotation - Interface in java.lang.annotation
-
- Annotation - Class in java.text
-
An Annotation object is used as a wrapper for a text attribute value if
the attribute has annotation characteristics.
- Annotation(Object) - Constructor for class java.text.Annotation
-
Constructs an annotation record with the given value, which
may be null.
- annotationType() - Method in interface java.lang.annotation.Annotation
-
- APP_GENERIC - Static variable in class tijos.framework.appcenter.TiAPP
-
Type of generic APP
- APP_SHELL - Static variable in class tijos.framework.appcenter.TiAPP
-
Type of shell APP
- append(char) - Method in class java.io.CharArrayWriter
-
Appends the Unicode character, c
, to the output stream
underlying this writer.
- append(CharSequence) - Method in class java.io.CharArrayWriter
-
Appends the specified sequence of Unicode characters to the
output stream underlying this writer.
- append(CharSequence, int, int) - Method in class java.io.CharArrayWriter
-
Appends the specified subsequence of Unicode characters to the
output stream underlying this writer, starting and ending at the
specified positions within the sequence.
- append(char) - Method in class java.io.PrintStream
-
- append(CharSequence) - Method in class java.io.PrintStream
-
- append(CharSequence, int, int) - Method in class java.io.PrintStream
-
- append(char) - Method in class java.io.PrintWriter
-
- append(CharSequence) - Method in class java.io.PrintWriter
-
- append(CharSequence, int, int) - Method in class java.io.PrintWriter
-
- append(CharSequence) - Method in class java.io.StringWriter
-
Appends the specified character sequence to this writer.
- append(CharSequence, int, int) - Method in class java.io.StringWriter
-
Appends a subsequence of the specified character sequence to this writer.
- append(char) - Method in class java.io.StringWriter
-
Appends the specified character to this writer.
- append(char) - Method in class java.io.Writer
-
- append(CharSequence) - Method in class java.io.Writer
-
- append(CharSequence, int, int) - Method in class java.io.Writer
-
- append(char) - Method in interface java.lang.Appendable
-
Appends the Unicode character, c, to this Appendable
object.
- append(CharSequence) - Method in interface java.lang.Appendable
-
Appends the specified sequence of Unicode characters to this
Appendable
object.
- append(CharSequence, int, int) - Method in interface java.lang.Appendable
-
Appends the specified subsequence of Unicode characters to this
Appendable
object, starting and ending at the specified
positions within the sequence.
- append(String) - Method in class java.lang.StringBuffer
-
- append(Object) - Method in class java.lang.StringBuffer
-
- append(boolean) - Method in class java.lang.StringBuffer
-
- append(char) - Method in class java.lang.StringBuffer
-
- append(char[]) - Method in class java.lang.StringBuffer
-
- append(char[], int, int) - Method in class java.lang.StringBuffer
-
- append(CharSequence) - Method in class java.lang.StringBuffer
-
- append(StringBuffer) - Method in class java.lang.StringBuffer
-
- append(CharSequence, int, int) - Method in class java.lang.StringBuffer
-
- append(int) - Method in class java.lang.StringBuffer
-
- append(long) - Method in class java.lang.StringBuffer
-
- append(float) - Method in class java.lang.StringBuffer
-
- append(double) - Method in class java.lang.StringBuffer
-
- append(String) - Method in class java.lang.StringBuilder
-
- append(Object) - Method in class java.lang.StringBuilder
-
- append(boolean) - Method in class java.lang.StringBuilder
-
- append(char) - Method in class java.lang.StringBuilder
-
- append(char[]) - Method in class java.lang.StringBuilder
-
- append(char[], int, int) - Method in class java.lang.StringBuilder
-
- append(CharSequence) - Method in class java.lang.StringBuilder
-
- append(StringBuffer) - Method in class java.lang.StringBuilder
-
- append(CharSequence, int, int) - Method in class java.lang.StringBuilder
-
- append(int) - Method in class java.lang.StringBuilder
-
- append(long) - Method in class java.lang.StringBuilder
-
- append(float) - Method in class java.lang.StringBuilder
-
- append(double) - Method in class java.lang.StringBuilder
-
- append(String, Object) - Method in class tijos.framework.util.json.JSONObject
-
Append values to the array under a key.
- Appendable - Interface in java.lang
-
An Appendable
object is one to which a sequence of Unicode
characters can be added.
- appendCodePoint(int) - Method in class java.lang.StringBuffer
-
- appendCodePoint(int) - Method in class java.lang.StringBuilder
-
- applyLocalizedPattern(String) - Method in class java.text.DecimalFormat
-
Apply the given pattern to this Format object.
- applyPattern(String) - Method in class java.text.DecimalFormat
-
Apply the given pattern to this Format object.
- APRIL - Static variable in class java.util.Calendar
-
Constant representing April.
- ArithmeticException - Exception in java.lang
-
- ArithmeticException() - Constructor for exception java.lang.ArithmeticException
-
- ArithmeticException(String) - Constructor for exception java.lang.ArithmeticException
-
- array() - Method in class tijos.framework.util.json.JSONWriter
-
Begin appending a new array.
- arraycopy(Object, int, Object, int, int) - Static method in class java.lang.System
-
Copies one array to another.
- ArrayDeque<E> - Class in java.util
-
Resizable-array implementation of the
Deque
interface.
- ArrayDeque() - Constructor for class java.util.ArrayDeque
-
Constructs an empty array deque with an initial capacity
sufficient to hold 16 elements.
- ArrayDeque(int) - Constructor for class java.util.ArrayDeque
-
Constructs an empty array deque with an initial capacity
sufficient to hold the specified number of elements.
- ArrayDeque(Collection<? extends E>) - Constructor for class java.util.ArrayDeque
-
Constructs a deque containing the elements of the specified
collection, in the order they are returned by the collection's
iterator.
- ArrayIndexOutOfBoundsException - Exception in java.lang
-
- 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
-
An array-backed implementation of the List interface.
- ArrayList(int) - Constructor for class java.util.ArrayList
-
Construct a new ArrayList with the supplied initial capacity.
- ArrayList() - Constructor for class java.util.ArrayList
-
Construct a new ArrayList with the default capacity (16).
- ArrayList(Collection<? extends E>) - Constructor for class java.util.ArrayList
-
Construct a new ArrayList, and initialize it with the elements
in the supplied Collection.
- Arrays - Class in java.util
-
This class contains various static utility methods performing operations on
arrays, and a method to provide a List "view" of an array to facilitate
using arrays with Collection-based APIs.
- ArrayStoreException - Exception in java.lang
-
- ArrayStoreException() - Constructor for exception java.lang.ArrayStoreException
-
- ASC12 - Static variable in class tijos.framework.util.text.TiDotMatrix
-
ASC12, 8*12 dots
- ASC16 - Static variable in class tijos.framework.util.text.TiDotMatrix
-
ASC16, 8*16 dots
- ASC24 - Static variable in class tijos.framework.util.text.TiDotMatrix
-
ASC24, 8*24 dots
- ASC32 - Static variable in class tijos.framework.util.text.TiDotMatrix
-
ASC32, 16*32 dots
- ASC48 - Static variable in class tijos.framework.util.text.TiDotMatrix
-
ASC48, 24*48 dots
- asin(double) - Static method in class java.lang.Math
-
Inverse sine function.
- asLifoQueue(Deque<T>) - Static method in class java.util.Collections
-
Returns a view of a
Deque
as a stack or LIFO (Last-In-First-Out)
Queue
.
- asList(T...) - Static method in class java.util.Arrays
-
Returns a list "view" of the specified array.
- AssertionError - Error in java.lang
-
- AssertionError() - Constructor for error java.lang.AssertionError
-
- AssertionError(String) - Constructor for error java.lang.AssertionError
-
- AssertionError(boolean) - Constructor for error java.lang.AssertionError
-
- AssertionError(char) - Constructor for error java.lang.AssertionError
-
- AssertionError(double) - Constructor for error java.lang.AssertionError
-
- AssertionError(float) - Constructor for error java.lang.AssertionError
-
- AssertionError(int) - Constructor for error java.lang.AssertionError
-
- AssertionError(long) - Constructor for error java.lang.AssertionError
-
- AssertionError(Object) - Constructor for error java.lang.AssertionError
-
- asSubclass(Class<U>) - Method in class java.lang.Class
-
- atan(double) - Static method in class java.lang.Math
-
The inverse tangent function.
- atan2(double, double) - Static method in class java.lang.Math
-
The inverse tangent function.
- AttributedCharacterIterator - Interface in java.text
-
An AttributedCharacterIterator allows iteration through both text and
related attribute information.
- AttributedCharacterIterator.Attribute - Class in java.text
-
Defines attribute keys that are used to identify text attributes.
- AttributedString - Class in java.text
-
An AttributedString holds text and related attribute information.
- AttributedString(String) - Constructor for class java.text.AttributedString
-
Constructs an AttributedString instance with the given text.
- AttributedString(String, Map<? extends AttributedCharacterIterator.Attribute, ?>) - Constructor for class java.text.AttributedString
-
Constructs an AttributedString instance with the given text and attributes.
- AttributedString(AttributedCharacterIterator) - Constructor for class java.text.AttributedString
-
Constructs an AttributedString instance with the given attributed
text represented by AttributedCharacterIterator.
- AttributedString(AttributedCharacterIterator, int, int) - Constructor for class java.text.AttributedString
-
Constructs an AttributedString instance with the subrange of
the given attributed text represented by
AttributedCharacterIterator.
- AttributedString(AttributedCharacterIterator, int, int, AttributedCharacterIterator.Attribute[]) - Constructor for class java.text.AttributedString
-
Constructs an AttributedString instance with the subrange of
the given attributed text represented by
AttributedCharacterIterator.
- AUGUST - Static variable in class java.util.Calendar
-
Constant representing August.
- AutoCloseable - Interface in java.lang
-
- available() - Method in class java.io.BufferedInputStream
-
This method returns the number of bytes that can be read from this
stream before a read can block.
- 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
-
- available() - Method in class java.io.FilterInputStream
-
Calls the in.available()
method.
- available() - Method in class java.io.InputStream
-
This method returns the number of bytes that can be read from this
stream before a read can block.
- available() - Method in class java.io.PipedInputStream
-
This method returns the number of bytes that can be read from this stream
before blocking could occur.
- available() - Method in class java.io.PushbackInputStream
-
This method returns the number of bytes that can be read from this
stream before a read can block.
- available() - Method in class java.io.SequenceInputStream
-
This method returns the number of bytes than can be read from the
currently being read subordinate stream before that stream could
block.
- available() - Method in class java.net.Socket
-
Returns the number of bytes that the caller can read from this socket
without blocking.
- available() - Method in class tijos.framework.devicecenter.TiUART
-
Check read available