A B C D E F G H I J K L M N O P Q R S T U V W

A

ActionServlet - class com.javaranch.common.ActionServlet.
 
ActionServlet.ActionHandler - interface com.javaranch.common.ActionServlet.ActionHandler.
 
ActionServlet() - Constructor for class com.javaranch.common.ActionServlet
 
ADate - class com.javaranch.common.ADate.
Gregorian Date, american format (MM/DD/YYYY).
ADate() - Constructor for class com.javaranch.common.ADate
Create a Gregorian Date object with a default of today's date.
ADate(GDate) - Constructor for class com.javaranch.common.ADate
Create a Gregorian Date object from another Gregorian Date object (GDate or ADate).
ADate(int, int, int) - Constructor for class com.javaranch.common.ADate
Create a Gregorian Date object with a specific date.
ADate(JDate) - Constructor for class com.javaranch.common.ADate
Create a Gregorian Date object with a specific Julian date.
ADate(String) - Constructor for class com.javaranch.common.ADate
Create a Gregorian Date object with a loosely formatted text date.
ADate(Timestamp) - Constructor for class com.javaranch.common.ADate
Create a Gregorian Date object based on today's date.
ADate(TimeZone) - Constructor for class com.javaranch.common.ADate
Create a Gregorian Date object with a default of today's date.
add(Object) - Static method in class com.javaranch.common.DataPool
Object in, token out - use the token to get the object back.
add(String) - Method in class com.javaranch.common.ErrorLog
Add an error message to the ErrorLog object.
addActionHandler(String, ActionServlet.ActionHandler) - Method in class com.javaranch.common.ActionServlet
Override init and call this method for every action to be implemented.
addAndDisplay(Component, String) - Method in class com.javaranch.common.ErrorLog
Add an error message to the ErrorLog object and display that mesage to the user in a Dialog.
addButtonListener(ButtonAdapter) - Method in class com.javaranch.common.LButton
 
addButtonListener(ButtonListener) - Method in class com.javaranch.common.LButton
Capture mouse press or release events.
addMenuItem(JComponent, JMenuItem, ActionListener) - Static method in class com.javaranch.common.GUI
A convenience function that adds an ActionListener to a JMenuItem and adds the item to a JMenu.
addMenuItem(JComponent, String) - Static method in class com.javaranch.common.GUI
A convenience method that makes a JMenuItem out of some text and adds that to a JMenu.
addMenuItem(JComponent, String, ActionListener) - Static method in class com.javaranch.common.GUI
A convenience method that makes a JMenuItem out of some text, adds an ActionListener and adds the result to a JMenu.
addPressListener(PressListener) - Method in class com.javaranch.common.LButton
Capture mouse press events.
addReleaseListener(ReleaseListener) - Method in class com.javaranch.common.LButton
Capture mouse release events.
addSearch(String, int) - Method in class com.javaranch.db.DBQuery
 
addSearch(String, int[]) - Method in class com.javaranch.db.DBQuery
Add search parameters to the existing search using 'AND'.
addSearch(String, String) - Method in class com.javaranch.db.DBQuery
Add search parameters to the existing search using 'AND'.
addSearch(String, String[]) - Method in class com.javaranch.db.DBQuery
Add search parameters to the existing search using 'AND'.
addStartsWithSearch(String, String) - Method in class com.javaranch.db.DBQuery
Add search parameters to the existing search using 'AND', looking for a substring at the beginning of a column.
addSubstringSearch(String, String) - Method in class com.javaranch.db.DBQuery
Add search parameters to the existing search using 'AND', looking for a substring within a column.
adjust(int) - Method in class com.javaranch.common.JDate
Adjust the date by the given value.
adjust(int, int, int, int) - Method in class com.javaranch.common.IRect
Adjust all possible attributes of this object.
after(int) - Method in class com.javaranch.common.Str
Get all of the substring that occurs after a particular character.
after(String, int) - Static method in class com.javaranch.common.Str
Get all of the substring that occurs after a particular character.
append(byte) - Method in class com.javaranch.common.ByteVector
Add one byte to the end of the vector.
append(byte[]) - Method in class com.javaranch.common.ByteVector
Add an array of bytes to the end of this object.
append(byte[], int) - Method in class com.javaranch.common.ByteVector
Add an array of bytes to the end of this object.
append(ByteVector) - Method in class com.javaranch.common.ByteVector
Add all of the bytes in another ByteVector to the end of this object.
append(char) - Method in class com.javaranch.common.Str
Add one character to the end of the string.
append(Str) - Method in class com.javaranch.common.Str
Append a string on to the end of your string.
append(String) - Method in class com.javaranch.common.Str
Append a string on to the end of your string.
appendLogFile(String) - Method in class com.javaranch.common.ErrorLog
Tell the ErrorLog object that all future error messages are to be copied to a text file.
appendText(String, String) - Static method in class com.javaranch.common.Files
 
arrayToFile(String[], String) - Static method in class com.javaranch.common.Files
Replaced with toTextFile().
arrayToString(String[]) - Static method in class com.javaranch.common.Structures
 
ascent(Component) - Static method in class com.javaranch.common.AWT
Get the ascent associated with the font used by a component.
atod(String) - Static method in class com.javaranch.common.Str
Like the ANSI c function atod().
atoi(char) - Static method in class com.javaranch.common.Str
Sort of like the ANSI c function atoi().
atoi(String) - Static method in class com.javaranch.common.Str
Like the ANSI c function atoi().
AWT - class com.javaranch.common.AWT.
contains a collection of static methods related to GUI's (AWT only).

B

before(int) - Method in class com.javaranch.common.Str
Get all of the substring that occurs before a particular character.
before(String, int) - Static method in class com.javaranch.common.Str
Get all of the substring that occurs before a particular character.
blank() - Static method in class com.javaranch.common.AWT
Returns an object that can be used for whitespace in GridLayout.
blur(BufferedImage) - Static method in class com.javaranch.common.GUI
 
button(String, int, int, Font, FontMetrics) - Static method in class com.javaranch.common.GUI
 
button(String, int, int, int, int) - Static method in class com.javaranch.common.GUI
 
ButtonAdapter - class com.javaranch.common.ButtonAdapter.
Extend this and override the methods that you want to implement.
ButtonAdapter() - Constructor for class com.javaranch.common.ButtonAdapter
 
ButtonData - class com.javaranch.common.ButtonData.
This is a serializable object that can be passed in to create a new LButton.
ButtonData(byte[], byte[], byte[], IPoint) - Constructor for class com.javaranch.common.ButtonData
Create a new ButtonData object.
ButtonListener - interface com.javaranch.common.ButtonListener.
Implement two interfaces in one.
buttonPressed() - Method in interface com.javaranch.common.PressListener
 
buttonPressed() - Method in class com.javaranch.common.ButtonAdapter
 
buttonReleased() - Method in interface com.javaranch.common.ReleaseListener
 
buttonReleased() - Method in class com.javaranch.common.ButtonAdapter
 
byteArrayToFile(byte[], String) - Static method in class com.javaranch.common.Files
 
byteToPositiveInt(byte) - Static method in class com.javaranch.common.Numbers
Convert a possibly negative valued byte to a positive value integer.
ByteVector - class com.javaranch.common.ByteVector.
Like the Vector object, except rather than tracking dynamic array of pointers to different objects, this is simply a dynamic array of bytes.
ByteVector() - Constructor for class com.javaranch.common.ByteVector
The object has memory allocated to store a moderate number of bytes.
ByteVector(byte[]) - Constructor for class com.javaranch.common.ByteVector
The object is inititialized to contain a copy of a byte array.
ByteVector(ByteVector) - Constructor for class com.javaranch.common.ByteVector
The object is inititialized to contain a copy of another ByteVector.
ByteVector(int) - Constructor for class com.javaranch.common.ByteVector
Create a new ByteVector with a specific initial capacity.
ByteVector(int, int) - Constructor for class com.javaranch.common.ByteVector
Create a new ByteVector with a specific initial capacity and to be able to grow by a specific increment.

C

CastMap - class com.javaranch.common.CastMap.
This hashtable gives some extra casting help.
CastMap() - Constructor for class com.javaranch.common.CastMap
 
center - Static variable in class com.javaranch.common.AWT
 
center(Component) - Static method in class com.javaranch.common.AWT
Center any GUI object on the screen.
center(int) - Method in class com.javaranch.common.Str
Try to center the text in a pad of spaces.
center(String, int) - Static method in class com.javaranch.common.Str
Try to center the text in a pad of spaces.
charAt(int) - Method in class com.javaranch.common.Str
Used for compatibility with String and StringBuffer.
charCount(char) - Method in class com.javaranch.common.Str
Count how many times a particular character occurs within your string.
checkBox(int, int, int, int) - Static method in class com.javaranch.common.GUI
 
checkConsoleLogging() - Method in class com.javaranch.common.LogServlet
Call this as the first thing you do if you override the traditional doGet() or doPost().
clone() - Method in class com.javaranch.common.GDate
Get a copy of this object.
clone() - Method in class com.javaranch.common.ADate
Get a copy of this object.
com.javaranch.common - package com.javaranch.common
 
com.javaranch.db - package com.javaranch.db
 
commaStr(double) - Static method in class com.javaranch.common.Str
Converts a double to a string with commas inserted for thousands, millions, etc.
compareTo(Str) - Method in class com.javaranch.common.Str
A string comparison method that returns a numeric result.
compareTo(String) - Method in class com.javaranch.common.Str
A string comparison method that returns a numeric result.
copy(InputStream, OutputStream) - Static method in class com.javaranch.common.Files
 
