B C E G I N O R S T X

B

BooleanUtils - Class in org.xulux.utils
This class is a copy of BooleanUtils from jakarta commons lang, version 1.17.
BooleanUtils() - Constructor for class org.xulux.utils.BooleanUtils
BooleanUtils instances should NOT be constructed in standard programming.

C

capitalize(String) - Static method in class org.xulux.utils.StringUtils
Capitalizes a string, which means the first character will be uppercase and the other characters will be lowercase.
ClassLoaderUtils - Class in org.xulux.utils
This util class contains classloader utils so we can do actual code reuse.
ClassLoaderUtils() - Constructor for class org.xulux.utils.ClassLoaderUtils
Make it possible to extend..
closeQuietly(Reader) - Static method in class org.xulux.utils.io.IOUtils
Unconditionally close an Reader.
closeQuietly(Writer) - Static method in class org.xulux.utils.io.IOUtils
Unconditionally close a Writer.
closeQuietly(InputStream) - Static method in class org.xulux.utils.io.IOUtils
Unconditionally close an InputStream.
closeQuietly(OutputStream) - Static method in class org.xulux.utils.io.IOUtils
Unconditionally close an OutputStream.

E

equals(Object) - Method in class org.xulux.utils.Translation
Case sensitive comparison of urls.

G

getClass(String) - Static method in class org.xulux.utils.ClassLoaderUtils
 
getInstance() - Static method in class org.xulux.utils.Translator
 
getLineSeperator() - Static method in class org.xulux.utils.io.IOUtils
 
getList(Object) - Static method in class org.xulux.utils.XuluxCollectionUtils
Currently supports lists, collections and arrays
getListFromCSV(String) - Static method in class org.xulux.utils.XuluxCollectionUtils
Tries to figure out the seperator used
getListFromCSV(String, String) - Static method in class org.xulux.utils.XuluxCollectionUtils
 
getObjectFromClass(Class) - Static method in class org.xulux.utils.ClassLoaderUtils
Also instantiates static AND non static innerclasses.
getObjectFromClass(Class, List) - Static method in class org.xulux.utils.ClassLoaderUtils
Tries to find a constructor with the parameters specified in the list If it cannot it will return the empty constructor.
getObjectFromClassString(String) - Static method in class org.xulux.utils.ClassLoaderUtils
 
getParentObjectForInnerClass(Class) - Static method in class org.xulux.utils.ClassLoaderUtils
Instantiates the parent object of an inner class.
getType() - Method in class org.xulux.utils.Translation
 
getUrl() - Method in class org.xulux.utils.Translation
 

I

INTEGER_ONE - Static variable in class org.xulux.utils.BooleanUtils
Reusable Integer constant for one.
INTEGER_ZERO - Static variable in class org.xulux.utils.BooleanUtils
Reusable Integer constant for zero.
IOUtils - Class in org.xulux.utils.io
Removed javadoc.
IOUtils() - Constructor for class org.xulux.utils.io.IOUtils
 
isInner(Class) - Static method in class org.xulux.utils.ClassLoaderUtils
 

N

negate(Boolean) - Static method in class org.xulux.utils.BooleanUtils
Negates the specified boolean.

O

org.xulux.utils - package org.xulux.utils
 
org.xulux.utils.io - package org.xulux.utils.io
 

R

replace(String, String, char) - Static method in class org.xulux.utils.StringUtils
Replace the specified string with the specified char

S

setLogger(ILogger) - Static method in class org.xulux.utils.ClassLoaderUtils
Set the logger to be used
setType(String) - Method in class org.xulux.utils.Translation
 
setUrl(String) - Method in class org.xulux.utils.Translation
 
StringUtils - Class in org.xulux.utils
 
StringUtils() - Constructor for class org.xulux.utils.StringUtils
 

T

