Uses of Class
net.lucidviews.util.text.ParseValueException

Packages that use ParseValueException
net.lucidviews.util Classes in this package generally extend or enhance java.lang.* or java.util.*
net.lucidviews.util.text Utility classes that operate on text values. 
 

Uses of ParseValueException in net.lucidviews.util
 

Constructors in net.lucidviews.util with parameters of type ParseValueException
PropertyException(java.lang.String propertySource, java.lang.String propertyKey, java.lang.String propertyValue, ParseValueException parseException)
          Create a new exception caused by an invalid property value.
 

Uses of ParseValueException in net.lucidviews.util.text
 

Methods in net.lucidviews.util.text that throw ParseValueException
static java.lang.Boolean Strings.parseBoolean(java.lang.String string)
          Parse a Boolean value from a String.
static java.lang.Boolean Strings.parseBoolean(java.lang.Boolean defaultValue, java.lang.String string)
          Parse a Boolean value from a String, returning the default value if the string was invalid.
static java.lang.Long Strings.parseLong(java.lang.String string)
          Parse a Long value from a String.
static java.lang.Long Strings.parseLong(java.lang.Long defaultValue, java.lang.String string)
          Parse a Long value from a String, returning the default value if the string was invalid.
static java.lang.Double Strings.parseDouble(java.lang.String string)
          Parse a Double value from a String.
static java.lang.Double Strings.parseDouble(java.lang.Double defaultValue, java.lang.String string)
          Parse a Double value from a String, returning the default value if the string was invalid.
static java.io.File Strings.parseFile(java.lang.String string)
          Parse a File value from a String.
static java.io.File Strings.parseFile(java.io.File defaultValue, java.lang.String string, java.io.File relativeToFolder)
          Parse a File value from a String, returning the default value if the string was invalid.
static java.io.File Strings.parseFile(java.io.File defaultValue, java.lang.String string)
          Parse a File value from a String, returning the default value if the string was invalid.
static java.io.File Strings.parseFolder(java.lang.String string)
          Parse a File value from a String.
static java.io.File Strings.parseFolder(java.io.File defaultValue, java.lang.String string, java.io.File relativeToFolder)
          Parse a File value from a String, returning the default value if the string was invalid.
static java.io.File Strings.parseFolder(java.io.File defaultValue, java.lang.String string)
          Parse a File value from a String, returning the default value if the string was invalid.
static java.lang.Class Strings.parseClass(java.lang.String string)
          Parse a Java Class from a String.
static java.lang.Class Strings.parseClass(java.lang.Class defaultValue, java.lang.String string, java.lang.String relativeToPackage)
          Parse a Java Class from a String, returning the default value if the string was invalid.
static java.lang.Class Strings.parseClass(java.lang.Class defaultValue, java.lang.String string)
          Parse a Java Class from a String, returning the default value if the string was invalid.
static EnumValue Strings.parseEnumValue(java.lang.String string, Enumeration enumeration)
          Parse an enumeration value of the given Enumeration type from a String.
static EnumValue Strings.parseEnumValue(EnumValue defaultValue, java.lang.String string, Enumeration enumeration)
          Parse an enumeration value of the given Enumeration type from a String, returning the default value if the string was invalid.
static java.lang.Object Strings.parseObject(java.lang.String string, java.util.Collection validObjects)
          Parse an object from a String.
static java.lang.Object Strings.parseObject(java.lang.Object defaultValue, java.lang.String string, java.util.Collection validObjects)
          Parse an object from a String, returning the default value if the string was invalid.
static java.awt.Color Strings.parseColor(java.lang.String string)
          Parse a Color from a String, returning the default value if the string was invalid.
static java.awt.Color Strings.parseColor(java.awt.Color defaultValue, java.lang.String string)
          Parse a Color from a String, returning the default value if the string was invalid.
static int[] Strings.parseInts(java.lang.String string)
          Parse a list of integer values from a given string.
static int[] Strings.parseInts(java.lang.String string, java.lang.String delimiters)
          Parse a list of integer values from a given string.
static int[] Strings.parseInts(java.lang.String string, int minValue, int maxValue)
          Parse a list of integer values from a given string.
static int[] Strings.parseInts(java.lang.String string, java.lang.String delimiters, int minValue, int maxValue)
          Parse a list of integer values from a given string.