countDigits() - Method in class com.javaranch.common.Str
 
countRange(char, char) - Method in class com.javaranch.common.Str
the number of digits that occur within this range.
CRC - class com.javaranch.common.CRC.
A class that makes it easier to create CRC codes.
CRC() - Constructor for class com.javaranch.common.CRC
 
createBeveledImage(int, int, Color, Color, Color, Color, Color, int) - Static method in class com.javaranch.common.GUI
Create an image that looks like a beveled rectangle.
createBeveledImage(int, int, Color, int) - Static method in class com.javaranch.common.GUI
 
ctx - Variable in class com.javaranch.common.SessionEJB
 
ctx - Variable in class com.javaranch.common.EntityEJB
 

D

darken(Color, double) - Static method in class com.javaranch.common.GUI
 
DataPool - class com.javaranch.common.DataPool.
- - - - - - - - - - - - - - - - -
DateField - class com.javaranch.common.DateField.
Looks and smells like a JTextField, but gets picky about the input being the right date format.
DateField() - Constructor for class com.javaranch.common.DateField
 
DateField(GDate) - Constructor for class com.javaranch.common.DateField
 
DateField(String) - Constructor for class com.javaranch.common.DateField
 
DBFacade - class com.javaranch.db.DBFacade.
Abstract out all or most of SQL and JDBC to centralize database access, reduce code redundancy and facilitate unit testing.
DBFacade(String) - Constructor for class com.javaranch.db.DBFacade
Instantiate a DBFacade object where all database connections will be based on a JNDI lookup.
DBFacade(String, String) - Constructor for class com.javaranch.db.DBFacade
Instantiate a DBFacade object where all database connections will be based on loading a databaseDriver and accessing a database URL.
DBFacade(String, String, String, String) - Constructor for class com.javaranch.db.DBFacade
Instantiate a DBFacade object where all database connections will be based on loading a driver and accessing a database URL.
DBQuery - class com.javaranch.db.DBQuery.
 
DBQuery(String) - Constructor for class com.javaranch.db.DBQuery
 
DBQuery(String, String, int) - Constructor for class com.javaranch.db.DBQuery
 
DBQuery(String, String, int[]) - Constructor for class com.javaranch.db.DBQuery
 
DBQuery(String, String, int[], String[]) - Constructor for class com.javaranch.db.DBQuery
 
DBQuery(String, String, int, String[]) - Constructor for class com.javaranch.db.DBQuery
 
DBQuery(String, String, String) - Constructor for class com.javaranch.db.DBQuery
 
DBQuery(String, String, String[]) - Constructor for class com.javaranch.db.DBQuery
 
DBQuery(String, String, String[], String[]) - Constructor for class com.javaranch.db.DBQuery
 
DBQuery(String, String, String, String[]) - Constructor for class com.javaranch.db.DBQuery
 
DBResults - class com.javaranch.db.DBResults.
Returned from DBFacade and Jenny generated classes.
DBResults() - Constructor for class com.javaranch.db.DBResults
 
debug(String) - Static method in class com.javaranch.common.Time
send test to System.out.println and then delay for half a sec.
debugReport(PrintWriter) - Method in class com.javaranch.common.LogServlet
Override this if you have more to say in the GET debug information.
dec() - Method in class com.javaranch.common.JDate
Decrement the date by one.
decimalDegrees(String) - Static method in class com.javaranch.common.Numbers
Pass in a string that represents some form of lat or long and a decimal value is returned.
delay(int) - Static method in class com.javaranch.common.Time
Wait for a bit.
delete(Connection, DBQuery) - Method in class com.javaranch.db.DBFacade
Delete all rows matching the search portion of the DBQuery object.
delete(Connection, String, String) - Method in class com.javaranch.db.TableFacade
 
delete(Connection, String, String, String) - Method in class com.javaranch.db.DBFacade
Delete all rows where the searchText matches the text found in column.
delete(DBQuery) - Method in class com.javaranch.db.DBFacade
 
delete(int, int) - Method in class com.javaranch.common.Str
Remove characters from your string.
delete(int, int) - Method in class com.javaranch.common.ByteVector
Remove bytes from your object.
delete(String) - Static method in class com.javaranch.common.Files
Delete a specific file.
delete(String) - Static method in class com.javaranch.common.DataPool
 
delete(String, String) - Method in class com.javaranch.db.TableFacade
 
delete(String, String, String) - Method in class com.javaranch.db.DBFacade
Delete all rows where the searchText matches the text found in column.
deleteAllFilesInDir(String) - Static method in class com.javaranch.common.Files
Delete a specific file.
deleteDirectory(File) - Static method in class com.javaranch.common.Files
Deletes a directory structure.
deleteFirst() - Method in class com.javaranch.common.Str
Remove first character from the beginning of your string.
deleteFirst(int) - Method in class com.javaranch.common.Str
Remove characters from the beginning of your string.
deleteLast() - Method in class com.javaranch.common.Str
Remove the last character from the end of your string.
deleteLast(int) - Method in class com.javaranch.common.Str
Remove characters from the end of your string.
doAction(ServletData) - Method in interface com.javaranch.common.ActionServlet.ActionHandler
 
doGet(HttpServletRequest, HttpServletResponse) - Method in class com.javaranch.common.ActionServlet
 
doGet(PrintWriter, CastMap) - Method in class com.javaranch.common.LogServlet
if you need doGet, override this instead of the normal doGet.
DOM - class com.javaranch.common.DOM.
Some static method shortcuts to help with working with DOM.
DOM() - Constructor for class com.javaranch.common.DOM
 
doObject(Object) - Method in class com.javaranch.common.ObjectServlet
You receive an object and you give an object back.
doObject(Object, HttpServletRequest) - Method in class com.javaranch.common.ObjectServlet
You receive an object and you give an object back.
doPost(HttpServletRequest, HttpServletResponse) - Method in class com.javaranch.common.ObjectServlet
Internal use only.
doPost(HttpServletRequest, HttpServletResponse) - Method in class com.javaranch.common.ActionServlet
 
doPost(PrintWriter, CastMap) - Method in class com.javaranch.common.LogServlet
if you need doPost(), override this instead of the normal doPost().
DPoint - class com.javaranch.common.DPoint.
A very lean serialized point type where X and Y are of type double.
DPoint() - Constructor for class com.javaranch.common.DPoint
Create a double point object initialized to 0.0,0.0.
DPoint(double, double) - Constructor for class com.javaranch.common.DPoint
Create a double point object initialized to x,y.
drawBeveledRect(Graphics, IRect, Color, Color, Color, Color, int) - Static method in class com.javaranch.common.AWT
Draw a beveled rectangle.
drawBeveledRect(Graphics, Rectangle, int, boolean) - Static method in class com.javaranch.common.AWT
Draw a beveled rectangle and assumes the color of gray.
drawBeveledRect(Graphics, Rectangle, int, boolean, Color) - Static method in class com.javaranch.common.AWT
Draw a beveled rectangle.

E

EJB - class com.javaranch.common.EJB.
Abstract base class for EntityEJB and SessionEJB.
EJB() - Constructor for class com.javaranch.common.EJB
 
ejbActivate() - Method in class com.javaranch.common.EJB
Override this method only if you need to.
EJBClient - class com.javaranch.common.EJBClient.
An object the represents a client side access to a server.
EJBClient() - Constructor for class com.javaranch.common.EJBClient
Works for most needs
EJBClient(String, String, boolean, boolean) - Constructor for class com.javaranch.common.EJBClient
 
ejbCreate() - Method in class com.javaranch.common.SessionEJB
Override this only if you have to.
ejbPassivate() - Method in class com.javaranch.common.EJB
Override this method only if you need to.
ejbRemove() - Method in class com.javaranch.common.SessionEJB
Override this only if you have to.
Email - class com.javaranch.common.Email.
Emails a message to a user.
Email() - Constructor for class com.javaranch.common.Email
 
emailMessage(PrintWriter, String) - Method in class com.javaranch.common.LogServlet
E-mail a message to the admin, send it to the user and add it to the log.
emailMessage(String) - Method in class com.javaranch.common.LogServlet
E-mail a message to the admin and add the same message to the log.
endian(int) - Static method in class com.javaranch.common.Numbers
Reverse the byte order of a four byte integer.
endian(short) - Static method in class com.javaranch.common.Numbers
Swap the upper and lower bytes of a two byte integer.
endsWith(String) - Method in class com.javaranch.common.Str
Does the string object end with this bit of text.
EntityEJB - class com.javaranch.common.EntityEJB.
This class provides empty EntityBean methods.
EntityEJB() - Constructor for class com.javaranch.common.EntityEJB
 
Env - class com.javaranch.common.Env.
A class that loads an environment file and makes the data of that file available as key-value pairs.
Env() - Constructor for class com.javaranch.common.Env
 
eq(Str) - Method in class com.javaranch.common.Str
Test for equality between your string and the string in s.
eq(String) - Method in class com.javaranch.common.Str
Test for equality between your string and the string in s.
equal(String[], String[]) - Static method in class com.javaranch.common.Str
Uses String.equals(), but will consider that either or both arrays/strings might be null.
equal(String, String) - Static method in class com.javaranch.common.Str
Uses String.equals(), but will consider that either or both strings might be null.
equals(int) - Method in class com.javaranch.common.JDate
Compare this object to an integer.
equals(IRect) - Method in class com.javaranch.common.IRect
Are the two IRect objects at the same location and the same size.
equals(Object) - Method in class com.javaranch.common.Str
 
equals(Object) - Method in class com.javaranch.common.JDate
 
