Package com.iplanet.jato.util

Miscellaneous utility classes

See:
          Description

Interface Summary
ConvertibleType During type conversion by the TypeConverter class, value objects that implement this interface will be called upon to provide their own type conversion objects instead of using the conversions registered with the TypeConverter class.
RootCauseException An Exception type will implement this interface when its existence is elicited by another root cause exception for which this interface provides an accessor to.
TypeConversion An object that can convert a value to a different type
TypeConversionListener The listener interface for receiving type conversion events.
 

Class Summary
Encoder Static utility class for Base64 encoding/decoding a byte array or Serializable object with support for compression and escaped HTTP strings using a variant of Base64 encoding.
HtmlUtil Static utility class for escaping/descaping strings to/from suitable HTML forms, generating unique values and formating data for HTML display.
Http64Decoder This class decodes characters that were perviously encoded using a variant of Base64 encoding.
Http64Encoder This class encodes characters using a variant of Base64 encoding that results in an encoded string that doesn't need to be escaped for use in HTTP URLs.
MethodRegistry Utility for organizing one or more MethodSpec instances and storing the results of matching these specification against a set of classes.
MethodSpec Utility which encapsulates both the specification of an arbitary method signature and behavior for matching these specifications against a particular class member.
NonSyncStringBuffer Non-synchronized version of java.lang.StringBuffer It has been modified to provide efficient performance in case where StringBuffers are not expected to be used in multiple Threads.
ProfileTimer Provides an easy-to-use and accurate timing mechanism for a variety of profiling uses.
StringTokenizer2 A complement to java.util.StringTokenizer that provides tokenizing by substrings instead of single characters as well as static utility methods for standard tasks.
TypeConverter Provides an efficient and robust mechanism for converting an object to a different type.
TypeConverter.BigDecimalTypeConversion  
TypeConverter.BooleanTypeConversion  
TypeConverter.ByteTypeConversion  
TypeConverter.CharacterTypeConversion  
TypeConverter.DoubleTypeConversion  
TypeConverter.FloatTypeConversion  
TypeConverter.IntegerTypeConversion  
TypeConverter.LongTypeConversion  
TypeConverter.ObjectTypeConversion  
TypeConverter.ShortTypeConversion  
TypeConverter.SqlDateTypeConversion  
TypeConverter.SqlTimestampTypeConversion  
TypeConverter.SqlTimeTypeConversion  
TypeConverter.StringTypeConversion  
TypeConverter.UnknownTypeConversion  
 

Exception Summary
WrapperException Baseclass providing exception and stacktrace formatting, optional constructors and implementation for RootCauseException.
WrapperRuntimeException Baseclass providing exception and stacktrace formatting, optional constructors and implementation for RootCauseException.
 

Package com.iplanet.jato.util Description

Miscellaneous utility classes