|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.apache.commons.beanutils.locale.BaseLocaleConverter org.apache.commons.beanutils.locale.converters.DateLocaleConverter org.apache.commons.beanutils.locale.converters.SqlTimestampLocaleConverter
public class SqlTimestampLocaleConverter
Standard LocaleConverter
implementation that converts an incoming
locale-sensitive String into a java.sql.Timestamp
object,
optionally using a default value or throwing a
ConversionException
if a conversion error occurs.
Field Summary |
---|
Fields inherited from class org.apache.commons.beanutils.locale.BaseLocaleConverter |
---|
locale, locPattern, pattern, useDefault |
Constructor Summary | |
---|---|
SqlTimestampLocaleConverter()
Create a LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(boolean locPattern)
Create a LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(Locale locale)
Create a LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(Locale locale,
boolean locPattern)
Create a LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(Locale locale,
String pattern)
Create a LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(Locale locale,
String pattern,
boolean locPattern)
Create a LocaleConverter
that will throw a ConversionException
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(Object defaultValue)
Create a LocaleConverter
that will return the specified default value
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(Object defaultValue,
boolean locPattern)
Create a LocaleConverter
that will return the specified default value
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(Object defaultValue,
Locale locale)
Create a LocaleConverter
that will return the specified default value
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(Object defaultValue,
Locale locale,
boolean locPattern)
Create a LocaleConverter
that will return the specified default value
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(Object defaultValue,
Locale locale,
String pattern)
Create a LocaleConverter
that will return the specified default value
if a conversion error occurs. |
|
SqlTimestampLocaleConverter(Object defaultValue,
Locale locale,
String pattern,
boolean locPattern)
Create a LocaleConverter
that will return the specified default value
if a conversion error occurs. |
Method Summary | |
---|---|
protected Object |
parse(Object value,
String pattern)
Convert the specified locale-sensitive input object into an output object of the specified type. |
Methods inherited from class org.apache.commons.beanutils.locale.converters.DateLocaleConverter |
---|
isLenient, setLenient |
Methods inherited from class org.apache.commons.beanutils.locale.BaseLocaleConverter |
---|
convert, convert, convert, convert |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public SqlTimestampLocaleConverter()
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. The locale is the default locale for
this instance of the Java Virtual Machine and an unlocalized pattern is used
for the convertion.
public SqlTimestampLocaleConverter(boolean locPattern)
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. The locale is the default locale for
this instance of the Java Virtual Machine.
locPattern
- Indicate whether the pattern is localized or notpublic SqlTimestampLocaleConverter(Locale locale)
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. An unlocalized pattern is used for the convertion.
locale
- The localepublic SqlTimestampLocaleConverter(Locale locale, boolean locPattern)
LocaleConverter
that will throw a ConversionException
if a conversion error occurs.
locale
- The localelocPattern
- Indicate whether the pattern is localized or notpublic SqlTimestampLocaleConverter(Locale locale, String pattern)
LocaleConverter
that will throw a ConversionException
if a conversion error occurs. An unlocalized pattern is used for the convertion.
locale
- The localepattern
- The convertion patternpublic SqlTimestampLocaleConverter(Locale locale, String pattern, boolean locPattern)
LocaleConverter
that will throw a ConversionException
if a conversion error occurs.
locale
- The localepattern
- The convertion patternlocPattern
- Indicate whether the pattern is localized or notpublic SqlTimestampLocaleConverter(Object defaultValue)
LocaleConverter
that will return the specified default value
if a conversion error occurs. The locale is the default locale for
this instance of the Java Virtual Machine and an unlocalized pattern is used
for the convertion.
defaultValue
- The default value to be returnedpublic SqlTimestampLocaleConverter(Object defaultValue, boolean locPattern)
LocaleConverter
that will return the specified default value
if a conversion error occurs. The locale is the default locale for
this instance of the Java Virtual Machine.
defaultValue
- The default value to be returnedlocPattern
- Indicate whether the pattern is localized or notpublic SqlTimestampLocaleConverter(Object defaultValue, Locale locale)
LocaleConverter
that will return the specified default value
if a conversion error occurs. An unlocalized pattern is used for the convertion.
defaultValue
- The default value to be returnedlocale
- The localepublic SqlTimestampLocaleConverter(Object defaultValue, Locale locale, boolean locPattern)
LocaleConverter
that will return the specified default value
if a conversion error occurs.
defaultValue
- The default value to be returnedlocale
- The localelocPattern
- Indicate whether the pattern is localized or notpublic SqlTimestampLocaleConverter(Object defaultValue, Locale locale, String pattern)
LocaleConverter
that will return the specified default value
if a conversion error occurs. An unlocalized pattern is used for the convertion.
defaultValue
- The default value to be returnedlocale
- The localepattern
- The convertion patternpublic SqlTimestampLocaleConverter(Object defaultValue, Locale locale, String pattern, boolean locPattern)
LocaleConverter
that will return the specified default value
if a conversion error occurs.
defaultValue
- The default value to be returnedlocale
- The localepattern
- The convertion patternlocPattern
- Indicate whether the pattern is localized or notMethod Detail |
---|
protected Object parse(Object value, String pattern) throws ParseException
parse
in class DateLocaleConverter
value
- The input object to be convertedpattern
- The pattern is used for the convertion
ConversionException
- if conversion
cannot be performed successfully
ParseException
- if an error occurs parsing a String to a Number
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |