org.jboss.portal.common.value
Class BooleanValues

java.lang.Object
  extended by org.jboss.portal.common.value.AbstractValues
      extended by org.jboss.portal.common.value.BooleanValues
All Implemented Interfaces:
java.io.Serializable, Value

public class BooleanValues
extends AbstractValues

See Also:
Serialized Form

Constructor Summary
BooleanValues(boolean value)
           
BooleanValues(java.lang.Boolean value)
           
BooleanValues(boolean[] _values)
           
BooleanValues(java.lang.Boolean[] values)
           
BooleanValues(java.lang.String[] values)
           
 
Method Summary
 boolean asBoolean()
          Return the value as a boolean.
 boolean[] asBooleanArray()
          Default implementation throws FormatConversionException.
 java.lang.String asString()
          Return the value as a string.
 java.lang.String[] asStringArray()
          Return the values as an array of string.
protected  java.lang.Object[] getObjects()
          Must always return a non null array !!!
 
Methods inherited from class org.jboss.portal.common.value.AbstractValues
asInt, asIntArray, asObject, asObjectArray, asObjectList, equals, hashCode, isMultiValued, isNull, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BooleanValues

public BooleanValues(java.lang.String[] values)
              throws java.lang.IllegalArgumentException
Throws:
java.lang.IllegalArgumentException

BooleanValues

public BooleanValues(java.lang.Boolean value)

BooleanValues

public BooleanValues(java.lang.Boolean[] values)

BooleanValues

public BooleanValues(boolean value)

BooleanValues

public BooleanValues(boolean[] _values)
Method Detail

asStringArray

public java.lang.String[] asStringArray()
Description copied from interface: Value
Return the values as an array of string.


asBooleanArray

public boolean[] asBooleanArray()
                         throws NullConversionException,
                                FormatConversionException
Description copied from class: AbstractValues
Default implementation throws FormatConversionException.

Specified by:
asBooleanArray in interface Value
Overrides:
asBooleanArray in class AbstractValues
Throws:
NullConversionException - if one of the values is null
FormatConversionException - if one of the values cannot be converted

asString

public java.lang.String asString()
Description copied from interface: Value
Return the value as a string.


asBoolean

public boolean asBoolean()
                  throws NullConversionException,
                         FormatConversionException
Description copied from interface: Value
Return the value as a boolean.

Specified by:
asBoolean in interface Value
Overrides:
asBoolean in class AbstractValues
Throws:
NullConversionException - if one of the values is null
FormatConversionException - if one of the values cannot be converted

getObjects

protected java.lang.Object[] getObjects()
Description copied from class: AbstractValues
Must always return a non null array !!!

Specified by:
getObjects in class AbstractValues