Package | Description |
---|---|
java.lang |
Core Java classes
|
java.util |
Utilities
|
Modifier and Type | Method and Description |
---|---|
Class<E> |
Enum.getDeclaringClass() |
static Long |
Long.getLong(String name,
int def) |
static <T extends Enum<T>> |
Enum.valueOf(Class<T> enumclas,
String name)
Deprecated.
not implemented in TiJOS
|
Modifier and Type | Method and Description |
---|---|
T |
Vector.elementAt(int index)
Returns the Object stored at
index . |
T |
Vector.firstElement()
Returns the first element (index 0) in the Vector.
|
T |
Vector.lastElement()
Returns the last element in the Vector.
|
T |
Stack.peek()
Returns the top Object on the stack without removing it.
|
T |
Stack.pop()
Pops an item from the stack and returns it.
|
T |
Vector.remove(int index)
Removes the element at the specified index, and returns it.
|
T |
Vector.set(int index,
T element)
Puts
element into the Vector at position index
and returns the Object that previously occupied that position. |