equals(Object) - Method in class com.javaranch.common.IRect
 
equals(Object) - Method in class com.javaranch.common.IPoint
 
equals(Object) - Method in class com.javaranch.common.GDate
 
equals(Object) - Method in class com.javaranch.common.DPoint
 
equals(Object) - Method in class com.javaranch.db.DBQuery
 
errorDialog(Frame, String) - Static method in class com.javaranch.common.GUI
 
ErrorLog - class com.javaranch.common.ErrorLog.
ErrorLog is a simple way of handling warnings and errors in your programs.
ErrorLog() - Constructor for class com.javaranch.common.ErrorLog
Create an ErrorLog object where errors are sent to System.err
ErrorLog(String) - Constructor for class com.javaranch.common.ErrorLog
Create an ErrorLog object where errors are sent to a text file.
executeQuery(Connection, String) - Method in class com.javaranch.db.DBFacade
Sometimes you just gotta do it in SQL.
exists(String) - Method in class com.javaranch.common.ServletData
Is the key used in the session.
extractWord() - Method in class com.javaranch.common.Str
Extract and return the first word.

F

fail() - Method in class com.javaranch.common.TestLog
The message "test fail" plus the source file name and line number are added to the log.
fail(String) - Method in class com.javaranch.common.TestLog
The message "test fail:" plus the message, source file name and line number are added to the log.
Files - class com.javaranch.common.Files.
Contains a collection of static methods related to files.
fileToArray(String) - Static method in class com.javaranch.common.Files
All of a text file is read in and stored in a String array.
fileToByteArray(String) - Static method in class com.javaranch.common.Files
Read a file from the disk into a byte array.
fileToByteArrayE(String) - Static method in class com.javaranch.common.Files
Read a file from the disk into a byte array.
fileToHashSet(String) - Static method in class com.javaranch.common.Files
All of a text file is read in and unique elements are stored in a HashSet.
fileToList(String) - Static method in class com.javaranch.common.Files
All of a text file is read in and stored in a Vector.
fileToUniqueArray(String) - Static method in class com.javaranch.common.Files
All of a text file is read in and unique Strings are stored in a String array.
fileToVector(String) - Static method in class com.javaranch.common.Files
Deprecated.  
firstDigit() - Method in class com.javaranch.common.Str
Returns the index of the first digit, or returns -1 if there are no digits.
focusGained(FocusEvent) - Method in class com.javaranch.common.DateField
Internal use only.
focusLost(FocusEvent) - Method in class com.javaranch.common.DateField
Internal use only.
FontHeight(Component) - Static method in class com.javaranch.common.AWT
Get the height associated with the font used by a component.
forceDown() - Method in class com.javaranch.common.LButton
Force the button to "down" mode.
forceNumeric() - Method in class com.javaranch.common.Str
Force string to be the first number found.
forceUp() - Method in class com.javaranch.common.LButton
Force the button to "up" mode.
formatDouble(double, int) - Static method in class com.javaranch.common.Str
Converts a double to a string with a specified number of decimal places.
forward(String, ServletData) - Method in class com.javaranch.common.ActionServlet
Load a servlet, or web page, or JSP, or whatever.
from(int) - Method in class com.javaranch.common.Str
Get all of the substring that occurs from a particular character to the end of the string.
from(String, int) - Static method in class com.javaranch.common.Str
Get all of the substring that occurs from a particular character to the end of the string.

G

gbc(int, int) - Static method in class com.javaranch.common.AWT
For creating quick GridBagConstraints objects.
gbc(int, int, int, int, double, double) - Static method in class com.javaranch.common.AWT
For creating quick GridBagConstraints objects.
GDate - class com.javaranch.common.GDate.
Gregorian Date, international format (YYYY/MM/DD).
GDate() - Constructor for class com.javaranch.common.GDate
Create a Gregorian Date object with a default of today's date.
GDate(Date) - Constructor for class com.javaranch.common.GDate
 
GDate(GDate) - Constructor for class com.javaranch.common.GDate
Create a Gregorian Date object from another Gregorian Date object (GDate or ADate).
GDate(int, int, int) - Constructor for class com.javaranch.common.GDate
Create a Gregorian Date object with a specific date.
GDate(JDate) - Constructor for class com.javaranch.common.GDate
Create a Gregorian Date object with a specific Julian date.
GDate(String) - Constructor for class com.javaranch.common.GDate
Create a Gregorian Date object with a loosely formatted text date.
GDate(TimeZone) - Constructor for class com.javaranch.common.GDate
Create a Gregorian Date object with a default of today's date.
ge(Str) - Method in class com.javaranch.common.Str
Test for "greater than or equal to" between your string and the string in s.
ge(String) - Method in class com.javaranch.common.Str
Test for "greater than or equal to" between your string and the string in s.
get() - Method in class com.javaranch.common.JDate
Get the integer representation.
get(byte[]) - Static method in class com.javaranch.common.ImageLoader
Pass in a GIF or JPEG image stored as a byte array and get a Java Image object back.
get(int) - Method in class com.javaranch.common.Str
Retrieve a copy of one character.
get(int) - Method in class com.javaranch.common.ByteVector
Get a copy of one byte.
get(int, int) - Method in class com.javaranch.common.Str
Retrieve a copy of a substring.
get(int, int) - Method in class com.javaranch.common.ByteVector
Get a copy of a "sub-vector".
get(int, int) - Method in class com.javaranch.db.DBResults
 
get(Object, String) - Static method in class com.javaranch.common.ImageLoader
Pass in an object and a relative filename and the image will be pulled up relative to where the class came from.
get(String) - Method in class com.javaranch.common.ServletData
Get an object from the session.
get(String) - Static method in class com.javaranch.common.ImageLoader
Pass in a filename or URL and get an image back.
get(String) - Static method in class com.javaranch.common.Env
 
get(String) - Static method in class com.javaranch.common.DataPool
 
getAdminEmail() - Static method in class com.javaranch.common.Email
 
getAllFilesInDirectory(String) - Static method in class com.javaranch.common.Files
Return a string array containing the names of all the files (not directories) in the current directory.
getAllText(Element) - Static method in class com.javaranch.common.DOM
Given an element, find all of the text children and concatenate them together.
getBooleanAttribute(Element, String, String, boolean) - Static method in class com.javaranch.common.DOM
Get the boolean representation of the attribute.
getBottom() - Method in class com.javaranch.common.IRect
Get the Y value of the bottom edge of the rectangle.
getBottomLeft() - Method in class com.javaranch.common.IRect
Get the point that represents the bottom, left corner of the rectangle.
getBottomRight() - Method in class com.javaranch.common.IRect
Get the point that represents the bottom, right corner of the rectangle.
getCapacity() - Method in class com.javaranch.common.Str
Get the number of characters this object can hold without doing a reallocation.
getCapacity() - Method in class com.javaranch.common.ByteVector
Get the number of bytes this object can hold without doing a reallocation.
getChar(String, int) - Static method in class com.javaranch.common.Str
Just like String.charAt() except for null strings or for strings that are too short, an exception will not be thrown and instead, a null char will be returned.
getChildren(Node, String) - Static method in class com.javaranch.common.DOM
Retreives all of the children that have this particular tag name.
getChildText(Element, String) - Static method in class com.javaranch.common.DOM
Find the child element and extract it's text with getText().
getColumnCount() - Method in class com.javaranch.db.DBResults
 
getConnection() - Method in class com.javaranch.db.DBFacade
Return a database connection.
getCount - Variable in class com.javaranch.common.LogServlet
increment this if you override the traditional doGet()
getDataColumns() - Method in class com.javaranch.db.DBQuery
For use by DBFacade.
getDate() - Method in class com.javaranch.common.JDate
Convert to a Date object.
getDay() - Method in class com.javaranch.common.JDate
Get the day of the month (not the day of the week).
getDay() - Method in class com.javaranch.common.GDate
Return the day of the month (1..31).
getDBFacade() - Method in class com.javaranch.db.TableFacade
 
getDimImage() - Method in class com.javaranch.common.ButtonData
 
getDirectory(File) - Static method in class com.javaranch.common.Files
Return a string array containing the current directory.
getDirectoryDetails(File) - Static method in class com.javaranch.common.Files
Return a string array containing the current directory with timestamps and file sizes.
getDOW() - Method in class com.javaranch.common.JDate
Get the day of the week (not the day of the month).
getDownImage() - Method in class com.javaranch.common.ButtonData
 
getDOWString() - Method in class com.javaranch.common.JDate
Get the full day of the week name: "Monday", "Tuesday", "Wednesday", etc.
getFixedFormat() - Method in class com.javaranch.common.GDate
Such as "2000/05/01".
getFixedFormat() - Method in class com.javaranch.common.ADate
Such as "05/01/2000".
getFrame(Component) - Static method in class com.javaranch.common.AWT
Given any component, find the closest parent frame.
getGDate() - Method in class com.javaranch.common.JDate
Convert to a GDate object.
getGDate() - Method in class com.javaranch.common.DateField
Returns the inner date copy.
getHeight() - Method in class com.javaranch.common.IRect
 
getHome(String, Class) - Method in class com.javaranch.common.EJBClient
One context is kept on hand to serve up homes for many bean requests.
getID() - Method in class com.javaranch.common.NameIDPair
 
getInt(String) - Method in class com.javaranch.common.ServletData
The complementary method to "set(key,int)".
getInt31() - Method in class com.javaranch.common.CRC
get the resulting CRC value as an unsigned 31 bit value.
getIntAttribute(Element, String) - Static method in class com.javaranch.common.DOM
Get the int representation of the attribute.
getKey() - Method in class com.javaranch.common.KeyValuePair
 
