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(String propertySource, String propertyKey, 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 Boolean Strings.parseBoolean(Boolean defaultValue, String string)
          Parse a Boolean value from a String, returning the default value if the string was invalid.
static Boolean Strings.parseBoolean(String string)
          Parse a Boolean value from a String.
static Class Strings.parseClass(Class defaultValue, String string)
          Parse a Java Class from a String, returning the default value if the string was invalid.
static Class Strings.parseClass(Class defaultValue, String string, String relativeToPackage)
          Parse a Java Class from a String, returning the default value if the string was invalid.
static Class Strings.parseClass(String string)
          Parse a Java Class from a String.
static Color Strings.parseColor(Color defaultValue, String string)
          Parse a Color from a String, returning the default value if the string was invalid.
static Color Strings.parseColor(String string)
          Parse a Color from a String, returning the default value if the string was invalid.
static Double Strings.parseDouble(Double defaultValue, String string)
          Parse a Double value from a String, returning the default value if the string was invalid.
static Double Strings.parseDouble(String string)
          Parse a Double value from a String.
static EnumValue Strings.parseEnumValue(EnumValue defaultValue, 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 EnumValue Strings.parseEnumValue(String string, Enumeration enumeration)
          Parse an enumeration value of the given Enumeration type from a String.
static File Strings.parseFile(File defaultValue, String string)
          Parse a File value from a String, returning the default value if the string was invalid.
static File Strings.parseFile(File defaultValue, String string, File relativeToFolder)
          Parse a File value from a String, returning the default value if the string was invalid.
static File Strings.parseFile(String string)
          Parse a File value from a String.
static File Strings.parseFolder(File defaultValue, String string)
          Parse a File value from a String, returning the default value if the string was invalid.
static File Strings.parseFolder(File defaultValue, String string, File relativeToFolder)
          Parse a File value from a String, returning the default value if the string was invalid.
static File Strings.parseFolder(String string)
          Parse a File value from a String.
static int[] Strings.parseInts(String string)
          Parse a list of integer values from a given string.
static int[] Strings.parseInts(String string, int minValue, int maxValue)
          Parse a list of integer values from a given string.
static int[] Strings.parseInts(String string, String delimiters)
          Parse a list of integer values from a given string.
static int[] Strings.parseInts(String string, String delimiters, int minValue, int maxValue)
          Parse a list of integer values from a given string.
static Long Strings.parseLong(Long defaultValue, String string)
          Parse a Long value from a String, returning the default value if the string was invalid.
static Long Strings.parseLong(String string)
          Parse a Long value from a String.
static Object Strings.parseObject(Object defaultValue, String string, Collection validObjects)
          Parse an object from a String, returning the default value if the string was invalid.
static Object Strings.parseObject(String string, Collection validObjects)
          Parse an object from a String.