Uses of Interface
com.abstractics.utils.converter.ObjectConverter

Packages that use ObjectConverter
com.abstractics.utils.converter   
 

Uses of ObjectConverter in com.abstractics.utils.converter
 

Classes in com.abstractics.utils.converter that implement ObjectConverter
 class CachingConverterWrapper
          An instance of ObjectConverter that can wrap another ObjectConverter and provide caching for the objects that are converted.
 class ConverterBoolean
          Converts to a java.lang.Boolean object.
 class ConverterBorder
          Converts the given object into a String via the toString() method and then converts the String into a javax.swing.border.Border object.
 class ConverterCharacter
          Converts the given object into a String via the toString() method and then returns the first character of the String.
 class ConverterColor
          Converts the given object into a String via the toString() method and then converts the String into a java.awt.Color object.
 class ConverterDimension
          Converts the given object into a String via the toString() method and then converts the String into a java.awt.Dimension based on a String format of widthXsize (x is case-insensitive).

For example, 200x300 translates to 200 width and 300 height.
 class ConverterFont
          Converts the given object into a String via the toString() method and then converts the String into a java.awt.Font object.
Fonts are specified in FontName,Style,Size order.
 class ConverterImageIcon
          Converts the given object into a String via the toString() method and then converts the String into a javax.swing.ImageIcon object.

The string is expected to be a URL pointing to a valid image resource.
 class ConverterInsets
          Converts the given object into a String via the toString() method and then converts the String into a java.awt.Insets object.
Insets contain 4 numbers generally used for padding and margin notation.
 class ConverterNumber
          Converter that can handle converting an object into the java.lang.Number subclass specified in the constructor.
 class ConverterRectangle
          Converts the given object into a String via the toString() method and then converts the String into a java.awt.Rectangle based on a String format of x,y,width,height.

For example, 0,0,100,200 translates into a rectangle at x/y 0,0 with a width of 100 and a height of 200
 class DefaultingConverterWrapper
          An instance of ObjectConverter that can wrap another ObjectConverter and provide a default value if the wrapped converter's conversion fails.
 class UrlConverter
          Converts the given object into a String via the toString() method and then converts the String into a java.net.URL object.

The string is expected to be in URL format so that a call to the constructor for java.net.URL succeeds wihtout a MalformedURLException.
 

Methods in com.abstractics.utils.converter with parameters of type ObjectConverter
static void Converter.register(ObjectConverter converter)
          Registers the given ObjectConverter
 

Constructors in com.abstractics.utils.converter with parameters of type ObjectConverter
DefaultingConverterWrapper(ObjectConverter wrappedConverter, java.lang.Object defaultValue)
          Defaults logging to true
CachingConverterWrapper(ObjectConverter wrappedConverter)