getKeys() - Static method in class com.javaranch.common.Env
 
getLast() - Method in class com.javaranch.common.Str
Retrieve a copy of the last character.
getLeft() - Method in class com.javaranch.common.IRect
Get the X value of the left edge of the rectangle.
getList() - Method in class com.javaranch.common.ErrorLog
Get a list of all error messages that have been passed in to the ErrorLog object.
getLongFormat() - Method in class com.javaranch.common.JDate
Get something like "Wednesday, September 22, 1999".
getLongFormat() - Method in class com.javaranch.common.GDate
Returns a date formatted like "September 22, 1999".
getMonth() - Method in class com.javaranch.common.JDate
Extract the month.
getMonth() - Method in class com.javaranch.common.GDate
 
getMonthString() - Method in class com.javaranch.common.JDate
Get the full month name: "January", "February", "March", etc.
getMonthString() - Method in class com.javaranch.common.GDate
Get the full month name.
getMonthString(int) - Static method in class com.javaranch.common.GDate
Convert a number 1 through 12 to a String "January" through "December".
getName() - Method in class com.javaranch.common.NameIDPair
 
getObjectFromClient(HttpServletRequest) - Static method in class com.javaranch.common.Servlets
Called by servlets to receive objects from applets or other client programs.
getOrderByClause() - Method in class com.javaranch.db.DBQuery
For use by DBFacade.
getParameter(String) - Method in class com.javaranch.common.ServletData
Same as getRequest.getParameter().
getParameterValues(String) - Method in class com.javaranch.common.ServletData
Same as getRequest.getParameterValues().
getPos() - Method in class com.javaranch.common.ButtonData
 
getPreferredSize() - Method in class com.javaranch.common.LButton
For internal use only.
getPreferredSize() - Method in class com.javaranch.common.ImagePanel
For internal use only.
getRectangle() - Method in class com.javaranch.common.IRect
Convert the IRect format to a java.awt.Rectangle object.
getRequest() - Method in class com.javaranch.common.ServletData
Get the j2ee request.
getResourceAsString(Object, String) - Static method in class com.javaranch.common.Files
Pass in an object and a relative filename and the file will be opened relative to where the class came from.
getResponse() - Method in class com.javaranch.common.ServletData
Get the j2ee response.
getRight() - Method in class com.javaranch.common.IRect
Get the X value of the right edge of the rectangle.
getRoot(String) - Static method in class com.javaranch.common.DOM
Pass in an XML string and get back the root DOM element.
getRow(int) - Method in class com.javaranch.db.DBResults
Will return null if there is no such row.
getSession() - Method in class com.javaranch.common.ServletData
Get the j2ee session.
getShortFormat() - Method in class com.javaranch.common.JDate
Deprecated.  
getShortFormat() - Method in class com.javaranch.common.GDate
Deprecated.  
getSize(Font, String) - Static method in class com.javaranch.common.AWT
 
getSQL() - Method in class com.javaranch.db.DBQuery
 
getString(String) - Method in class com.javaranch.common.ServletData
Same as get(), only with a "toString()" performed on the returned object.
getString(String) - Method in class com.javaranch.common.CastMap
 
getTable() - Method in class com.javaranch.db.DBQuery
For use by DBFacade.
getTableName() - Method in class com.javaranch.db.TableFacade
 
getTableProcessor(DatabaseMetaData, String, String, String) - Method in class com.javaranch.db.Jenny
 
getText(Element) - Static method in class com.javaranch.common.DOM
given an element, extract the text.
getTextAttribute(Element, String) - Static method in class com.javaranch.common.DOM
Get the String representation of the attribute.
getTimestamp() - Method in class com.javaranch.common.GDate
 
getTimestamp(String) - Static method in class com.javaranch.common.ADate
 
getTimestamp(TimeZone) - Method in class com.javaranch.common.GDate
 
getToday(TimeZone) - Static method in class com.javaranch.common.GDate
 
getTop() - Method in class com.javaranch.common.IRect
Get the Y value of the top edge of the rectangle.
getTopLeft() - Method in class com.javaranch.common.IRect
Get the point that represents the top, left corner of the rectangle.
getTopRight() - Method in class com.javaranch.common.IRect
Get the point that represents the top, right corner of the rectangle.
getTrimmedString(String) - Method in class com.javaranch.common.CastMap
 
getUpImage() - Method in class com.javaranch.common.ButtonData
 
getValue() - Method in class com.javaranch.common.KeyValuePair
 
getWhereClause() - Method in class com.javaranch.db.DBQuery
For use by DBFacade.
getWidth() - Method in class com.javaranch.common.IRect
 
getX() - Method in class com.javaranch.common.IRect
The left edge.
getX() - Method in class com.javaranch.common.IPoint
 
getX() - Method in class com.javaranch.common.DPoint
 
getY() - Method in class com.javaranch.common.IRect
The top edge.
getY() - Method in class com.javaranch.common.IPoint
 
getY() - Method in class com.javaranch.common.DPoint
 
getYear() - Method in class com.javaranch.common.JDate
Extract the year.
getYear() - Method in class com.javaranch.common.GDate
 
gt(Str) - Method in class com.javaranch.common.Str
Test for "greater than" between your string and the string in s.
gt(String) - Method in class com.javaranch.common.Str
Test for "greater than" between your string and the string in s.
GUI - class com.javaranch.common.GUI.
Contains a collection of static methods related to GUI's (AWT and Swing stuff).

H

hashCode() - Method in class com.javaranch.common.Str
 
hashCode() - Method in class com.javaranch.common.JDate
 
hashCode() - Method in class com.javaranch.db.DBQuery
 
HTTP - class com.javaranch.common.HTTP.
This class simplifies the exchange of objects with Servlets via the HTTP protocol.

I

ImageLoader - class com.javaranch.common.ImageLoader.
This class helps you load images before you use them.
ImageLoader() - Constructor for class com.javaranch.common.ImageLoader
 
ImagePanel - class com.javaranch.common.ImagePanel.
Lightweight panel that is the perfect size of given image.
ImagePanel() - Constructor for class com.javaranch.common.ImagePanel
If you want to load an image based on where the parent class is loaded, you don't have access to "this" until after the ImagePanel constructor is done.
ImagePanel(Image) - Constructor for class com.javaranch.common.ImagePanel
 
ImagePanel(Image, int, int) - Constructor for class com.javaranch.common.ImagePanel
 
ImagePanel(Object, String) - Constructor for class com.javaranch.common.ImagePanel
 
ImagePanel(Object, String, int, int) - Constructor for class com.javaranch.common.ImagePanel
 
inc() - Method in class com.javaranch.common.JDate
Increment the date by one.
inc(int) - Method in class com.javaranch.common.JDate
Increment the date by the given value.
inc(IPoint) - Method in class com.javaranch.common.IRect
Move the object without changing the width or height.
inc(IPoint) - Method in class com.javaranch.common.IPoint
Increment the X value and the Y value with the x and y (respectively) of p.
incHeight(int) - Method in class com.javaranch.common.IRect
Change the height without changing the top edge.
incWidth(int) - Method in class com.javaranch.common.IRect
Change the width without changing the left edge.
incX(double) - Method in class com.javaranch.common.DPoint
Increment x (negative numbers decrement x).
incX(int) - Method in class com.javaranch.common.IRect
Change the left edge without changing the width.
incX(int) - Method in class com.javaranch.common.IPoint
Increment the X value without modifying Y.
incY(double) - Method in class com.javaranch.common.DPoint
Increment y (negative numbers decrement y).
incY(int) - Method in class com.javaranch.common.IRect
Change the top edge without changing the height.
incY(int) - Method in class com.javaranch.common.IPoint
Increment the Y value without modifying X.
indexOf(byte) - Method in class com.javaranch.common.ByteVector
Find the position within your object of a particular character.
indexOf(byte[]) - Method in class com.javaranch.common.ByteVector
Find the position within your object of a particular sequence of bytes.
indexOf(byte[], int) - Method in class com.javaranch.common.ByteVector
Find the position within your object of a particular sequence of bytes.
indexOf(byte, int) - Method in class com.javaranch.common.ByteVector
Find the position within your object of a particular byte.
indexOf(char) - Method in class com.javaranch.common.Str
Find the position within your string of a particular character.
indexOf(char, int) - Method in class com.javaranch.common.Str
Find the position within your string of a particular character.
indexOf(String) - Method in class com.javaranch.common.Str
Find the position within your string of a particular sequence of characters.
indexOf(String, int) - Method in class com.javaranch.common.Str
Find the position within your string of a particular sequence of characters.
indexOfIgnoreCase(char) - Method in class com.javaranch.common.Str
Find the position within your string of a particular character, ignoring case.
indexOfIgnoreCase(char, int) - Method in class com.javaranch.common.Str
Find the position within your string of a particular character, ignoring case.
indexOfIgnoreCase(String) - Method in class com.javaranch.common.Str
Find the position within your string of a particular sequence of characters, ignoring case.
indexOfIgnoreCase(String, int) - Method in class com.javaranch.common.Str
Find the position within your string of a particular sequence of characters, ignoring the case.
init() - Method in class com.javaranch.common.ActionServlet
 
init(Object, String) - Method in class com.javaranch.common.ImagePanel
 
init(Object, String, int, int) - Method in class com.javaranch.common.ImagePanel
 
