Package
Class
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes
A
B
C
D
E
F
G
I
L
M
N
O
P
Q
R
S
T
U
V
W
_
A
appendFile(String, String)
- Static method in class ccl.util.
FileUtil
Append string to a file content.
appendSpaces(String, int)
- Static method in class ccl.util.
Util
Append spaces to the end of a string.
areAllPathsAbsolute(String)
- Static method in class ccl.util.
FileUtil
Tests if the file represented by this File object is an absolute pathname.
assert(boolean)
- Static method in class ccl.util.
Util
Deprecated.
use 'assert' keyword from jdk 1.4 or above.
assert(Object)
- Static method in class ccl.util.
Util
Deprecated.
use 'assert' keyword from jdk 1.4 or above.
atob(String)
- Static method in class ccl.util.
Util
Converts a String to a boolean.
atod(String)
- Static method in class ccl.util.
Util
String to double converter.
atof(String)
- Static method in class ccl.util.
Util
String to float converter.
atoi(String)
- Static method in class ccl.util.
Util
String to int converter.
atol(String)
- Static method in class ccl.util.
Util
String to long converter.
B
btoi(byte)
- Static method in class ccl.util.
Util
Deprecated.
Use byteToInt(byte) instead.
bytesToInt(byte[])
- Static method in class ccl.util.
Util
Converts a byte array into an int.
byteToChar(byte)
- Static method in class ccl.util.
Util
Converts a byte to a char.
byteToInt(byte)
- Static method in class ccl.util.
Util
Converts a byte to an int.
byteToString(byte)
- Static method in class ccl.util.
Util
Converts a byte to a String.
C
ccl.util
- package ccl.util
Contains the general purpose non gui utility and support classes like
Util
and
FileUtil
.
centerLine(String, int)
- Static method in class ccl.util.
Util
Returns a string withe the provided content in the center and no line feed.
compare(String, String)
- Static method in class ccl.util.
Util
Deprecated.
Use String.compare instead.
concat(String, char)
- Static method in class ccl.util.
Util
This function concatenates a String with a char.
concat(Vector)
- Static method in class ccl.util.
Util
This function concatenates different Strings into one String.
concat(Vector, char)
- Static method in class ccl.util.
Util
This function concatenates different Strings into one String.
concat(Vector, String)
- Static method in class ccl.util.
Util
This function concatenates different Strings into one String.
concat(Vector, Vector)
- Static method in class ccl.util.
Util
Create a new vector which consists of both given vectors.
concatPath(String, String)
- Static method in class ccl.util.
FileUtil
Concatenates a file path with the file name.
contains(String, String)
- Static method in class ccl.util.
Util
Deprecated.
Well, String.indexOf(String) should be just fine!?
contains(Vector, String)
- Static method in class ccl.util.
Util
Test if a vector contains a given string.
contains(Vector, Testable)
- Static method in class ccl.util.
Util
Test if a vector contains an element which succeeds a given test filter.
copy(BufferedInputStream, BufferedOutputStream)
- Static method in class ccl.util.
FileUtil
Copy content of an buffered input stream into an buffered output stream.
copy(InputStream, OutputStream)
- Static method in class ccl.util.
FileUtil
Copy content of an input stream into an output stream.
copy(String, String)
- Static method in class ccl.util.
FileUtil
Copy file.
copyDir(String, String)
- Static method in class ccl.util.
FileUtil
Like: cp -r sDir_ sDestination_ No consideration for links are in place, so be aware of possible infinite loops.
count(String, char)
- Static method in class ccl.util.
Util
How many chars c_ contains the String pString_.
cp(String, String)
- Static method in class ccl.util.
FileUtil
Copy file.
createBackupFile(String)
- Static method in class ccl.util.
FileUtil
Copy the specified file to the same location and append ".bak" to its file name.
createTempDir()
- Static method in class ccl.util.
FileUtil
Unlike 'getTempDir()' which returns something like "/tmp" this method creates a new temporary directory which has no other files inside.
cToS(char)
- Static method in class ccl.util.
Util
A character to String converter.
D
debug(int)
- Static method in class ccl.util.
Util
If the debug mode was set with the setDebug function to true, this debug statements is equal to a printlnErr statement, otherwise it will be ignored.
debug(Object)
- Static method in class ccl.util.
Util
If the debug mode was set with the setDebug function to true, this debug statements is equal to a printlnErr statement, otherwise it will be ignored.
debug(Object, Object)
- Static method in class ccl.util.
Util
If the debug mode was set with the setDebug function to true, this debug statements is equal to a printlnErr statement, otherwise it will be ignored.
delete(String)
- Static method in class ccl.util.
FileUtil
Remove file on file system.
deleteRecursively(String)
- Static method in class ccl.util.
FileUtil
Delete file or directory.
denullify(String)
- Static method in class ccl.util.
Util
Returns "" if the input string is null, otherwise returns the same string back.
dtoa(double)
- Static method in class ccl.util.
Util
Converts a double to a String.
E
endsWith(String, char)
- Static method in class ccl.util.
Util
Tests if this string ends with the specified character.
endsWith(String, String)
- Static method in class ccl.util.
Util
Tests if this string ends with the second string.
enumerationToVector(Enumeration)
- Static method in class ccl.util.
Util
Convert an enumeration to a vector.
equals(Vector, Vector)
- Static method in class ccl.util.
Util
Do the elements of two vectors at the same position equal each other?
equalsCaseless(String, String)
- Static method in class ccl.util.
Util
Compares two strings.
equalsFile(String, String)
- Static method in class ccl.util.
FileUtil
Reads two files and compares them.
equalsPath(String, String)
- Static method in class ccl.util.
FileUtil
Checks weather two paths point to the same object on the file system.
exists(String)
- Static method in class ccl.util.
FileUtil
True if a specified object on the file system is either a file or a directory.
existsDir(String)
- Static method in class ccl.util.
FileUtil
Tests, if a given directory exists.
existsFile(String)
- Static method in class ccl.util.
FileUtil
True if a specified file exists.
F
FileUtil
- class ccl.util.
FileUtil
.
Utility class for file operations.
filter(Vector, Object)
- Static method in class ccl.util.
Util
All object in this vector which equal the bad element are not copied over to the resulting vector.
filter(Vector, Testable)
- Static method in class ccl.util.
Util
Create a new vector and copy all elements of the pVector_ paramter over which are accepted by the test filter.
filter(Vector, Vector)
- Static method in class ccl.util.
Util
All object in this vector which equal an object in the bad vector are not copied over to the resulting vector.
firstCharToLowerCase(String)
- Static method in class ccl.util.
Util
Returns the given string with the first char converted to lower case.
firstCharToUpperCase(String)
- Static method in class ccl.util.
Util
Returns the given string with the first char converted to upper case.
formatBlock(String)
- Static method in class ccl.util.
Util
This method takes a string and reformats it so that each line has no more than the given length and the text will be aligned as a block.
formatBlock(String, int)
- Static method in class ccl.util.
Util
This method takes a string and reformats it so that each line has no more than the given length and the text will be aligned as a block.
formatBlock(String, int, int)
- Static method in class ccl.util.
Util
This method takes a string and reformats it so that each line has no more than the given length and the text will be aligned as a block.
formatCenter(String, int)
- Static method in class ccl.util.
Util
This method takes a string and reformats it so that each line has no more than the given length and the text will be centered in the middle.
formatLeft(String)
- Static method in class ccl.util.
Util
This method takes a string and reformats it so that each line has no more than the given length and the text will be aligned to the left side.
formatLeft(String, int)
- Static method in class ccl.util.
Util
This method takes a string and reformats it so that each line has no more than the given length and the text will be aligned to the left side.
formatLeft(String, int, int)
- Static method in class ccl.util.
Util
This method takes a string and reformats it so that each line has no more than the given length and the text will be aligned to the left side.
formatMemoryInfo()
- Static method in class ccl.util.
Util
Returns a message which has nicely formatted information about the current memory usage.
G
gc()
- Static method in class ccl.util.
Util
System.gc() does not always garanty immediate execution.
getAbsoluteFileName(String)
- Static method in class ccl.util.
FileUtil
getAbsolutePath(String)
- Static method in class ccl.util.
FileUtil
The same as getAbsoluteFileName(..).
getAbsolutePathList(String)
- Static method in class ccl.util.
FileUtil
Converts each path element to an aboslute path and concatenates these again using the platforms path separator character.
getApplicationHome(Object)
- Static method in class ccl.util.
FileUtil
Deprecated.
use ClassPathUtil.getApplicationHome instead.
getBaseFileName(String)
- Static method in class ccl.util.
FileUtil
Deprecated.
use getBaseName.
getBaseName(String)
- Static method in class ccl.util.
FileUtil
Get the base name of a file.
getCalendar()
- Static method in class ccl.util.
Util
getCalendar(String)
- Static method in class ccl.util.
Util
This is a replacement of the SimpleTimeZone.getTimeZone(String) function that additionally creates a GregorianCalendar of the given timezone.
getClassPath(Object)
- Static method in class ccl.util.
FileUtil
Does work only when class exists outside a zip or jar file.
getClassPath(String)
- Static method in class ccl.util.
FileUtil
Does work only when class exists outside a zip or jar file.
getConstantObject()
- Static method in class ccl.util.
Util
Sometimes you need a dummy object just to have any value for a hashtable or so and it doesn't matter at all if we always use the same object, so here is one you can use without wasting extra memory.
getDate()
- Static method in class ccl.util.
Util
Returns the current date as an ISO date string.
getDate(Calendar)
- Static method in class ccl.util.
Util
Returns the given date as an ISO date string.
getDate(String)
- Static method in class ccl.util.
Util
For example: 1999-11-26.
getDateTimeAndMillis()
- Static method in class ccl.util.
Util
Returns a string consiting of the iso date, time, and milli seconds, all concatenated without any space, colon, or dash.
getDiffPosition(String, String)
- Static method in class ccl.util.
Util
Finds out the first position (started with 0) at which two strings start to differ.
getDir(String)
- Static method in class ccl.util.
FileUtil
Returns the directory as a string of the given file.
getDirName(String)
- Static method in class ccl.util.
FileUtil
Equivalent to unix dirname command.
getDump(Object)
- Static method in class ccl.util.
Util
This method returns a string with dump out of all its attribute fields, private as well as public fields.
getFiles(String)
- Static method in class ccl.util.
FileUtil
Returns a Vector with all files of the given directory.
getFiles(String, String)
- Static method in class ccl.util.
FileUtil
Returns a Vector with all file names that are inside the specified directory.
getFiles(String, String, String)
- Static method in class ccl.util.
FileUtil
Returns a Vector with all file (and dir) names that are inside the specified directory.
getFilteredDirContent(String, FilenameFilter)
- Static method in class ccl.util.
FileUtil
Returns a Vector with all file names that are inside the specified directory.
getFirstDayOfMonth(String)
- Static method in class ccl.util.
Util
Provide an iso date string and get back an iso date string which has the day set to one.
getHeuteSortable()
- Static method in class ccl.util.
Util
Deprecated.
getLastDayOfMonth(String)
- Static method in class ccl.util.
Util
Provide an iso date string and get back an iso date string with the last day in the same month.
getLocalHostName()
- Static method in class ccl.util.
Util
Get the name of the localhost.
getMonth(String)
- Static method in class ccl.util.
Util
Returns the English name of the month of the given iso-date.
getNextDay(String)
- Static method in class ccl.util.
Util
Provides the iso date of the next day after the given date.
getNumberOfDays(String, String)
- Static method in class ccl.util.
Util
Return the number of days between to dates.
getObjectName(Object)
- Static method in class ccl.util.
Util
pObject_.getClass().getName() returns the name including its package.
getOccurances(String, int)
- Static method in class ccl.util.
Util
Count how often a string contains a special char.
getOccurances(String, String)
- Static method in class ccl.util.
Util
Count how often a string is contained in another string.
getPackagePath(String)
- Static method in class ccl.util.
FileUtil
You give it a package name and it looks with the help of the classpath on the file system if it can find a directory that relates to this package.
getPackagePath(String, String)
- Static method in class ccl.util.
FileUtil
You give it a package name and it looks with the help of the classpath on the file system if it can find a directory that relates to this package.
getRecursiveDir(String)
- Static method in class ccl.util.
FileUtil
Be aware that symbolic links might lead to infinite loops.
getResourceAsStream(Object, String)
- Static method in class ccl.util.
FileUtil
There is one big advantage this method has over Class.getResourceAsStream(..).
getResourceAsString(Object, String)
- Static method in class ccl.util.
FileUtil
There is one big advantage this method has over Class.getResourceAsStream(..).
getSpaces(int)
- Static method in class ccl.util.
Util
Returns a String which consists only of spaces and has the lenght 'length_' or which is empty if length_ equals zero.
getStackTrace(Throwable)
- Static method in class ccl.util.
Util
Returns a string which contains the stack trace.
getStandardDate(Date)
- Static method in class ccl.util.
Util
getSubDirs(String)
- Static method in class ccl.util.
FileUtil
Liefert einen Vector mit allen Unter-Directories zur?ck.
getSwingHome()
- Static method in class ccl.util.
FileUtil
It searchs in the classpath for swingall.jar, then for swing.jar and last for com/sun/java/swing on the file system.
getTempDir()
- Static method in class ccl.util.
FileUtil
Returns a temporary directory.
getTempFileName()
- Static method in class ccl.util.
FileUtil
Creates a path with a temp directory plus a 5 digit random file name.
getTime(Calendar)
- Static method in class ccl.util.
Util
getTime(Date)
- Static method in class ccl.util.
Util
Returns the time as a string of the given date object.
getTimeWithMillis()
- Static method in class ccl.util.
Util
Returns the current time with milli seconds.
getTimeWithMillis(Calendar)
- Static method in class ccl.util.
Util
Returns the current time with milli seconds.
getTodaySortable()
- Static method in class ccl.util.
Util
Deprecated.
use getDate() instead.
getUsedMemory()
- Static method in class ccl.util.
Util
This method returns the memory currently in use.
getUsedMemoryPercentage()
- Static method in class ccl.util.
Util
This method returns the percentage of used memory.
getUsedMemoryPercentage(long, long)
- Static method in class ccl.util.
Util
This method returns the percentage of used memory.
I
indexOfNot(String, char)
- Static method in class ccl.util.
Util
indexOfNot(String, char, int)
- Static method in class ccl.util.
Util
insert(Vector, int, int, Object, Comparable)
- Static method in class ccl.util.
Util
Inert a new object into a vector and keep the vector sorted.
insert(Vector, Object, Comparable)
- Static method in class ccl.util.
Util
Inert a new object into a vector and keep the vector sorted.
insert(Vector, Vector, int)
- Static method in class ccl.util.
Util
Insert at a special offset all elements of the second vector into the first vector.
intToBytes(int)
- Static method in class ccl.util.
Util
Converts an int into a byte array.
invert(Vector)
- Static method in class ccl.util.
Util
Create a new vector and invert the order of the elements.
isAbsolute(String)
- Static method in class ccl.util.
FileUtil
Tests if the file represented by this File object is an absolute pathname.
isAlpha(char)
- Static method in class ccl.util.
Util
Checks that a character is of type alpha.
isDateValid(String)
- Static method in class ccl.util.
Util
Input format of the date is either CCYY-MM-DD or CCYYMMDD.
isDebug()
- Static method in class ccl.util.
Util
Returns the current debug mode.
isDigit(char)
- Static method in class ccl.util.
Util
Return true for digit characters.
isEmpty(String)
- Static method in class ccl.util.
Util
Tests, if a given String equals null or "".
isEmpty(Vector)
- Static method in class ccl.util.
Util
Tests, if a given Vector is null or has size 0.
isFileReadable(String)
- Static method in class ccl.util.
FileUtil
This method checks if it is save to use a file or if for example someone else is currently writing into this file.
isOSLinux()
- Static method in class ccl.util.
Util
Returns true if the current operating system is Linux.
isOSSolaris()
- Static method in class ccl.util.
Util
Returns true if the current operating system is Sun Microsystem's Solaris (or SunOS).
isOSUnix()
- Static method in class ccl.util.
Util
Returns true if the current operating system is either Linux or Solaris.
isOSWindows()
- Static method in class ccl.util.
Util
Returns true if the current operating system is Microsoft Windows.
isQuitInStdin()
- Static method in class ccl.util.
FileUtil
Checks if the next word in the standard input stream is quit followed by a linefeed.
isSpaceLine(String)
- Static method in class ccl.util.
Util
Tests if a string contains only space, tab, and linefeed characters.
isSwingPackage(String)
- Static method in class ccl.util.
Util
Returns true if sFullPackageName_ is a swing package, either old com.sun.java.swing or new javax.swing convention.
isTrue(Boolean)
- Static method in class ccl.util.
Util
Boolean to boolean converter.
isVocal(char)
- Static method in class ccl.util.
Util
Return true if the given character can be found in the string "aeoui???".
itoa(int)
- Static method in class ccl.util.
Util
Converts an int to a String.
L
ltoa(long)
- Static method in class ccl.util.
Util
Converts an long to a String.
ltod(long)
- Static method in class ccl.util.
Util
A long to double converter.
ltrim(String)
- Static method in class ccl.util.
Util
Removes space, carriage, linefeed, and tab chars at the right side of a string.
M
map(Vector, Transformable)
- Static method in class ccl.util.
Util
Convert each element of the vector by a transformation object.
max(int, int)
- Static method in class ccl.util.
Util
Deprecated.
max(long, long)
- Static method in class ccl.util.
Util
Deprecated.
md(String)
- Static method in class ccl.util.
FileUtil
Creates the specified directory and if necessary any parent directories.
min(int, int)
- Static method in class ccl.util.
Util
Deprecated.
mkdir(String)
- Static method in class ccl.util.
FileUtil
Creates the specified directory and if necessary any parent directories.
move(String, String)
- Static method in class ccl.util.
FileUtil
Renames or moves a file.
multiplyChar(char, int)
- Static method in class ccl.util.
Util
Create a string by concatenating one char several times.
multiplyChar(String, int)
- Static method in class ccl.util.
Util
Create a string by concatenating one string several times.
mv(String, String)
- Static method in class ccl.util.
FileUtil
Renames or moves a file.
N
normalizeFileName(String)
- Static method in class ccl.util.
FileUtil
This method returns an absolute (canonical) file name.
normalizeFileName(String, String)
- Static method in class ccl.util.
FileUtil
This method returns an absolute (canonical) file name.
O
O_CONSTANT
- Static variable in class ccl.util.
Util
This could be also private and instead you would have to use getConstantObject(), but yet you have the choice.
objectsToVector(Object[])
- Static method in class ccl.util.
Util
Convert an array of objects to a vector.
openFile(String)
- Static method in class ccl.util.
FileUtil
Get a DataInputStream for a specified file.
openOutputFile(String)
- Static method in class ccl.util.
FileUtil
Get a DataOutputStream for a specified file.
P
paddWith(int, int, char)
- Static method in class ccl.util.
Util
Fill a string with a given char for alignment purposes.
paddWith(String, int, char)
- Static method in class ccl.util.
Util
Fill a string with a given char for alignment purposes.
paddWithSpace(double, int)
- Static method in class ccl.util.
Util
Fill a string with space chars for alignment purposes.
paddWithSpace(int, int)
- Static method in class ccl.util.
Util
Fill a string with space chars for alignment purposes.
paddWithSpace(long, int)
- Static method in class ccl.util.
Util
Fill a string with space chars for alignment purposes.
paddWithSpace(String, int)
- Static method in class ccl.util.
Util
Fill a string with space chars for alignment purposes.
paddWithZero(int, int)
- Static method in class ccl.util.
Util
Fill a string with zero chars for alignment purposes.
paddWithZero(long, int)
- Static method in class ccl.util.
Util
Fill a string with zero chars for alignment purposes.
paddWithZero(String, int)
- Static method in class ccl.util.
Util
Fill a string with zero chars for alignment purposes.
panicIf(boolean)
- Static method in class ccl.util.
Util
panicIf <=> not assert.
panicIf(boolean, String)
- Static method in class ccl.util.
Util
panicIf <=> not assert.
print(char)
- Static method in class ccl.util.
Util
Prints out a char to System.out.
print(Object)
- Static method in class ccl.util.
Util
Prints out the object to System.out.
print(String)
- Static method in class ccl.util.
Util
Prints out a String to System.out.
printAndWaitUntilQuit()
- Static method in class ccl.util.
FileUtil
Prints a user message and reads standard input until someone types 'quit' and <enter>.
printErr(char)
- Static method in class ccl.util.
Util
Prints out a char to System.err.
printErr(Object)
- Static method in class ccl.util.
Util
Prints out the object to System.err.
printErr(String)
- Static method in class ccl.util.
Util
Prints out a String to System.err.
println()
- Static method in class ccl.util.
Util
Same as print('\n').
println(Exception)
- Static method in class ccl.util.
Util
Prints out the exception, its stack trace, and the current thread to System.out!
println(Object)
- Static method in class ccl.util.
Util
Prints out the object to System.out together with a new line.
println(String)
- Static method in class ccl.util.
Util
Prints out a String to System.out together with a new line.
printlnErr()
- Static method in class ccl.util.
Util
The same as println, except output goes to std err.
printlnErr(Exception)
- Static method in class ccl.util.
Util
Prints out an error report for an exception to System.err.
printlnErr(Object)
- Static method in class ccl.util.
Util
Prints out the object to System.err.
printlnErr(Object, Object)
- Static method in class ccl.util.
Util
Prints out a String with a prefix of the oClass_ class name to System.err.
printlnErr(String)
- Static method in class ccl.util.
Util
The same as println, except output goes to std err.
Q
quickSort(Object[], int, int, Comparable)
- Static method in class ccl.util.
Util
An implementation of Quicksort using medians of 3 for partitions.
quickSort(Vector, int, int, Comparable)
- Static method in class ccl.util.
Util
An implementation of Quicksort using medians of 3 for partitions.
R
readBinaryFile(String)
- Static method in class ccl.util.
FileUtil
Deprecated.
Method has no implementation.
readFile(String)
- Static method in class ccl.util.
FileUtil
Reads a File and returns the content in a String.
readFile(URL)
- Static method in class ccl.util.
FileUtil
Reads the content of a URL and returns a string.
readStream(InputStream)
- Static method in class ccl.util.
FileUtil
Reads a stream, gives back a string.
removeMultipleSpaces(String)
- Static method in class ccl.util.
Util
What the method name says.
replace(String, char, char)
- Static method in class ccl.util.
Util
Replaces all occurences of cOld_ in pString with cNew_.
replace(String, char, char, int)
- Static method in class ccl.util.
Util
Replaces all occurences of cOld_ in pString with cNew_.
replace(String, String, String)
- Static method in class ccl.util.
Util
Replaces all occurences of sOld_ in pString with sNew_.
replace(String, String, String, int)
- Static method in class ccl.util.
Util
Replaces all occurences of sOld_ in pString with sNew_.
rightPaddWithSpace(String, int)
- Static method in class ccl.util.
Util
Add spaces at the right side of a string if necessary.
rm(String)
- Static method in class ccl.util.
FileUtil
Remove file on file system.
rnd()
- Static method in class ccl.util.
Util
rnd(double)
- Static method in class ccl.util.
Util
Returns the a pseudorandom double number between 0.0 and excluding the provided double value.
rnd(float)
- Static method in class ccl.util.
Util
Returns the a pseudorandom float number between 0.0 and excluding the provided float value.
rnd(int)
- Static method in class ccl.util.
Util
Random number in the range [0, end_] (both inclusive).
rnd(int, int)
- Static method in class ccl.util.
Util
Random number in the range [start_, end_] (both inclusive).
rtrim(String)
- Static method in class ccl.util.
Util
Removes space, carriage, linefeed, and tab chars at the right side of a string.
S
setDate(Calendar, String)
- Static method in class ccl.util.
Util
setDebug(boolean)
- Static method in class ccl.util.
Util
Sets the debug mode for the running application.
setDebug(String)
- Static method in class ccl.util.
Util
Sets the debug mode for the running application.
setTime(Calendar, String)
- Static method in class ccl.util.
Util
showLiveSignal()
- Static method in class ccl.util.
Util
For batch applications to indicate progess to the user.
showLiveSignal(char)
- Static method in class ccl.util.
Util
For batch applications to indicate progess to the user.
shrinkString(String, int)
- Static method in class ccl.util.
Util
Reformat a string which is not longer than a given size.
sleep(int)
- Static method in class ccl.util.
Util
Current thread sleeps in seconds.
sort(Enumeration)
- Static method in class ccl.util.
Util
Quicksort for Enumeration.
sort(Enumeration, Comparable)
- Static method in class ccl.util.
Util
Quicksort for Enumeration.
sort(Vector)
- Static method in class ccl.util.
Util
Uses Quicksort using medians of 3 for partitions.
sort(Vector, Comparable)
- Static method in class ccl.util.
Util
Uses Quicksort using medians of 3 for partitions and the
sortCaseSensitive(Vector)
- Static method in class ccl.util.
Util
Case sensitive sort has 'Zorro' ordered before 'arthur'.
sortFast(Vector)
- Static method in class ccl.util.
Util
Uses Quicksort using medians of 3 for partitions.
sortFast(Vector, Comparable)
- Static method in class ccl.util.
Util
Like sort but works directly on the input vector.
stringToDate(String)
- Static method in class ccl.util.
Util
Input format of the date is either CCYY-MM-DD or CCYYMMDD.
stringToLines(int, String)
- Static method in class ccl.util.
Util
This function takes a String and separates it into different lines.
stringToLines(int, String, char)
- Static method in class ccl.util.
Util
This function takes a String and separates it into different lines.
stringToLines(String)
- Static method in class ccl.util.
Util
This function takes a String and separates it into different lines.
stringToLines(String, char)
- Static method in class ccl.util.
Util
This function takes a String and separates it into different lines.
stringToLines(String, String)
- Static method in class ccl.util.
Util
This function takes a String and separates it into different lines.
stringToLines(String, String, boolean)
- Static method in class ccl.util.
Util
This function takes a String and separates it into different lines.
subtract(Vector, Vector)
- Static method in class ccl.util.
Util
Create a new vector through extracting all elements of the second vector from the first vector.
swap()
- Static method in class ccl.util.
Util
This method is the second step of a service to swap two objects in less than 3 steps.
swap(Object, Object)
- Static method in class ccl.util.
Util
This method is the first part of a service to swap two objects in less than 3 steps.
swapInt()
- Static method in class ccl.util.
Util
This method is the second step of a service to swap two int values in less than 3 steps.
swapInt(int, int)
- Static method in class ccl.util.
Util
This method is the first part of a service to swap two int values in less than 3 steps.
system(String)
- Static method in class ccl.util.
Util
This method does return immediately.
system(String[])
- Static method in class ccl.util.
Util
Execute an external command.
system(Vector)
- Static method in class ccl.util.
Util
Execute an external command.
systemAndGetError(String)
- Static method in class ccl.util.
Util
Does a system exec and returns the stderr output.
systemAndGetError(Vector)
- Static method in class ccl.util.
Util
Does a system exec and returns the stderr output.
systemAndWait(String)
- Static method in class ccl.util.
Util
Does a system exec and returns the stdout.
systemAndWait(Vector)
- Static method in class ccl.util.
Util
Does a system exec and returns the stdout.
T
toLowerCase(int)
- Static method in class ccl.util.
Util
Works with ints instead of chars.
toString(Object)
- Static method in class ccl.util.
Util
Before returning pObject_.toString() it checks if pObject_ is null.
toUpperCase(int)
- Static method in class ccl.util.
Util
Works with ints instead of chars.
toVector(Enumeration)
- Static method in class ccl.util.
Util
Enumeration to Vector converter.
U
unifySpaces(String)
- Static method in class ccl.util.
Util
Seems to do the same as 'removeMultipleSpaces(String)'.
untabify(String)
- Static method in class ccl.util.
Util
Replaces tabs with spaces, a maximum of 8 each.
Util
- class ccl.util.
Util
.
A general purpose class with a variety of support and convenience methods.
V
vectorToObjects(Vector)
- Static method in class ccl.util.
Util
Convenience class for java.util.Vector.copyInto(..).
W
writeDosFile(String, String)
- Static method in class ccl.util.
FileUtil
Like writeFile but converts LFs to CRLFs.
writeFile(String, String)
- Static method in class ccl.util.
FileUtil
Writes a String into a given File.
writeFileWithBackup(String, String)
- Static method in class ccl.util.
FileUtil
Writes a String into a given File and does move the old file if existent to sFileName + ".bak".
_
_getFilteredDirContent(String, FilenameFilter)
- Static method in class ccl.util.
FileUtil
Deprecated.
A
B
C
D
E
F
G
I
L
M
N
O
P
Q
R
S
T
U
V
W
_
Package
Class
Tree
Deprecated
Index
Help
PREV NEXT
FRAMES
NO FRAMES
All Classes