Class PatternConverter
java.lang.Object
org.apache.commons.beanutils2.converters.AbstractConverter<Pattern>
org.apache.commons.beanutils2.converters.PatternConverter
- Since:
- 2.0.0
- 
Constructor SummaryConstructorsConstructorDescriptionConstruct aPatternConverter that throws aConversionExceptionif an error occurs.PatternConverter(Pattern defaultValue) Constructs aConverterthat will return the specified default value if a conversion error occurs.
- 
Method SummaryModifier and TypeMethodDescriptionprotected <T> TconvertToType(Class<T> type, Object value) Converts the specified input object into an output object of the specified type.Gets the default type thisConverterhandles.Methods inherited from class org.apache.commons.beanutils2.converters.AbstractConverterconversionException, convert, convertArray, convertToString, getDefault, handleError, handleMissing, isUseDefault, setDefaultValue, toLowerCase, toString, toString, toTrim
- 
Constructor Details- 
PatternConverterpublic PatternConverter()Construct aPatternConverter that throws aConversionExceptionif an error occurs.
- 
PatternConverterConstructs aConverterthat will return the specified default value if a conversion error occurs.- Parameters:
- defaultValue- The default value to be returned if the value to be converted is missing or an error occurs converting the value.
 
 
- 
- 
Method Details- 
convertToTypeConverts the specified input object into an output object of the specified type.- Specified by:
- convertToTypein class- AbstractConverter<Pattern>
- Type Parameters:
- T- Target type of the conversion.
- Parameters:
- type- Data type to which this value should be converted.
- value- The String property value to convert.
- Returns:
- A Patternwhich represents the compiled configuration property.
- Throws:
- NullPointerException- If the value is null.
- PatternSyntaxException- If the regular expression- Stringprovided is malformed.
- Throwable- if an error occurs converting to the specified type
 
- 
getDefaultTypeGets the default type thisConverterhandles.- Specified by:
- getDefaultTypein class- AbstractConverter<Pattern>
- Returns:
- The default type this Converterhandles.
- Since:
- 2.0.0
 
 
-