inRange(char, char, char) - Static method in class com.javaranch.common.Numbers
A convenience method to test if a character is within a particular range.
inRange(double, double, double) - Static method in class com.javaranch.common.Numbers
A convenience method to test if a double is within a particular range.
inRange(int, int, int) - Static method in class com.javaranch.common.Numbers
A convenience method to test if an integer is within a particular range.
insert(byte[], int) - Method in class com.javaranch.common.ByteVector
Insert an array of bytes immediately before a particular byte in the object.
insert(byte, int) - Method in class com.javaranch.common.ByteVector
Insert a byte immediately before a particular byte in the object.
insert(char, int) - Method in class com.javaranch.common.Str
Insert a character immediately before a particular character.
insert(Connection, Map) - Method in class com.javaranch.db.TableFacade
 
insert(Connection, String, Map) - Method in class com.javaranch.db.DBFacade
Create a new row in the table and populate the fields with the provided data.
insert(Map) - Method in class com.javaranch.db.TableFacade
 
insert(String, int) - Method in class com.javaranch.common.Str
Insert a String object immediately before a particular character.
insert(String, Map) - Method in class com.javaranch.db.DBFacade
Create a new row in the table and populate the fields with the provided data.
insert(Str, int) - Method in class com.javaranch.common.Str
Insert a Str object immediately before a particular character.
insertAndGetID(Connection, Map) - Method in class com.javaranch.db.TableFacade
 
insertAndGetID(Connection, Map, String) - Method in class com.javaranch.db.TableFacade
 
insertAndGetID(Connection, String, Map) - Method in class com.javaranch.db.DBFacade
 
insertAndGetID(Connection, String, Map, String) - Method in class com.javaranch.db.DBFacade
 
insertAndGetID(Map) - Method in class com.javaranch.db.TableFacade
 
insertAndGetID(Map, String) - Method in class com.javaranch.db.TableFacade
 
insertAndGetID(String, Map) - Method in class com.javaranch.db.DBFacade
Create a new row with a unique ID.
insertAndGetID(String, Map, String) - Method in class com.javaranch.db.DBFacade
 
IPoint - class com.javaranch.common.IPoint.
A very lean serialized point type where X and Y are of type int.
IPoint() - Constructor for class com.javaranch.common.IPoint
Create an int point object initialized to 0,0.
IPoint(int, int) - Constructor for class com.javaranch.common.IPoint
Create an int point object initialized to x,y.
IPoint(IPoint) - Constructor for class com.javaranch.common.IPoint
Create a new int point object containing the same value and another int point object.
IRect - class com.javaranch.common.IRect.
A very lean serialized rectangle type made of ints.
IRect() - Constructor for class com.javaranch.common.IRect
Create an IRect object at 0,0 with a width of 0 and a height of 0.
IRect(int, int, int, int) - Constructor for class com.javaranch.common.IRect
Create an IRect object with a specific X, Y, Width and Height.
IRect(IPoint) - Constructor for class com.javaranch.common.IRect
Create an IRect object with a specified location, a width of zero and a height of zero.
IRect(IPoint, int, int) - Constructor for class com.javaranch.common.IRect
Create an IRect object with a specific point, Width and Height.
IRect(IPoint, IPoint) - Constructor for class com.javaranch.common.IRect
Create an IRect object from two opposing points.
IRect(IRect) - Constructor for class com.javaranch.common.IRect
Create an IRect object with the same size and location as another IRect object.
IRect(Rectangle) - Constructor for class com.javaranch.common.IRect
Create an IRect object with the same size and location as a java.awt.Rectangle object.
isConsoleLogOn() - Method in class com.javaranch.common.ErrorLog
Test to see if this ErrorLog object currently copies error messages to the console.
isFileLogOn() - Method in class com.javaranch.common.ErrorLog
Test to see if this ErrorLog object currently copies error messages to a text file.
isInternalLogOn() - Method in class com.javaranch.common.ErrorLog
Test to see if this ErrorLog object currently copies error messages to an internal buffer.
isLower(int) - Method in class com.javaranch.common.Str
Is char at index lower case?
isUpper(int) - Method in class com.javaranch.common.Str
Is char at index upper case?
isValid() - Method in class com.javaranch.common.DateField
Is the current date invalid (red) or valid (black).
isValid(GDate) - Static method in class com.javaranch.common.JDate
Report if the given date is valid or not.

J

JDate - class com.javaranch.common.JDate.
Date is tracked as an integer.
JDate() - Constructor for class com.javaranch.common.JDate
Create a new JDate object with a default of zero.
JDate(GDate) - Constructor for class com.javaranch.common.JDate
Create a new JDate object equal to a GDate object.
JDate(int) - Constructor for class com.javaranch.common.JDate
Create a new JDate object specified as the number of days since January 1, 0000.
JDate(int, int, int) - Constructor for class com.javaranch.common.JDate
Create a new JDate object based on a year, month and day.
JDate(JDate) - Constructor for class com.javaranch.common.JDate
Create a new JDate object equal to another JDate object.
Jenny - class com.javaranch.db.Jenny.
Jenny the db code generator.
Jenny() - Constructor for class com.javaranch.db.Jenny
 

K

KeyValuePair - class com.javaranch.common.KeyValuePair.
 
KeyValuePair(String, String) - Constructor for class com.javaranch.common.KeyValuePair
 

L

label(String, int, int, Font, FontMetrics) - Static method in class com.javaranch.common.GUI
Creates a label with the correct size for the provided FontMetric.
label(String, int, int, int, int) - Static method in class com.javaranch.common.GUI
 
last() - Method in class com.javaranch.common.ByteVector
Get a copy of the last byte.
lastIndexOf(char) - Method in class com.javaranch.common.Str
 
LButton - class com.javaranch.common.LButton.
Lightweight button that uses images for the button.
LButton(ButtonData, ButtonAdapter) - Constructor for class com.javaranch.common.LButton
Create a new LButton object from serialized data.
LButton(Image, Image, Image, int, int, ButtonAdapter) - Constructor for class com.javaranch.common.LButton
 
LButton(Object, String, int, int, ButtonAdapter) - Constructor for class com.javaranch.common.LButton
 
LButton(String, int, int, ButtonAdapter) - Constructor for class com.javaranch.common.LButton
 
le(Str) - Method in class com.javaranch.common.Str
Test for "less than or equal to" between your string and the string in s.
le(String) - Method in class com.javaranch.common.Str
Test for "less than or equal to" between your string and the string in s.
left(int) - Method in class com.javaranch.common.Str
Force the length of the string and keep text to the left.
left(String, int) - Static method in class com.javaranch.common.Str
Force the length of the string and keep text to the left.
leftSpaceCount() - Method in class com.javaranch.common.Str
Report how many leading spaces there are.
length() - Method in class com.javaranch.common.Str
Get the current length of your string - not the same as the amount of memory allocated.
length() - Method in class com.javaranch.common.ByteVector
Get the number of bytes currently being used.
lighten(Color, double) - Static method in class com.javaranch.common.GUI
 
listToStringArray(List) - Static method in class com.javaranch.common.Structures
 
logMessage(String) - Method in class com.javaranch.common.LogServlet
Add a message to the log.
LogServlet - class com.javaranch.common.LogServlet.
Used for tracking events in a Servlet.
LogServlet() - Constructor for class com.javaranch.common.LogServlet
 
lt(Str) - Method in class com.javaranch.common.Str
Test for "less than" between your string and the string in s.
lt(String) - Method in class com.javaranch.common.Str
Test for "less than" between your string and the string in s.

M

main(String[]) - Static method in class com.javaranch.common.DateField
Used strictly for a GUI unit test.
main(String[]) - Static method in class com.javaranch.db.Jenny
 
makeColumns(PrintWriter, String[], String[], int, int) - Static method in class com.javaranch.common.Servlets
When making lists of things with radio buttons or checkboxes in PRE areas.
messageDialog(Frame, String) - Static method in class com.javaranch.common.GUI
 
moneyStr(double) - Static method in class com.javaranch.common.Str
Converts a double to a string with two decimal places.
mouseClicked(MouseEvent) - Method in class com.javaranch.common.LButton
For internal use only.
mouseDragged(MouseEvent) - Method in class com.javaranch.common.LButton
For internal use only.
mouseEntered() - Method in interface com.javaranch.common.MoveListener
 
mouseEntered() - Method in class com.javaranch.common.ButtonAdapter
 
mouseEntered(MouseEvent) - Method in class com.javaranch.common.LButton
For internal use only.
mouseExited() - Method in interface com.javaranch.common.MoveListener
 
mouseExited() - Method in class com.javaranch.common.ButtonAdapter
 
mouseExited(MouseEvent) - Method in class com.javaranch.common.LButton
For internal use only.
mouseHovering() - Method in interface com.javaranch.common.MoveListener
 
mouseHovering() - Method in class com.javaranch.common.ButtonAdapter
 
mouseMoved(MouseEvent) - Method in class com.javaranch.common.LButton
For internal use only.
mousePressed(MouseEvent) - Method in class com.javaranch.common.LButton
For internal use only.
mouseReleased(MouseEvent) - Method in class com.javaranch.common.LButton
For internal use only.
MoveListener - interface com.javaranch.common.MoveListener.
Used by the LButton class.

N

NameIDPair - class com.javaranch.common.NameIDPair.
 
NameIDPair(String, int) - Constructor for class com.javaranch.common.NameIDPair
 
