Skip navigation links
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 

L

last() - Method in interface java.text.CharacterIterator
Sets the position to getEndIndex()-1 (getEndIndex() if the text is empty) and returns the character at that position.
last() - Method in class java.text.StringCharacterIterator
Implements CharacterIterator.last() for String.
last() - Method in interface java.util.SortedSet
Returns the last (highest sorted) element in the set.
last() - Method in class java.util.TreeSet
Returns the last (by order) element in this Set.
lastElement() - Method in class java.util.Vector
Returns the last element in the Vector.
lastEntry() - Method in interface java.util.NavigableMap
Returns a key-value mapping associated with the greatest key in this map, or null if the map is empty.
lastEntry() - Method in class java.util.TreeMap
Returns the entry associated with the greatest or highest key in the map, or null if the map is empty.
lastIndexOf(int) - Method in class java.lang.String
 
lastIndexOf(int, int) - Method in class java.lang.String
 
lastIndexOf(String) - Method in class java.lang.String
Find the last occurrence of a String
lastIndexOf(String, int) - Method in class java.lang.String
Find last occurrence of s string from a given index
lastIndexOf(String) - Method in class java.lang.StringBuffer
 
lastIndexOf(String, int) - Method in class java.lang.StringBuffer
 
lastIndexOf(String) - Method in class java.lang.StringBuilder
 
lastIndexOf(String, int) - Method in class java.lang.StringBuilder
 
lastIndexOf(Object) - Method in class java.util.AbstractList
Obtain the last index at which a given object is to be found in this list.
lastIndexOf(Object) - Method in class java.util.ArrayList
Returns the highest index at which element appears in this List, or -1 if it does not appear.
lastIndexOf(Object) - Method in class java.util.LinkedList
Returns the last index where the element is located in the list, or -1.
lastIndexOf(Object) - Method in interface java.util.List
Obtain the last index at which a given object is to be found in this list.
lastIndexOf(Object) - Method in class java.util.Vector
Returns the last index of elem within this Vector, or -1 if the object is not within the Vector.
lastIndexOf(Object, int) - Method in class java.util.Vector
Returns the index of the first occurrence of elem, when searching backwards from index.
lastIndexOfSubList(List<?>, List<?>) - Static method in class java.util.Collections
Returns the starting index where the specified sublist last occurs in a larger list, or -1 if there is no matching position.
lastKey() - Method in interface java.util.SortedMap
Returns the last (highest sorted) key in the map.
lastKey() - Method in class java.util.TreeMap
Returns the last (highest) key in the map.
LEFT_JUSTIFY - Static variable in class java.util.FormattableFlags
Requires the output to be left-justified.
length() - Method in class java.io.File
Returns the length of the file denoted by this file name.
length() - Method in interface java.lang.CharSequence
Returns the length of the sequence.
length() - Method in class java.lang.String
Return the length of the String in characters
length() - Method in class java.lang.StringBuffer
 
length() - Method in class java.lang.StringBuilder
 
length() - Method in class java.util.BitSet
Returns the logical number of bits actually used by this bit set.
length() - Method in class tijos.framework.util.json.JSONArray
Get the number of elements in the JSONArray, included nulls.
length() - Method in class tijos.framework.util.json.JSONObject
Get the number of keys stored in the JSONObject.
LI_ALARM_CONDITION - Static variable in interface tijos.framework.networkcenter.ntp.NtpV3Packet
 
LI_LAST_MINUTE_HAS_59_SECONDS - Static variable in interface tijos.framework.networkcenter.ntp.NtpV3Packet
 
LI_LAST_MINUTE_HAS_61_SECONDS - Static variable in interface tijos.framework.networkcenter.ntp.NtpV3Packet
 
LI_NO_WARNING - Static variable in interface tijos.framework.networkcenter.ntp.NtpV3Packet
 
