JIDE 3.5.15

com.jidesoft.converter
Class MultipleEnumConverter

java.lang.Object
  extended by com.jidesoft.converter.ArrayConverter
      extended by com.jidesoft.converter.MultipleEnumConverter
All Implemented Interfaces:
ObjectConverter

public class MultipleEnumConverter
extends ArrayConverter

MultipleEnumConverter is a special ArrayConverter that converts a string to/from array. Each element in the element is converted to the object using a specified EnumConverter.


Constructor Summary
MultipleEnumConverter(String separator, EnumConverter converter)
           
 
Method Summary
protected  Object fromString(int i, String s, ConverterContext context)
           
 Object fromString(String string, ConverterContext context)
          Converts from String to an object.
 ConverterContext getContext()
          Gets the converter context of this converter.
 EnumConverter getEnumConverter()
           
 Class<?> getType()
           
 void setEnumConverter(EnumConverter enumConverter)
           
 boolean supportFromString(String string, ConverterContext context)
          If it supports fromString.
 boolean supportToString(Object object, ConverterContext context)
          If it supports toString method.
protected  String toString(int i, Object o, ConverterContext context)
           
 String toString(Object object, ConverterContext context)
          Converts from object to String based on current locale.
 
Methods inherited from class com.jidesoft.converter.ArrayConverter
arrayFromString, arrayToString, getElementClass, isUseTokenizer, setUseTokenizer
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MultipleEnumConverter

public MultipleEnumConverter(String separator,
                             EnumConverter converter)
Method Detail

getType

public Class<?> getType()

getEnumConverter

public EnumConverter getEnumConverter()

setEnumConverter

public void setEnumConverter(EnumConverter enumConverter)

toString

public String toString(Object object,
                       ConverterContext context)
Description copied from interface: ObjectConverter
Converts from object to String based on current locale.

Parameters:
object - object to be converted
context - converter context to be used
Returns:
the String

supportToString

public boolean supportToString(Object object,
                               ConverterContext context)
Description copied from interface: ObjectConverter
If it supports toString method.

Parameters:
object - object to be converted
context - converter context to be used
Returns:
true if supports toString

fromString

public Object fromString(String string,
                         ConverterContext context)
Description copied from interface: ObjectConverter
Converts from String to an object.

Parameters:
string - the string
context - context to be converted
Returns:
the object converted from string

supportFromString

public boolean supportFromString(String string,
                                 ConverterContext context)
Description copied from interface: ObjectConverter
If it supports fromString.

Parameters:
string - the string
context - context to be converted
Returns:
true if it supports

toString

protected String toString(int i,
                          Object o,
                          ConverterContext context)
Overrides:
toString in class ArrayConverter

fromString

protected Object fromString(int i,
                            String s,
                            ConverterContext context)
Overrides:
fromString in class ArrayConverter

getContext

public ConverterContext getContext()
Gets the converter context of this converter. The name of the context is the name of the converter where you pass in to EnumConverter's constructor.

Returns:
the converter context of this converter.

JIDE 3.5.15