ne(Str) - Method in class com.javaranch.common.Str
Test for "not equal" between your string and the string in s.
ne(String) - Method in class com.javaranch.common.Str
Test for "not equal" between your string and the string in s.
normalize(Object) - Static method in class com.javaranch.common.Str
Return a string that is not null.
normalizeSearchText(String) - Static method in class com.javaranch.db.DBFacade
Converts a string to be used for SQL.
normalizeURL(String) - Static method in class com.javaranch.common.HTTP
Will eliminate leading typos and make sure the string starts with "http://" or doesn't.
nowStr() - Static method in class com.javaranch.common.Str
Get the current local date and time.
Numbers - class com.javaranch.common.Numbers.
Contains a collection of static methods related to Numbers.
Numbers() - Constructor for class com.javaranch.common.Numbers
 
numErrors() - Method in class com.javaranch.common.ErrorLog
Get the number of errors that this object has encountered.

O

ObjectServlet - class com.javaranch.common.ObjectServlet.
Used for passing objects back and forth between applets and servlets.
ObjectServlet() - Constructor for class com.javaranch.common.ObjectServlet
 

P

paint(Graphics) - Method in class com.javaranch.common.LButton
For internal use only.
paint(Graphics) - Method in class com.javaranch.common.ImagePanel
For internal use only.
PointOnRect(IPoint, IRect) - Static method in class com.javaranch.common.IRect
Does the given point touch the given rectangle.
pop() - Method in class com.javaranch.common.Str
If you wish to treat your string like a stack, you can push and pop characters.
pop() - Method in class com.javaranch.common.ByteVector
If you wish to treat your object like a stack, you can push and pop bytes.
positiveIntToByte(int) - Static method in class com.javaranch.common.Numbers
Convert an integer possibly negative valued byte to a positive value integer.
postCount - Variable in class com.javaranch.common.LogServlet
increment this if you override the traditional doPost()
PressListener - interface com.javaranch.common.PressListener.
Test to see if an LButton has been pressed.
print(String) - Method in class com.javaranch.common.TextFileOut
Send a line of text to the file.
println() - Method in class com.javaranch.common.TextFileOut
Send a newline to the file.
println(String) - Method in class com.javaranch.common.TextFileOut
Send a line of text to the file with a trailing new line appropriate for the o/s.
push(byte) - Method in class com.javaranch.common.ByteVector
If you wish to treat your object like a stack, you can push and pop bytes.
push(char) - Method in class com.javaranch.common.Str
If you wish to treat your string like a stack, you can push and pop characters.

Q

quick(String) - Static method in class com.javaranch.common.CRC
Get the CRC of a string.

R

readObject(String) - Static method in class com.javaranch.common.Files
Read one object from a file.
RectOnRect(IRect, IRect) - Static method in class com.javaranch.common.IRect
Do these two rectangles touch.
ReleaseListener - interface com.javaranch.common.ReleaseListener.
Test to see if an LButton has been released.
remove(String) - Method in class com.javaranch.common.ServletData
Remove an object from the session.
removeDoubleSpaces() - Method in class com.javaranch.common.Str
Eliminate all occurances of two more space in a row.
rename(String, String) - Static method in class com.javaranch.common.Files
Change the file name.
replace(byte[], byte) - Method in class com.javaranch.common.ByteVector
Search for a particular sequence of bytes and replace them with one byte.
replace(byte[], byte[]) - Method in class com.javaranch.common.ByteVector
Search for a particular sequence of bytes and replace it with a different sequence of bytes.
replace(byte, byte) - Method in class com.javaranch.common.ByteVector
Replace all instances of one byte with another byte.
replace(byte, byte[]) - Method in class com.javaranch.common.ByteVector
Replace all instances of one byte with several bytes.
replace(char, char) - Method in class com.javaranch.common.Str
Replace all instances of one character with another character.
replace(char, String) - Method in class com.javaranch.common.Str
Replace all instances of one character with a String object.
replace(String, char) - Method in class com.javaranch.common.Str
Search for a particular character sequence and replace it with one character.
replace(String, String) - Method in class com.javaranch.common.Str
Search for a particular character sequence and replace it with a different character sequence.
reportError(String) - Static method in class com.javaranch.common.Email
Send an e-mail to the admin, from the admin defined by the setAdminEmail() method via the specified server defined via the setSMTPServer() method.
reportProblem(PrintWriter, String) - Method in class com.javaranch.common.LogServlet
This convenience method sends the message to the log and sends it to out.
reverse() - Method in class com.javaranch.common.Str
Reverse the order of all the characters.
right - Static variable in class com.javaranch.common.AWT
 
right(int) - Method in class com.javaranch.common.Str
Force the length of the string and keep text to the right.
right(String, int) - Static method in class com.javaranch.common.Str
Force the length of the string and keep text to the right.
rightButtonReleased() - Method in interface com.javaranch.common.ReleaseListener
 
rightButtonReleased() - Method in class com.javaranch.common.ButtonAdapter
 
rightPad - Static variable in class com.javaranch.common.AWT
 
rightSpaceCount() - Method in class com.javaranch.common.Str
Report how many trailing spaces there are.
run() - Method in class com.javaranch.common.DataPool
 

S

search(Connection, DBQuery) - Method in class com.javaranch.db.DBFacade
Use the DBQuery object to do a search.
search(Connection, String[]) - Method in class com.javaranch.db.TableFacade
Get all rows.
search(Connection, String, int[], String[]) - Method in class com.javaranch.db.TableFacade
 
search(Connection, String, int, String[]) - Method in class com.javaranch.db.TableFacade
 
search(Connection, String, String[]) - Method in class com.javaranch.db.TableFacade
 
search(Connection, String, String[], String[]) - Method in class com.javaranch.db.TableFacade
 
search(Connection, String, String, int[], String[]) - Method in class com.javaranch.db.DBFacade
Find all the data in a table where the text in a column exactly matches one of these strings.
search(Connection, String, String, int, String[]) - Method in class com.javaranch.db.DBFacade
Find all the data in a table where the text in a column exactly matches a string.
search(Connection, String, String, String[]) - Method in class com.javaranch.db.TableFacade
 
search(Connection, String, String, String[]) - Method in class com.javaranch.db.DBFacade
Find all the data in a table that matches up to this SQL where clause.
search(Connection, String, String, String[], String[]) - Method in class com.javaranch.db.DBFacade
Find all the data in a table where the text in a column exactly matches one of these strings.
search(Connection, String, String, String, String[]) - Method in class com.javaranch.db.DBFacade
Find all the data in a table where the text in a column exactly matches a string.
search(DBQuery) - Method in class com.javaranch.db.DBFacade
Use the DBQuery object to do a search.
search(String[]) - Method in class com.javaranch.db.TableFacade
Get all rows.
search(String, int[], String[]) - Method in class com.javaranch.db.TableFacade
 
search(String, int, String[]) - Method in class com.javaranch.db.TableFacade
 
search(String, String[]) - Method in class com.javaranch.db.TableFacade
 
search(String, String[], String[]) - Method in class com.javaranch.db.TableFacade
 
search(String, String, int[], String[]) - Method in class com.javaranch.db.DBFacade
Find all the data in a table where the text in a column exactly matches one of these strings.
search(String, String, int, String[]) - Method in class com.javaranch.db.DBFacade
Find all the data in a table where the text in a column exactly matches a string.
search(String, String, String[]) - Method in class com.javaranch.db.TableFacade
 
search(String, String, String[]) - Method in class com.javaranch.db.DBFacade
Find all the data in a table that matches up to this SQL where clause.
search(String, String, String[], String[]) - Method in class com.javaranch.db.DBFacade
Find all the data in a table where the text in a column exactly matches one of these strings.
search(String, String, String, String[]) - Method in class com.javaranch.db.DBFacade
Find all the data in a table where the text in a column exactly matches a string.
send(String, Object) - Static method in class com.javaranch.common.HTTP
Send an HTTP POST command and an object to a servlet and absorb Exceptions, if any.
send(String, String) - Static method in class com.javaranch.common.Email
Send an e-mail to the admin defined by the setAdminEmail() method and the server defined via the setSMTPServer() method.
send(String, String, String, String) - Static method in class com.javaranch.common.Email
SMTP server must be defined via the setSMTPServer() method before you can use this method.
sendE(String, Object) - Static method in class com.javaranch.common.HTTP
Send an HTTP POST command and an object to a servlet and generate Exceptions, if any.
sendObjectToClient(HttpServletResponse, Object) - Static method in class com.javaranch.common.Servlets
Called by servlets to send objects to applets or other client programs.
ServletData - class com.javaranch.common.ServletData.
 
ServletData(HttpServletRequest, HttpServletResponse) - Constructor for class com.javaranch.common.ServletData
 
ServletData(HttpServletRequest, HttpServletResponse, HttpSession) - Constructor for class com.javaranch.common.ServletData
 
Servlets - class com.javaranch.common.Servlets.
This class simplifies the exchange of objects between clients and Servlets via the HTTP protocol.
SessionEJB - class com.javaranch.common.SessionEJB.
Inheriting this abstract class provides empty SessionBean methods.
SessionEJB() - Constructor for class com.javaranch.common.SessionEJB
 
set(double, double) - Method in class com.javaranch.common.DPoint
 
set(GDate) - Method in class com.javaranch.common.JDate
Set this object to be equal to a GDate object.
set(int) - Method in class com.javaranch.common.JDate
Set this object to be equal to an integer.
set(int, byte) - Method in class com.javaranch.common.ByteVector
Set one byte in the object.
set(int, char) - Method in class com.javaranch.common.Str
Set one character in the string.
set(int, int) - Method in class com.javaranch.common.IPoint
 
set(IPoint) - Method in class com.javaranch.common.IRect
Move the top left corner of this object to a specific point.
set(IPoint) - Method in class com.javaranch.common.IPoint
 