lineno() - Method in class java.io.StreamTokenizer
Return the current line number.
LineNumberReader - Class in java.io
A buffered character-input stream that keeps track of line numbers.
LineNumberReader(Reader) - Constructor for class java.io.LineNumberReader
Create a new line-numbering reader, using the default input-buffer size.
LineNumberReader(Reader, int) - Constructor for class java.io.LineNumberReader
Create a new line-numbering reader, reading characters into a buffer of the given size.
LinkedHashMap<K,V> - Class in java.util
This class provides a hashtable-backed implementation of the Map interface, with predictable traversal order.
LinkedHashMap() - Constructor for class java.util.LinkedHashMap
Construct a new insertion-ordered LinkedHashMap with the default capacity (11) and the default load factor (0.75).
LinkedHashMap(Map<? extends K, ? extends V>) - Constructor for class java.util.LinkedHashMap
Construct a new insertion-ordered LinkedHashMap from the given Map, with initial capacity the greater of the size of m or the default of 11.
LinkedHashMap(int) - Constructor for class java.util.LinkedHashMap
Construct a new insertion-ordered LinkedHashMap with a specific inital capacity and default load factor of 0.75.
LinkedHashMap(int, float) - Constructor for class java.util.LinkedHashMap
Construct a new insertion-orderd LinkedHashMap with a specific inital capacity and load factor.
LinkedHashMap(int, float, boolean) - Constructor for class java.util.LinkedHashMap
Construct a new LinkedHashMap with a specific inital capacity, load factor, and ordering mode.
LinkedHashSet<T> - Class in java.util
This class provides a hashtable-backed implementation of the Set interface, with predictable traversal order.
LinkedHashSet() - Constructor for class java.util.LinkedHashSet
Construct a new, empty HashSet whose backing HashMap has the default capacity (11) and loadFactor (0.75).
LinkedHashSet(int) - Constructor for class java.util.LinkedHashSet
Construct a new, empty HashSet whose backing HashMap has the supplied capacity and the default load factor (0.75).
LinkedHashSet(int, float) - Constructor for class java.util.LinkedHashSet
Construct a new, empty HashSet whose backing HashMap has the supplied capacity and load factor.
LinkedHashSet(Collection<? extends T>) - Constructor for class java.util.LinkedHashSet
Construct a new HashSet with the same elements as are in the supplied collection (eliminating any duplicates, of course).
LinkedList<T> - Class in java.util
Linked list implementation of the List interface.
LinkedList() - Constructor for class java.util.LinkedList
Create an empty linked list.
LinkedList(Collection<? extends T>) - Constructor for class java.util.LinkedList
Create a linked list containing the elements, in order, of a given collection.
list(Enumeration<T>) - Static method in class java.util.Collections
Returns an ArrayList holding the elements visited by a given Enumeration.
List<E> - Interface in java.util
An ordered collection (also known as a list).
list(PrintStream) - Method in class java.util.Properties
Prints the key/value pairs to the given print stream.
list(PrintWriter) - Method in class java.util.Properties
Prints the key/value pairs to the given print writer.
listFiles() - Static method in class java.io.File
Returns a list of files in the flash file system.
listIterator() - Method in class java.util.AbstractList
Obtain a ListIterator over this list, starting at the beginning.
listIterator(int) - Method in class java.util.AbstractList
Obtain a ListIterator over this list, starting at a given position.
listIterator(int) - Method in class java.util.AbstractSequentialList
Returns a ListIterator over the list, starting from position index.
listIterator(int) - Method in class java.util.LinkedList
Obtain a ListIterator over this list, starting at a given index.
listIterator() - Method in interface java.util.List
Obtain a ListIterator over this list, starting at the beginning.
listIterator(int) - Method in interface java.util.List
Obtain a ListIterator over this list, starting at a given position.
ListIterator<E> - Interface in java.util
An extended version of Iterator to support the extra features of Lists.
LittleBitConverter - Class in tijos.framework.util
Converts base data types to an array of bytes in Little Endian, and an array of bytes to base data types.
LittleBitConverter() - Constructor for class tijos.framework.util.LittleBitConverter
 
load(Reader) - Method in class java.util.Properties
Reads a property list from a character stream.
load(InputStream) - Method in class java.util.Properties
Reads a property list from the supplied input stream.
locale() - Method in class java.util.Formatter
Returns the locale used by this formatter.
Locale - Class in java.util
Locales represent a specific country and culture.
Locale(String, String, String) - Constructor for class java.util.Locale
Creates a new locale for the given language and country.
Locale(String, String) - Constructor for class java.util.Locale
Creates a new locale for the given language and country.
Locale(String) - Constructor for class java.util.Locale
Creates a new locale for a language.
log(double) - Static method in class java.lang.Math
Natural log function.
log(String, int, String) - Method in class tijos.framework.util.logging.Logger
 
log(String, int, String, Object) - Method in class tijos.framework.util.logging.Logger
 
log10(double) - Static method in class java.lang.Math
Returns the base 10 logarithm of a double value.
Logger - Class in tijos.framework.util.logging
 
logp(String, int, String, Object[]) - Method in class tijos.framework.util.logging.Logger
 
Long - Class in java.lang
Wrapper class for long integers.
Long(long) - Constructor for class java.lang.Long
 
Long(String) - Constructor for class java.lang.Long
 
LONG - Static variable in class java.util.Calendar
A style specifier for #getDisplayName(int,int,Locale) and #getDisplayNames(int,int,Locale) stating that names should be returned in their long variant if applicable.
longBitsToDouble(long) - Static method in class java.lang.Double
Returns the double-float corresponding to a given bit representation.
longValue() - Method in class java.lang.Byte
 
longValue() - Method in class java.lang.Double
 
longValue() - Method in class java.lang.Float
 
longValue() - Method in class java.lang.Integer
 
longValue() - Method in class java.lang.Long
 
longValue() - Method in class java.lang.Number
Return the long value of this Number.
longValue() - Method in class java.lang.Short
 
lower(E) - Method in interface java.util.NavigableSet
Returns the greatest element in this set strictly less than the given element, or null if there is no such element.
lower(T) - Method in class java.util.TreeSet
Returns the greatest or highest element in the set strictly less than the given element, or null if there is no such element.
lowerCaseMode(boolean) - Method in class java.io.StreamTokenizer
Determines whether or not word token are automatically lowercased.
lowerEntry(K) - Method in interface java.util.NavigableMap
Returns a key-value mapping associated with the greatest key strictly less than the given key, or null if there is no such key.
lowerEntry(K) - Method in class java.util.TreeMap
Returns the entry associated with the greatest or highest key that is strictly less than the specified key, or null if there is no such key.
lowerKey(K) - Method in interface java.util.NavigableMap
Returns the greatest key strictly less than the given key, or null if there is no such key.
lowerKey(K) - Method in class java.util.TreeMap
Returns the the greatest or highest key that is strictly less than the specified key, or null if there is no such key.
lowestOneBit(int) - Static method in class java.lang.Integer
 
lowestOneBit(long) - Static method in class java.lang.Long
 
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z 
Skip navigation links