Uses of Class
wicket.util.string.StringValueConversionException

Packages that use StringValueConversionException
wicket.util.lang Java utilities. 
wicket.util.string String utilities. 
wicket.util.time Utilities for working with time(s). 
wicket.util.value Casting utilities. 
 

Uses of StringValueConversionException in wicket.util.lang
 

Methods in wicket.util.lang that throw StringValueConversionException
static Bytes Bytes.valueOf(java.lang.String string)
          Converts a string to a number of bytes.
static Bytes Bytes.valueOf(java.lang.String string, java.util.Locale locale)
          Converts a string to a number of bytes.
 

Uses of StringValueConversionException in wicket.util.string
 

Methods in wicket.util.string that throw StringValueConversionException
static boolean Strings.isTrue(java.lang.String s)
          Converts the text in s to a corresponding boolean.
 java.lang.Object StringValue.to(java.lang.Class type)
          Converts this StringValue to a given type.
 boolean StringValue.toBoolean()
          Convert this text to a boolean.
 boolean StringValue.toBoolean(boolean defaultValue)
          Convert to primitive types, returning default value if text is null.
static java.lang.Boolean Strings.toBoolean(java.lang.String s)
          Converts the string s to a Boolean.
 java.lang.Boolean StringValue.toBooleanObject()
          Convert this text to a boolean and convert unchecked NumberFormatExceptions to checked.
 char StringValue.toChar()
          Convert this text to a char.
 char StringValue.toChar(char defaultValue)
          Convert to primitive types, returning default value if text is null.
static char Strings.toChar(java.lang.String s)
          Converts the 1 character string s to a character.
 java.lang.Character StringValue.toCharacter()
          Convert this text to a Character and convert unchecked NumberFormatExceptions to checked.
 double StringValue.toDouble()
          Convert this text to a double and convert unchecked NumberFormatExceptions to checked.
 double StringValue.toDouble(double defaultValue)
          Convert to primitive types, returning default value if text is null.
 java.lang.Double StringValue.toDoubleObject()
          Convert this text to a Double and convert unchecked NumberFormatExceptions to checked.
 Duration StringValue.toDuration()
          Convert this text to a Duration instance and convert unchecked NumberFormatExceptions to checked.
 Duration StringValue.toDuration(Duration defaultValue)
          Convert to primitive types, returning default value if text is null.
 int StringValue.toInt()
          Convert this text to an int and convert unchecked NumberFormatExceptions to checked.
 int StringValue.toInt(int defaultValue)
          Convert to primitive types, returning default value if text is null.
 java.lang.Integer StringValue.toInteger()
          Convert this text to an Integer and convert unchecked NumberFormatExceptions to checked.
 long StringValue.toLong()
          Convert this text to a long and convert unchecked NumberFormatExceptions to checked.
 long StringValue.toLong(long defaultValue)
          Convert to primitive types, returning default value if text is null.
 java.lang.Long StringValue.toLongObject()
          Convert this text to a Long and convert unchecked NumberFormatExceptions to checked.
 java.lang.Boolean StringValue.toOptionalBoolean()
          Convert to object types, returning null if text is null.
 java.lang.Character StringValue.toOptionalCharacter()
          Convert to object types, returning null if text is null.
 java.lang.Double StringValue.toOptionalDouble()
          Convert to object types, returning null if text is null.
 Duration StringValue.toOptionalDuration()
          Convert to object types, returning null if text is null.
 java.lang.Integer StringValue.toOptionalInteger()
          Convert to object types, returning null if text is null.
 java.lang.Long StringValue.toOptionalLong()
          Convert to object types, returning null if text is null.
 Time StringValue.toOptionalTime()
          Convert to object types, returning null if text is null.
 Time StringValue.toTime()
          Convert this text to a time instance and convert unchecked NumberFormatExceptions to checked.
 Time StringValue.toTime(Time defaultValue)
          Convert to primitive types, returning default value if text is null.
 

Uses of StringValueConversionException in wicket.util.time
 

Methods in wicket.util.time that throw StringValueConversionException
static Duration Duration.valueOf(java.lang.String string)
          Converts the given string to a new duration object.
static Duration Duration.valueOf(java.lang.String string, java.util.Locale locale)
          Converts the given string to a new Duration object.
 

Uses of StringValueConversionException in wicket.util.value
 

Methods in wicket.util.value that throw StringValueConversionException
 boolean ValueMap.getBoolean(java.lang.String key)
          Gets a boolean value by key.
 double ValueMap.getDouble(java.lang.String key)
          Gets a double value by key.
 double ValueMap.getDouble(java.lang.String key, double defaultValue)
          Gets a double using a default if not found.
 Duration ValueMap.getDuration(java.lang.String key)
          Gets a duration.
 int ValueMap.getInt(java.lang.String key)
          Gets an int.
 int ValueMap.getInt(java.lang.String key, int defaultValue)
          Gets an int, using a default if not found.
 long ValueMap.getLong(java.lang.String key)
          Gets a long.
 long ValueMap.getLong(java.lang.String key, long defaultValue)
          Gets a long using a default if not found.
 Time ValueMap.getTime(java.lang.String key)
          Gets a time.
 



Copyright © 2004-2007 Wicket developers. All Rights Reserved.