set(IRect) - Method in class com.javaranch.common.IRect
Set this object to be equal to another IRect object.
set(JDate) - Method in class com.javaranch.common.JDate
Set this object to be equal to another JDate object.
set(Str) - Method in class com.javaranch.common.Str
Force the contents of this object to be the same as another Str object.
set(String) - Method in class com.javaranch.common.Str
Force the contents of this object to be the same as a String object.
set(String) - Method in class com.javaranch.common.GDate
Force the date based on the contents of a string.
set(String) - Method in class com.javaranch.common.ADate
Force the date based on the contents of a string.
set(String, int) - Method in class com.javaranch.common.ServletData
Store an integer in the session.
set(String, Object) - Method in class com.javaranch.common.ServletData
Store an object in the session.
setAccessParameterName(String) - Static method in class com.javaranch.common.LogServlet
 
setAccessParameterValue(String) - Static method in class com.javaranch.common.LogServlet
 
setAdminEmail(String) - Static method in class com.javaranch.common.Email
 
setBottom(int) - Method in class com.javaranch.common.IRect
Change the height of this object so that the bottom edge will line up to a specific position.
setCapacity(int) - Method in class com.javaranch.common.Str
Force this object to be able to hold a specific number of characters without reallocation.
setCapacity(int) - Method in class com.javaranch.common.ByteVector
Force this object to be able to hold a specific number of bytes without reallocation.
setCharAt(int, char) - Method in class com.javaranch.common.Str
Provided for compatibility with StringBuffer.
setConsole(boolean) - Method in class com.javaranch.common.ErrorLog
Tell the ErrorLog object to start/stop copying error messages to the console.
setDataColumns(String[]) - Method in class com.javaranch.db.DBQuery
Specify the columns you want to get back from the query.
setDay(int) - Method in class com.javaranch.common.JDate
Change just the day - the year and month values will be unmodified.
setDay(int) - Method in class com.javaranch.common.GDate
Expects values 1..31 although invalid values are accepted.
setDBFacade(DBFacade) - Method in class com.javaranch.db.TableFacade
 
setEnabled(boolean) - Method in class com.javaranch.common.LButton
Overrides the Component.setEnabled method so the proper image can be used.
setEntityContext(EntityContext) - Method in class com.javaranch.common.EntityEJB
Implemented for you - you can access the context as "ctx".
setExtra(int) - Method in class com.javaranch.common.Str
Set how much extra to grow when growth is needed.
setExtra(int) - Method in class com.javaranch.common.ByteVector
Set how much to grow when growth is needed.
setHeight(int) - Method in class com.javaranch.common.IRect
Move the bottom edge of this object to accomidate the new height.
setInternalLog(boolean) - Method in class com.javaranch.common.ErrorLog
Tell the ErrorLog object to start/stop copying error messages to an internal buffer.
setLength(int) - Method in class com.javaranch.common.Str
Force the length of your string.
setLength(int) - Method in class com.javaranch.common.ByteVector
Force the number of bytes to be currently used.
setLogConsole(boolean) - Method in class com.javaranch.common.LogServlet
Messages are sent to STDOUT so they can be tracked in the servlet server logs.
setLogFile(String) - Method in class com.javaranch.common.ErrorLog
Tell the ErrorLog object that all future error messages are to be copied to a text file.
setLogFileOff() - Method in class com.javaranch.common.ErrorLog
Tell the ErrorLog object that no further errors are to be copied to a text file.
setLogMemory(boolean) - Method in class com.javaranch.common.LogServlet
Messages are logged to memory so they can be viewed by a GET command.
setMonth(int) - Method in class com.javaranch.common.JDate
Change just the month - the year and day values will be unmodified.
setMonth(int) - Method in class com.javaranch.common.GDate
Expects values 1..12 although invalid values are accepted.
setOrderByClause(String) - Method in class com.javaranch.db.DBQuery
Specify the order to receive the data.
setRight(int) - Method in class com.javaranch.common.IRect
Change the width of this object so that the right edge will line up to a specific position.
setSearch(String, int) - Method in class com.javaranch.db.DBQuery
 
setSearch(String, int[]) - Method in class com.javaranch.db.DBQuery
 
setSearch(String, String) - Method in class com.javaranch.db.DBQuery
The heart of this query object.
setSearch(String, String[]) - Method in class com.javaranch.db.DBQuery
 
setSessionContext(SessionContext) - Method in class com.javaranch.common.SessionEJB
The context is grabbed and stored in ctx for any of your future context needs.
setSMTPServer(String) - Static method in class com.javaranch.common.Email
 
setStartsWithSearch(String, String) - Method in class com.javaranch.db.DBQuery
Set the query search to look for a substring at the beginning of a column.
setSubstringSearch(String, String) - Method in class com.javaranch.db.DBQuery
Set the query search to look for a substring within a column.
setTableName(String) - Method in class com.javaranch.db.TableFacade
 
setToString(Set) - Static method in class com.javaranch.common.Structures
Given a set, return a string with a newline between each object's toString() results.
setToToday(TimeZone) - Method in class com.javaranch.common.GDate
Set this object to reflect today's date.
setWhereClause(String) - Method in class com.javaranch.db.DBQuery
In case you want to use an 'interesting' where clause that DBQuery cannot create otherwise.
setWidth(int) - Method in class com.javaranch.common.IRect
Move the right edge of this object to accomidate the new width.
setX(double) - Method in class com.javaranch.common.DPoint
 
setX(int) - Method in class com.javaranch.common.IRect
Move this object so the left edge will will line up with a specific position.
setX(int) - Method in class com.javaranch.common.IPoint
 
setY(double) - Method in class com.javaranch.common.DPoint
 
setY(int) - Method in class com.javaranch.common.IRect
Move this object so the top edge will will line up with a specific position.
setY(int) - Method in class com.javaranch.common.IPoint
 
setYear(int) - Method in class com.javaranch.common.JDate
Change just the year - the month and day values will be unmodified.
setYear(int) - Method in class com.javaranch.common.GDate
 
shrink(int) - Method in class com.javaranch.common.IRect
Change the rectangle to be a slightly smaller rectangle centered within the old rectangle.
shrink(Rectangle) - Static method in class com.javaranch.common.AWT
Get a rectangle that fits perfectly within another rectangle.
smtpServerKey - Static variable in class com.javaranch.common.Email
 
softBeveledImage(int, int, Color, int) - Static method in class com.javaranch.common.GUI
 
spaces(int) - Static method in class com.javaranch.common.Str
Create a Str object containing nothing but a quantity of spaces.
startsWith(byte[]) - Method in class com.javaranch.common.ByteVector
A fast way to test the first few bytes of your object.
startsWith(String) - Method in class com.javaranch.common.Str
Test to see if your string begins with a specific sequence of characters.
Str - class com.javaranch.common.Str.
A robust string processing class.
Str() - Constructor for class com.javaranch.common.Str
The object has memory allocated to store an average size string.
Str(char[]) - Constructor for class com.javaranch.common.Str
The object is inititialized to have an exact copy of the character array.
Str(int) - Constructor for class com.javaranch.common.Str
Set the object to have an initial capacity.
Str(int, int) - Constructor for class com.javaranch.common.Str
Create an object with a specific initial capacity and to be able to grow by a specific increment.
Str(Str) - Constructor for class com.javaranch.common.Str
A new object is created that is an exact copy of the provided Str object.
Str(String) - Constructor for class com.javaranch.common.Str
A new object is created that contains a copy of the provided String object.
stringOf(int, char) - Static method in class com.javaranch.common.Str
Create a Str object containing nothing but a quantity of one character.
stringToArray(String) - Static method in class com.javaranch.common.Structures
 
stringToSet(String) - Static method in class com.javaranch.common.Structures
Given a space or newline delimited string, inner strings will be extracted and moved to a Set.
Structures - class com.javaranch.common.Structures.
A collection of static methods related to data structures.
subArray(byte[], int, int) - Static method in class com.javaranch.common.Structures
Get a sub array from a byte array.
subArray(Object[], int, int) - Static method in class com.javaranch.common.Structures
Get a shallow sub array from an object array.
substring(int, int) - Method in class com.javaranch.common.Str
Provided for compatibility with String and StringBuffer and the case mixing Sun provides.
subString(int, int) - Method in class com.javaranch.common.Str
Provided for compatibility with String and StringBuffer and the case mixing many people expect.
substring(String, int, int) - Static method in class com.javaranch.common.Str
Same as subString, but allows all lower case.
subString(String, int, int) - Static method in class com.javaranch.common.Str
A static sub-string method that works the way you expect it to work.
swell(int) - Method in class com.javaranch.common.IRect
Change the rectangle to be a slightly larger rectangle.

T

TableFacade - class com.javaranch.db.TableFacade.
 
TableFacade(DBFacade, String) - Constructor for class com.javaranch.db.TableFacade
 
