A B C D E G H I L N O P Q R S T W

A

addAll(Vector, Object[]) - Static method in class net.sf.btw.commons.ArrayUtils
Appends all items from given array after last item of the vector.
addAll(Vector, Object) - Static method in class net.sf.btw.commons.ArrayUtils
Appends all items from given array after last item of the vector.
addAll(Vector, Vector) - Static method in class net.sf.btw.commons.ArrayUtils
Appends all items from given array after last item of the vector.
arrayToEnumeration(Object) - Static method in class net.sf.btw.commons.ArrayUtils
Creates an enumeration from given object.
arrayToString(Object) - Static method in class net.sf.btw.commons.ArrayUtils
Converts given array to a string representation.
ArrayUtils - Class in net.sf.btw.commons
Array utilities.
ArrayUtils.ArrayEnumeration - Class in net.sf.btw.commons
Converts given object into an enumeration.
ArrayUtils.ArrayEnumeration(Object) - Constructor for class net.sf.btw.commons.ArrayUtils.ArrayEnumeration
Constructor.

B

bufferSize - Variable in class net.sf.btw.commons.Queue
The size of the buffer.

C

checkIsArray(Object, boolean) - Static method in class net.sf.btw.commons.ArrayUtils
Checks if given object is an array, as per ArrayUtils.isArray(Object).
clear() - Method in class net.sf.btw.commons.Queue
Removes all objects from the queue.
clone(Object, boolean) - Static method in class net.sf.btw.commons.ArrayUtils
Clones given array.
commandAction(Command, Displayable) - Method in class net.sf.btw.commons.Logger
 
CURRENT_LEVEL - Static variable in class net.sf.btw.commons.Logger
Current log level.

D

debug(String, Throwable) - Static method in class net.sf.btw.commons.Logger
Logs an debug message.

E

ENABLE_CONSOLE - Static variable in class net.sf.btw.commons.Logger
If true then the original System.out is used to print log aswell.
equals(Enumeration, Enumeration) - Static method in class net.sf.btw.commons.ArrayUtils
Compares two enumerations if they contain equal objects in correct order.
equals(Enumeration, Object[]) - Static method in class net.sf.btw.commons.ArrayUtils
Compares two enumerations if they contain equal objects in correct order.
equals(Object[], Object[]) - Static method in class net.sf.btw.commons.ArrayUtils
Compares two arrays if they contain equal objects in correct order.
equals(Object, Object) - Static method in class net.sf.btw.commons.ArrayUtils
Compares two arrays if they contain equal objects in correct order.
equals(Object) - Method in class net.sf.btw.commons.Queue
 
equalsObjects(Object, Object) - Static method in class net.sf.btw.commons.ArrayUtils
The ultimate comparator.
error(String, Throwable) - Static method in class net.sf.btw.commons.Logger
Logs an error message.

G

getElementAt(Object, int) - Static method in class net.sf.btw.commons.ArrayUtils
Retrieves item from given array.
getEnumeration() - Method in class net.sf.btw.commons.Queue
Returns enumeration of items in this queue.
getLength(Object) - Static method in class net.sf.btw.commons.ArrayUtils
Returns length of given array.

H

hashCode(Object) - Static method in class net.sf.btw.commons.ArrayUtils
Computes correct hashcode for given object.
hashCode() - Method in class net.sf.btw.commons.Queue
 
hasMoreElements() - Method in class net.sf.btw.commons.ArrayUtils.ArrayEnumeration
 
hasMoreElements() - Method in class net.sf.btw.commons.Queue
 

I

indexOf(Vector, Object) - Static method in class net.sf.btw.commons.ArrayUtils
Finds first occurence of given object in given vector.
info(String, Throwable) - Static method in class net.sf.btw.commons.Logger
Logs an info message.
isArray(Object) - Static method in class net.sf.btw.commons.ArrayUtils
Returns true if given object is an array or a Queue, a Vector or an ArrayUtils.ArrayEnumeration.
isEmpty() - Method in class net.sf.btw.commons.Queue
Checks if this queue is empty.
isFull() - Method in class net.sf.btw.commons.Queue
Checks if this queue is full.
isLoggable(int) - Static method in class net.sf.btw.commons.Logger
Checks if given level is loggable with current log level setting.

L

LEVEL_DEBUG - Static variable in class net.sf.btw.commons.Logger
Debug log level.
LEVEL_ERROR - Static variable in class net.sf.btw.commons.Logger
Error log level.
LEVEL_INFO - Static variable in class net.sf.btw.commons.Logger
Info log level.
LEVEL_WARNING - Static variable in class net.sf.btw.commons.Logger
Warning log level.
log(int, String, Throwable) - Static method in class net.sf.btw.commons.Logger
Logs given event.
Logger - Class in net.sf.btw.commons
Able to log application status.
Logger(Displayable, Display) - Constructor for class net.sf.btw.commons.Logger
Constructs new logger form, immediately switching to the form.

N

net.sf.btw.commons - package net.sf.btw.commons
 
nextElement() - Method in class net.sf.btw.commons.ArrayUtils.ArrayEnumeration
 
nextElement() - Method in class net.sf.btw.commons.Queue
 

O

occupiedSlots() - Method in class net.sf.btw.commons.Queue
Returns number of occupied slots in circular buffer array.
offer(Object) - Method in class net.sf.btw.commons.Queue
Inserts the specified element into this queue, if possible.
offerAll(Enumeration) - Method in class net.sf.btw.commons.Queue
Inserts specified elements into this queue, if possible.

P

peek() - Method in class net.sf.btw.commons.Queue
Peeks at the head of the queue and returns head item without removing it from the queue.
peek(int) - Method in class net.sf.btw.commons.Queue
Peeks at the head of the queue and returns index-th object beneath the head.
poll() - Method in class net.sf.btw.commons.Queue
Retrieves and removes the head of this queue, or null if this queue is empty.

Q

Queue - Class in net.sf.btw.commons
Circular buffer (FIFO) of a fixed length.
Queue(int) - Constructor for class net.sf.btw.commons.Queue
Creates new buffer.
Queue(Queue) - Constructor for class net.sf.btw.commons.Queue
Clones given queue.

R

readByteArray(InputStream) - Static method in class net.sf.btw.commons.StreamUtils
Reads the byte array from the input stream.
readPackedInt(InputStream) - Static method in class net.sf.btw.commons.StreamUtils
Reads the number in a packed format.
removeLast() - Method in class net.sf.btw.commons.Queue
Removes last item offered to the queue.

S

setElementAt(Object, int, Object) - Static method in class net.sf.btw.commons.ArrayUtils
Sets item into given array.
StreamUtils - Class in net.sf.btw.commons
Utilities for working with streams.
stringToByteArray(String) - Static method in class net.sf.btw.commons.StreamUtils
Writes given string to data output stream as a string.

T

toString() - Method in class net.sf.btw.commons.Queue
 

W

warn(String, Throwable) - Static method in class net.sf.btw.commons.Logger
Logs an warning message.
writeByteArray(byte[], OutputStream) - Static method in class net.sf.btw.commons.StreamUtils
Writes the byte array to the output stream.
writePackedInt(int, OutputStream) - Static method in class net.sf.btw.commons.StreamUtils
Writes the number in a packed format.

A B C D E G H I L N O P Q R S T W

Copyright © 2007 Moto a Judas. All Rights Reserved.