toBoolean(Boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a Boolean to a boolean handling null by returning false.
toBoolean(int) - Static method in class org.xulux.utils.BooleanUtils
Converts an int to a boolean using the convention that zero is false.
toBoolean(int, int, int) - Static method in class org.xulux.utils.BooleanUtils
Converts an int to a boolean specifying the conversion values.
toBoolean(Integer, Integer, Integer) - Static method in class org.xulux.utils.BooleanUtils
Converts an Integer to a boolean specifying the conversion values.
toBoolean(String) - Static method in class org.xulux.utils.BooleanUtils
Converts a String to a boolean (optimised for performance).
toBoolean(Object) - Static method in class org.xulux.utils.BooleanUtils
Since xulux works with objects and we don't want to figure out the type beforehand, we have a stub that is calling the string and boolean toBoolean methods.
toBoolean(String, String, String) - Static method in class org.xulux.utils.BooleanUtils
Converts a String to a Boolean throwing an exception if no match found.
toBooleanDefaultIfNull(Boolean, boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a Boolean to a boolean handling null.
toBooleanObject(boolean) - Static method in class org.xulux.utils.BooleanUtils
Boolean factory that avoids creating new Boolean objecs all the time.
toBooleanObject(int) - Static method in class org.xulux.utils.BooleanUtils
Converts an int to a Boolean using the convention that zero is false.
toBooleanObject(Integer) - Static method in class org.xulux.utils.BooleanUtils
Converts an Integer to a Boolean using the convention that zero is false.
toBooleanObject(int, int, int, int) - Static method in class org.xulux.utils.BooleanUtils
Converts an int to a Boolean specifying the conversion values.
toBooleanObject(Integer, Integer, Integer, Integer) - Static method in class org.xulux.utils.BooleanUtils
Converts an Integer to a Boolean specifying the conversion values.
toBooleanObject(String) - Static method in class org.xulux.utils.BooleanUtils
Converts a String to a Boolean.
toBooleanObject(String, String, String, String) - Static method in class org.xulux.utils.BooleanUtils
Converts a String to a Boolean throwing an exception if no match.
toInteger(boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a boolean to an int using the convention that zero is false.
toInteger(boolean, int, int) - Static method in class org.xulux.utils.BooleanUtils
Converts a boolean to an int specifying the conversion values.
toInteger(Boolean, int, int, int) - Static method in class org.xulux.utils.BooleanUtils
Converts a Boolean to an int specifying the conversion values.
toIntegerObject(boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a boolean to an Integer using the convention that zero is false.
toIntegerObject(Boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a Boolean to a Integer using the convention that zero is false.
toIntegerObject(boolean, Integer, Integer) - Static method in class org.xulux.utils.BooleanUtils
Converts a boolean to an Integer specifying the conversion values.
toIntegerObject(Boolean, Integer, Integer, Integer) - Static method in class org.xulux.utils.BooleanUtils
Converts a Boolean to an Integer specifying the conversion values.
toString(Boolean, String, String, String) - Static method in class org.xulux.utils.BooleanUtils
Converts a Boolean to a String returning one of the input Strings.
toString(boolean, String, String) - Static method in class org.xulux.utils.BooleanUtils
Converts a boolean to a String returning one of the input Strings.
toString() - Method in class org.xulux.utils.Translation
 
toStringOnOff(Boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a Boolean to a String returning 'on', 'off', or null.
toStringOnOff(boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a boolean to a String returning 'on' or 'off'.
toStringTrueFalse(Boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a Boolean to a String returning 'true', 'false', or null.
toStringTrueFalse(boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a boolean to a String returning 'true' or 'false'.
toStringYesNo(Boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a Boolean to a String returning 'yes', 'no', or null.
toStringYesNo(boolean) - Static method in class org.xulux.utils.BooleanUtils
Converts a boolean to a String returning 'yes' or 'no'.
translate(List, String) - Static method in class org.xulux.utils.Translator
For now only support for full i18n (so the first entry in the key must be the percent sign to get translated.
Translation - Class in org.xulux.utils
The translation object is a holder of translation information (url to get names from) It defaults to classloader loading.
Translation() - Constructor for class org.xulux.utils.Translation
 
Translation(String, String) - Constructor for class org.xulux.utils.Translation
Convenient constructor instead of calling the setters..
Translator - Class in org.xulux.utils
Retrievs the specified internationalized text
Translator() - Constructor for class org.xulux.utils.Translator
 

X

xor(boolean[]) - Static method in class org.xulux.utils.BooleanUtils
Performs an xor on a set of booleans.
XuluxCollectionUtils - Class in org.xulux.utils
Collection utilities to do conversions for Xulux.
XuluxCollectionUtils() - Constructor for class org.xulux.utils.XuluxCollectionUtils
 

B C E G I N O R S T X

Copyright © 2002-2007 Martin van den Bemt. All Rights Reserved.