tellUser(Component, String) - Static method in class com.javaranch.common.AWT
Pop up a dialog to pass a message to the user.
test(boolean) - Method in class com.javaranch.common.TestLog
If false is passed in, the message "test fail" plus the source file name and line number are added to the log.
test(boolean, String) - Method in class com.javaranch.common.TestLog
If false is passed in, the text "test fail: " plus the message, source file name and line number are added to the log.
test(char, char) - Method in class com.javaranch.common.TestLog
If the two values do not match, the discrepency, the file name and the line number will be added to the log.
test(char, char, String) - Method in class com.javaranch.common.TestLog
If the two values do not match, the discrepency, the message, the file name and the line number will be added to the log.
test(int, int) - Method in class com.javaranch.common.TestLog
If the two values do not match, the discrepency, the file name and the line number will be added to the log.
test(int, int, String) - Method in class com.javaranch.common.TestLog
If the two values do not match, the discrepency, the message, the file name and the line number will be added to the log.
test(long, long) - Method in class com.javaranch.common.TestLog
If the two values do not match, the discrepency, the file name and the line number will be added to the log.
test(long, long, String) - Method in class com.javaranch.common.TestLog
If the two values do not match, the discrepency, the message, the file name and the line number will be added to the log.
test(Object, Object) - Method in class com.javaranch.common.TestLog
If the two values do not match, the discrepency, the file name and the line number will be added to the log.
test(Object, Object, String) - Method in class com.javaranch.common.TestLog
If the two values do not match, the discrepency, the message, the file name and the line number will be added to the log.
testConnection() - Method in class com.javaranch.db.DBFacade
Establish a connection to the database to see if any exceptions might be generated.
TestLog - class com.javaranch.common.TestLog.
Used when unit testing code.
TestLog() - Constructor for class com.javaranch.common.TestLog
 
testRange(double, double, double) - Method in class com.javaranch.common.TestLog
If the two values do not match, the discrepency, the file name and the line number will be added to the log.
testRange(double, double, double, String) - Method in class com.javaranch.common.TestLog
If the two values do not match, the discrepency, the message, the file name and the line number will be added to the log.
textField(int, int, int, int, int) - Static method in class com.javaranch.common.GUI
 
TextFileIn - class com.javaranch.common.TextFileIn.
Since TextFileIn extends BufferedReader and adds nothing more than a convenient constructor, all other member functions are identical to BufferedReader.
TextFileIn(String) - Constructor for class com.javaranch.common.TextFileIn
 
TextFileOut - class com.javaranch.common.TextFileOut.
A convenience class for writing text files.
TextFileOut(String) - Constructor for class com.javaranch.common.TextFileOut
Create a new TextFileOut object that will start writing at the beginning of the file.
TextFileOut(String, boolean) - Constructor for class com.javaranch.common.TextFileOut
Same as the other constructor only this will open the file for appending.
through(int) - Method in class com.javaranch.common.Str
Get all of the substring that occurs through a particular character.
through(String, int) - Static method in class com.javaranch.common.Str
Get all of the substring that occurs through a particular character.
Time - class com.javaranch.common.Time.
Contains a collection of static methods related to Time.
toBoolean(String) - Static method in class com.javaranch.common.Str
Try to convert a string to a boolean value.
toByteArray() - Method in class com.javaranch.common.ByteVector
Copy the existing object into a byte array.
toCharArray() - Method in class com.javaranch.common.Str
Generate a character array that contains a copy of the string.
toDouble() - Method in class com.javaranch.common.Str
Try to convert this string to a double value.
toDouble(String) - Static method in class com.javaranch.common.Str
Try to convert a string to a double value.
toInt() - Method in class com.javaranch.common.Str
Try to convert this string to an integer value.
toInt(String) - Static method in class com.javaranch.common.Str
Try to convert a string to an integer value.
toIntArray() - Method in class com.javaranch.db.DBResults
Extract the first column into an int array.
toIntArray(NameIDPair[]) - Static method in class com.javaranch.common.NameIDPair
Get just the ID's from an array of NameIDPair objects.
toIntArray(Set) - Static method in class com.javaranch.common.Numbers
Each value will be cast to Integer and the values will be stored in an array.
toIntArray(String[]) - Static method in class com.javaranch.common.Str
 
toKeyValuePairArray() - Method in class com.javaranch.db.DBResults
 
toKeyValuePairArray(NameIDPair[]) - Static method in class com.javaranch.common.NameIDPair
 
toLong() - Method in class com.javaranch.common.Str
Try to convert this string to a long value.
toLong(String) - Static method in class com.javaranch.common.Str
Try to convert a string to a long value.
toLower() - Method in class com.javaranch.common.Str
All characters are forced to lower case.
toLower(int) - Method in class com.javaranch.common.Str
Char at index is forced to lower case.
toNameIDPairArray() - Method in class com.javaranch.db.DBResults
The columns must be in the order of "name" and then "id".
toSet(int[]) - Static method in class com.javaranch.common.Numbers
Each int in the array is encapsulated in an Integer object and added to the set.
toString() - Method in class com.javaranch.common.Str
Convert this Str object to a String object.
toString() - Method in class com.javaranch.common.JDate
Returns the same thing as getLongFormat().
toString() - Method in class com.javaranch.common.IPoint
returns something like "(35,20)".
toString() - Method in class com.javaranch.common.GDate
Returns a date formatted like "2000/7/24".
toString() - Method in class com.javaranch.common.DPoint
returns something like "(35.8765,20.0042)".
toString() - Method in class com.javaranch.common.ADate
Returns a date formatted like "7/24/2000".
toString() - Method in class com.javaranch.db.DBQuery
 
toString(GDate) - Static method in class com.javaranch.common.GDate
Returns a date formatted like "2000/7/24".
toString(GDate) - Static method in class com.javaranch.common.ADate
Returns a date formatted like "7/24/2000".
toStringArray() - Method in class com.javaranch.db.DBResults
Extract the first column into a String array.
toStringArray(int[]) - Static method in class com.javaranch.common.Str
 
toTextFile(List, String) - Static method in class com.javaranch.common.Files
Each element of a List has the toString() method performed on it and written to a text file.
toTextFile(String[], String) - Static method in class com.javaranch.common.Files
Each element of a string array is written to a text file.
toTimestamp(String) - Static method in class com.javaranch.common.Str
Try to convert a string to a Timestamp object.
toUpper() - Method in class com.javaranch.common.Str
All characters are forced to upper case.
toUpper(int) - Method in class com.javaranch.common.Str
Char at index is forced to upper case.
trailingDigits() - Method in class com.javaranch.common.Str
Count the number of trailing digits.
trailingDigits(String) - Static method in class com.javaranch.common.Str
Count the number of trailing digits.
trim() - Method in class com.javaranch.common.Str
Trims all leading spaces and all trailing spaces.
trim(String) - Static method in class com.javaranch.common.Str
Return a string that is either null or has at least one character.
trimLead() - Method in class com.javaranch.common.Str
Trims all leading spaces, no trailing spaces.
trimLeadWhitespace() - Method in class com.javaranch.common.Str
Trims all leading spaces, newlines, returns and tabs.
trimTrail() - Method in class com.javaranch.common.Str
Trims all trailing spaces, no leading spaces.
trimTrailTo(char) - Method in class com.javaranch.common.Str
Trims all characters from end of the string until a particular character is encountered.
trimTrailWhitespace() - Method in class com.javaranch.common.Str
Trims all trailing spaces, newlines, returns and tabs.
trimWhitespace() - Method in class com.javaranch.common.Str
Trims all leading spaces, newlines, returns and tabs and all trailing spaces, newlines, returns and tabs.
trimWhitespace(String) - Static method in class com.javaranch.common.Str
 

U

unsetEntityContext() - Method in class com.javaranch.common.EntityEJB
Implemented for you - "ctx" is set to null.
update(boolean) - Method in class com.javaranch.common.CRC
work a boolean into the existing CRC code.
update(byte) - Method in class com.javaranch.common.CRC
work a byte into the existing CRC code.
update(char) - Method in class com.javaranch.common.CRC
work a char into the existing CRC code.
update(Connection, String, Map) - Method in class com.javaranch.db.TableFacade
 
update(Connection, String, String, Map) - Method in class com.javaranch.db.TableFacade
 
update(Connection, String, String, Map) - Method in class com.javaranch.db.DBFacade
Update all rows matching this where clause.
update(Connection, String, String, String[], Map) - Method in class com.javaranch.db.DBFacade
Update all rows where the text in a searchColumn exactly matches one of these strings.
update(Connection, String, String, String, Map) - Method in class com.javaranch.db.DBFacade
Update all rows where the searchText matches the text found in searchColumn.
update(double) - Method in class com.javaranch.common.CRC
work a double into the existing CRC code.
update(float) - Method in class com.javaranch.common.CRC
work a float into the existing CRC code.
update(Graphics) - Method in class com.javaranch.common.LButton
 
update(Graphics) - Method in class com.javaranch.common.ImagePanel
 
update(int) - Method in class com.javaranch.common.CRC
work an int into the existing CRC code.
update(long) - Method in class com.javaranch.common.CRC
work a long into the existing CRC code.
update(String) - Method in class com.javaranch.common.CRC
work a string into the existing CRC code.
update(String, String, Map) - Method in class com.javaranch.db.TableFacade
 
update(String, String, Map) - Method in class com.javaranch.db.DBFacade
Update all rows matching this where clause.
update(String, String, String[], Map) - Method in class com.javaranch.db.DBFacade
Update all rows where the text in a searchColumn exactly matches one of these strings.
update(String, String, String, Map) - Method in class com.javaranch.db.DBFacade
Update all rows where the searchText matches the text found in column.
usable(String) - Static method in class com.javaranch.common.Str
 
usable(String) - Method in class com.javaranch.common.LogServlet
Deprecated. use Str.usable() instead

V

verboseMoney(double) - Static method in class com.javaranch.common.Str
Convert a double to English ( 12.01 -> "twelve and 01/100" ).

W

warningDialog(Frame, String) - Static method in class com.javaranch.common.GUI
 
writeLine(String) - Method in class com.javaranch.common.TextFileOut
Send a line of text to the file with a trailing new line appropriate for the o/s.
writeObject(String, Object) - Static method in class com.javaranch.common.Files
Write one object to a file.

A B C D E F G H I J K L M N O P Q R S T U V W

Copyright ©2004 Paul Wheaton All Rights Reserved