public class UonPartParserBuilder extends UonParserBuilder
UonPartParser
.psb
Constructor and Description |
---|
UonPartParserBuilder()
Constructor, default settings.
|
UonPartParserBuilder(PropertyStore ps)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
UonPartParserBuilder |
add(Map<String,Object> properties)
Adds multiple configuration properties on this object.
|
UonPartParserBuilder |
addTo(String name,
Object value)
Adds a value to a SET or LIST property.
|
UonPartParserBuilder |
addTo(String name,
String key,
Object value)
Adds or overwrites a value to a SET, LIST, or MAP property.
|
UonPartParserBuilder |
apply(PropertyStore copyFrom)
Copies the settings from the specified property store into this builder.
|
UonPartParserBuilder |
beanClassVisibility(Visibility value)
Configuration property: Minimum bean class visibility.
|
UonPartParserBuilder |
beanConstructorVisibility(Visibility value)
Configuration property: Minimum bean constructor visibility.
|
UonPartParserBuilder |
beanDictionary(boolean append,
Object... values)
Configuration property: Bean dictionary.
|
UonPartParserBuilder |
beanDictionary(Class<?>... values)
Configuration property: Bean dictionary.
|
UonPartParserBuilder |
beanDictionary(Object... values)
Configuration property: Bean dictionary.
|
UonPartParserBuilder |
beanDictionaryRemove(Object... values)
Configuration property: Bean dictionary.
|
UonPartParserBuilder |
beanFieldVisibility(Visibility value)
Configuration property: Minimum bean field visibility.
|
UonPartParserBuilder |
beanFilters(boolean append,
Object... values)
Configuration property: Bean filters.
|
UonPartParserBuilder |
beanFilters(Class<?>... values)
Configuration property: Bean filters.
|
UonPartParserBuilder |
beanFilters(Object... values)
Configuration property: Bean filters.
|
UonPartParserBuilder |
beanFiltersRemove(Object... values)
Configuration property: Bean filters.
|
UonPartParserBuilder |
beanMapPutReturnsOldValue()
Configuration property: BeanMap.put() returns old property value.
|
UonPartParserBuilder |
beanMapPutReturnsOldValue(boolean value)
Configuration property: BeanMap.put() returns old property value.
|
UonPartParserBuilder |
beanMethodVisibility(Visibility value)
Configuration property: Minimum bean method visibility.
|
UonPartParserBuilder |
beansRequireDefaultConstructor()
Configuration property: Beans require no-arg constructors.
|
UonPartParserBuilder |
beansRequireDefaultConstructor(boolean value)
Configuration property: Beans require no-arg constructors.
|
UonPartParserBuilder |
beansRequireSerializable()
Configuration property: Beans require Serializable interface.
|
UonPartParserBuilder |
beansRequireSerializable(boolean value)
Configuration property: Beans require Serializable interface.
|
UonPartParserBuilder |
beansRequireSettersForGetters()
Configuration property: Beans require setters for getters.
|
UonPartParserBuilder |
beansRequireSettersForGetters(boolean value)
Configuration property: Beans require setters for getters.
|
UonPartParserBuilder |
beansRequireSomeProperties(boolean value)
Configuration property: Beans require at least one property.
|
UonPartParserBuilder |
beanTypePropertyName(String value)
Configuration property: Bean type property name.
|
UonPartParser |
build()
Build the object.
|
UonPartParserBuilder |
debug()
Configuration property: Debug mode.
|
UonPartParserBuilder |
decoding(boolean value)
Configuration property: Decode
|
UonPartParserBuilder |
fileCharset(String value)
Configuration property: File charset.
|
UonPartParserBuilder |
ignoreInvocationExceptionsOnGetters()
Configuration property: Ignore invocation errors on getters.
|
UonPartParserBuilder |
ignoreInvocationExceptionsOnGetters(boolean value)
Configuration property: Ignore invocation errors on getters.
|
UonPartParserBuilder |
ignoreInvocationExceptionsOnSetters()
Configuration property: Ignore invocation errors on setters.
|
UonPartParserBuilder |
ignoreInvocationExceptionsOnSetters(boolean value)
Configuration property: Ignore invocation errors on setters.
|
UonPartParserBuilder |
ignorePropertiesWithoutSetters(boolean value)
Configuration property: Ignore properties without setters.
|
UonPartParserBuilder |
ignoreUnknownBeanProperties()
Configuration property: Ignore unknown properties.
|
UonPartParserBuilder |
ignoreUnknownBeanProperties(boolean value)
Configuration property: Ignore unknown properties.
|
UonPartParserBuilder |
ignoreUnknownNullBeanProperties(boolean value)
Configuration property: Ignore unknown properties with null values.
|
<T> UonPartParserBuilder |
implClass(Class<T> interfaceClass,
Class<? extends T> implClass)
Configuration property: Implementation classes.
|
UonPartParserBuilder |
implClasses(Map<String,Class<?>> values)
Configuration property: Implementation classes.
|
UonPartParserBuilder |
inputStreamCharset(String value)
Configuration property: Input stream charset.
|
UonPartParserBuilder |
listener(Class<? extends ParserListener> value)
Configuration property: Parser listener.
|
UonPartParserBuilder |
locale(Locale value)
Configuration property: Locale.
|
UonPartParserBuilder |
mediaType(MediaType value)
Configuration property: Media type.
|
UonPartParserBuilder |
notBeanClasses(boolean append,
Object... values)
Configuration property: Bean class exclusions.
|
UonPartParserBuilder |
notBeanClasses(Class<?>... values)
Configuration property: Bean class exclusions.
|
UonPartParserBuilder |
notBeanClasses(Object... values)
Configuration property: Bean class exclusions.
|
UonPartParserBuilder |
notBeanClassesRemove(Object... values)
Configuration property: Bean class exclusions.
|
UonPartParserBuilder |
notBeanPackages(boolean append,
Object... values)
Configuration property: Bean package exclusions.
|
UonPartParserBuilder |
notBeanPackages(Object... values)
Configuration property: Bean package exclusions.
|
UonPartParserBuilder |
notBeanPackages(String... values)
Configuration property: Bean package exclusions.
|
UonPartParserBuilder |
notBeanPackagesRemove(Object... values)
Configuration property: Bean package exclusions.
|
UonPartParserBuilder |
pojoSwaps(boolean append,
Object... values)
Configuration property: POJO swaps.
|
UonPartParserBuilder |
pojoSwaps(Class<?>... values)
Configuration property: POJO swaps.
|
UonPartParserBuilder |
pojoSwaps(Object... values)
Configuration property: POJO swaps.
|
UonPartParserBuilder |
pojoSwapsRemove(Object... values)
Configuration property: POJO swaps.
|
UonPartParserBuilder |
removeFrom(String name,
Object value)
Removes a value from a SET, LIST, or MAP property.
|
UonPartParserBuilder |
set(boolean append,
String name,
Object value)
Sets or adds to a SET or LIST property.
|
UonPartParserBuilder |
set(Map<String,Object> properties)
Sets multiple configuration properties on this object.
|
UonPartParserBuilder |
set(String name,
Object value)
Sets a configuration property on this object.
|
UonPartParserBuilder |
sortProperties()
Configuration property: Sort bean properties.
|
UonPartParserBuilder |
sortProperties(boolean value)
Configuration property: Sort bean properties.
|
UonPartParserBuilder |
strict()
Configuration property: Strict mode.
|
UonPartParserBuilder |
strict(boolean value)
Configuration property: Strict mode.
|
UonPartParserBuilder |
timeZone(TimeZone value)
Configuration property: TimeZone.
|
UonPartParserBuilder |
trimStrings()
Configuration property: Trim parsed strings.
|
UonPartParserBuilder |
trimStrings(boolean value)
Configuration property: Trim parsed strings.
|
UonPartParserBuilder |
useInterfaceProxies(boolean value)
Configuration property: Use interface proxies.
|
UonPartParserBuilder |
useJavaBeanIntrospector()
Configuration property: Use Java Introspector.
|
UonPartParserBuilder |
useJavaBeanIntrospector(boolean value)
Configuration property: Use Java Introspector.
|
autoCloseStreams, autoCloseStreams, decoding, unbuffered, unbuffered, validateEnd, validateEnd
fileCharset, inputStreamCharset
debug, excludeProperties, excludeProperties, excludeProperties, includeProperties, includeProperties, includeProperties, propertyNamer
build, getPropertyStore, getPropertyStoreBuilder
public UonPartParserBuilder()
public UonPartParserBuilder(PropertyStore ps)
ps
- The initial configuration settings for this builder.public UonPartParser build()
ContextBuilder
build
in class UonParserBuilder
public UonPartParserBuilder decoding(boolean value)
UonParserBuilder
Specify
decoding
in class UonParserBuilder
value
- The new value for this property.
UonParser
, UrlEncodingParser
public UonPartParserBuilder fileCharset(String value)
ParserBuilder
The character set to use for reading Files
from the file system.
fileCharset
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder inputStreamCharset(String value)
ParserBuilder
The character set to use for converting InputStreams
and byte arrays to readers.
inputStreamCharset
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder listener(Class<? extends ParserListener> value)
ParserBuilder
Class used to listen for errors and warnings that occur during parsing.
listener
in class UonParserBuilder
value
- The new value for this property.public UonPartParserBuilder strict(boolean value)
ParserBuilder
If
strict
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder strict()
ParserBuilder
Shortcut for calling strict(
.
strict
in class UonParserBuilder
public UonPartParserBuilder trimStrings(boolean value)
ParserBuilder
If String.trim()
before being added to
the POJO.
trimStrings
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder trimStrings()
ParserBuilder
Shortcut for calling trimStrings(
.
trimStrings
in class UonParserBuilder
public UonPartParserBuilder beansRequireDefaultConstructor(boolean value)
BeanContextBuilder
If
Otherwise, the bean will be serialized as a string using the Object.toString()
method.
beansRequireDefaultConstructor
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder beansRequireDefaultConstructor()
BeanContextBuilder
Shortcut for calling beansRequireDefaultConstructor(
.
beansRequireDefaultConstructor
in class UonParserBuilder
public UonPartParserBuilder beansRequireSerializable(boolean value)
BeanContextBuilder
If Serializable
interface to be considered a bean.
Otherwise, the bean will be serialized as a string using the Object.toString()
method.
beansRequireSerializable
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder beansRequireSerializable()
BeanContextBuilder
Shortcut for calling beansRequireSerializable(
.
beansRequireSerializable
in class UonParserBuilder
public UonPartParserBuilder beansRequireSettersForGetters(boolean value)
BeanContextBuilder
If
Otherwise, they will be ignored.
beansRequireSettersForGetters
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder beansRequireSettersForGetters()
BeanContextBuilder
Shortcut for calling beansRequireSettersForGetters(
.
beansRequireSettersForGetters
in class UonParserBuilder
public UonPartParserBuilder beansRequireSomeProperties(boolean value)
BeanContextBuilder
If
Otherwise, the bean will be serialized as a string using the Object.toString()
method.
beansRequireSomeProperties
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder beanMapPutReturnsOldValue(boolean value)
BeanContextBuilder
If BeanMap.put()
method will return old property
values.
Otherwise, it returns
beanMapPutReturnsOldValue
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder beanMapPutReturnsOldValue()
BeanContextBuilder
Shortcut for calling beanMapPutReturnsOldValue(
.
beanMapPutReturnsOldValue
in class UonParserBuilder
public UonPartParserBuilder beanConstructorVisibility(Visibility value)
BeanContextBuilder
Only look for constructors with the specified minimum visibility.
beanConstructorVisibility
in class UonParserBuilder
value
- The new value for this property.
Visibility.PUBLIC
.public UonPartParserBuilder beanClassVisibility(Visibility value)
BeanContextBuilder
Classes are not considered beans unless they meet the minimum visibility requirements.
For example, if the visibility is PUBLIC
and the bean class is
beanClassVisibility
in class UonParserBuilder
value
- The new value for this property.
Visibility.PUBLIC
.public UonPartParserBuilder beanFieldVisibility(Visibility value)
BeanContextBuilder
Only look for bean fields with the specified minimum visibility.
beanFieldVisibility
in class UonParserBuilder
value
- The new value for this property.
Visibility.PUBLIC
.public UonPartParserBuilder beanMethodVisibility(Visibility value)
BeanContextBuilder
Only look for bean methods with the specified minimum visibility.
beanMethodVisibility
in class UonParserBuilder
value
- The new value for this property.
Visibility.PUBLIC
public UonPartParserBuilder useJavaBeanIntrospector(boolean value)
BeanContextBuilder
Using the built-in Java bean introspector will not pick up fields or non-standard getters/setters.
@Bean
annotations will be ignored if you enable this setting.
useJavaBeanIntrospector
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder useJavaBeanIntrospector()
BeanContextBuilder
Shortcut for calling useJavaBeanIntrospector(
.
useJavaBeanIntrospector
in class UonParserBuilder
public UonPartParserBuilder useInterfaceProxies(boolean value)
BeanContextBuilder
If InvocationHandler
if there is no other way of instantiating them.
useInterfaceProxies
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder ignoreUnknownBeanProperties(boolean value)
BeanContextBuilder
If
Otherwise, a BeanRuntimeException
is thrown.
ignoreUnknownBeanProperties
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder ignoreUnknownBeanProperties()
BeanContextBuilder
Shortcut for calling ignoreUnknownBeanProperties(
.
ignoreUnknownBeanProperties
in class UonParserBuilder
public UonPartParserBuilder ignoreUnknownNullBeanProperties(boolean value)
BeanContextBuilder
If
Otherwise, a BeanRuntimeException
is thrown.
ignoreUnknownNullBeanProperties
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder ignorePropertiesWithoutSetters(boolean value)
BeanContextBuilder
If
Otherwise, a BeanRuntimeException
is thrown.
ignorePropertiesWithoutSetters
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder ignoreInvocationExceptionsOnGetters(boolean value)
BeanContextBuilder
If BeanRuntimeException
is thrown.
ignoreInvocationExceptionsOnGetters
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder ignoreInvocationExceptionsOnGetters()
BeanContextBuilder
Shortcut for calling ignoreInvocationExceptionsOnGetters(
.
ignoreInvocationExceptionsOnGetters
in class UonParserBuilder
public UonPartParserBuilder ignoreInvocationExceptionsOnSetters(boolean value)
BeanContextBuilder
If
Otherwise, a BeanRuntimeException
is thrown.
ignoreInvocationExceptionsOnSetters
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder ignoreInvocationExceptionsOnSetters()
BeanContextBuilder
Shortcut for calling ignoreInvocationExceptionsOnSetters(
.
ignoreInvocationExceptionsOnSetters
in class UonParserBuilder
public UonPartParserBuilder sortProperties(boolean value)
BeanContextBuilder
When
sortProperties
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder sortProperties()
BeanContextBuilder
Shortcut for calling sortProperties(
.
sortProperties
in class UonParserBuilder
public UonPartParserBuilder notBeanPackages(Object... values)
BeanContextBuilder
notBeanPackages
in class UonParserBuilder
values
- The values to add to this property.
public UonPartParserBuilder notBeanPackages(String... values)
BeanContextBuilder
notBeanPackages
in class UonParserBuilder
values
- The values to add to this property.public UonPartParserBuilder notBeanPackages(boolean append, Object... values)
BeanContextBuilder
When specified, the current list of ignore packages are appended to.
notBeanPackages
in class UonParserBuilder
append
- If values
- The new values for this property.
public UonPartParserBuilder notBeanPackagesRemove(Object... values)
BeanContextBuilder
notBeanPackagesRemove
in class UonParserBuilder
values
- public UonPartParserBuilder notBeanClasses(Object... values)
BeanContextBuilder
List of classes that should not be treated as beans even if they appear to be bean-like.
Not-bean classes are converted to Strings
during serialization.
notBeanClasses
in class UonParserBuilder
values
- The values to add to this property.
public UonPartParserBuilder notBeanClasses(Class<?>... values)
BeanContextBuilder
List of classes that should not be treated as beans even if they appear to be bean-like.
Not-bean classes are converted to Strings
during serialization.
notBeanClasses
in class UonParserBuilder
values
- The values to add to this property.public UonPartParserBuilder notBeanClasses(boolean append, Object... values)
BeanContextBuilder
Not-bean classes are converted to Strings
during serialization even if they appear to be
bean-like.
notBeanClasses
in class UonParserBuilder
append
- If values
- The new value for this property.
public UonPartParserBuilder notBeanClassesRemove(Object... values)
BeanContextBuilder
notBeanClassesRemove
in class UonParserBuilder
values
- The values to remove from this property.
public UonPartParserBuilder beanFilters(Object... values)
BeanContextBuilder
This is a programmatic equivalent to the @Bean
annotation.
It's useful when you want to use the Bean annotation functionality, but you don't have the ability to alter
the bean classes.
beanFilters
in class UonParserBuilder
values
- The values to add to this property.
@Bean.typeName()
.
BeanDictionaryList
containing a collection of bean classes with type name annotations.
BeanDictionaryMap
containing a mapping of type names to classes without type name annotations.
public UonPartParserBuilder beanFilters(Class<?>... values)
BeanContextBuilder
Same as BeanContextBuilder.beanFilters(Object...)
but takes in an array of classes.
beanFilters
in class UonParserBuilder
values
- The values to add to this property.public UonPartParserBuilder beanFilters(boolean append, Object... values)
BeanContextBuilder
Same as BeanContextBuilder.beanFilters(Object...)
but allows you to optionally overwrite the previous value.
beanFilters
in class UonParserBuilder
append
- If values
- The new values for this property.
@Bean.typeName()
.
BeanDictionaryList
containing a collection of bean classes with type name annotations.
BeanDictionaryMap
containing a mapping of type names to classes without type name annotations.
public UonPartParserBuilder beanFiltersRemove(Object... values)
BeanContextBuilder
Removes from the list of classes that make up the bean filters in this bean context.
beanFiltersRemove
in class UonParserBuilder
values
- The values to remove from this property.
@Bean.typeName()
.
BeanDictionaryList
containing a collection of bean classes with type name annotations.
BeanDictionaryMap
containing a mapping of type names to classes without type name annotations.
public UonPartParserBuilder pojoSwaps(Object... values)
BeanContextBuilder
pojoSwaps
in class UonParserBuilder
values
- The values to add to this property.
PojoSwap
.
SurrogateSwap
.
public UonPartParserBuilder pojoSwaps(Class<?>... values)
BeanContextBuilder
pojoSwaps
in class UonParserBuilder
values
- The values to add to this property.public UonPartParserBuilder pojoSwaps(boolean append, Object... values)
BeanContextBuilder
POJO swaps are used to "swap out" non-serializable classes with serializable equivalents during serialization, and "swap in" the non-serializable class during parsing.
An example of a POJO swap would be a Calendar
object that gets swapped out for an ISO8601 string.
pojoSwaps
in class UonParserBuilder
append
- If values
- The new value for this property.
public UonPartParserBuilder pojoSwapsRemove(Object... values)
BeanContextBuilder
pojoSwapsRemove
in class UonParserBuilder
values
- The values to remove from this property.
PojoSwap
.
SurrogateSwap
.
public UonPartParserBuilder implClasses(Map<String,Class<?>> values)
BeanContextBuilder
For interfaces and abstract classes this method can be used to specify an implementation class for the interface/abstract class so that instances of the implementation class are used when instantiated (e.g. during a parse).
implClasses
in class UonParserBuilder
values
- The new value for this property.public <T> UonPartParserBuilder implClass(Class<T> interfaceClass, Class<? extends T> implClass)
BeanContextBuilder
implClass
in class UonParserBuilder
T
- The class type of the interface.interfaceClass
- The interface class.implClass
- The implementation class.public UonPartParserBuilder beanDictionary(Object... values)
BeanContextBuilder
Adds to the list of classes that make up the bean dictionary in this bean context.
beanDictionary
in class UonParserBuilder
values
- The values to add to this property.public UonPartParserBuilder beanDictionary(Class<?>... values)
BeanContextBuilder
Same as BeanContextBuilder.beanDictionary(Object...)
but takes in an array of classes.
beanDictionary
in class UonParserBuilder
values
- The values to add to this property.public UonPartParserBuilder beanDictionary(boolean append, Object... values)
BeanContextBuilder
Same as BeanContextBuilder.beanDictionary(Object...)
but allows you to optionally overwrite the previous value.
beanDictionary
in class UonParserBuilder
append
- If values
- The new values for this property.public UonPartParserBuilder beanDictionaryRemove(Object... values)
BeanContextBuilder
Removes from the list of classes that make up the bean dictionary in this bean context.
beanDictionaryRemove
in class UonParserBuilder
values
- The values to remove from this property.public UonPartParserBuilder beanTypePropertyName(String value)
BeanContextBuilder
This specifies the name of the bean property used to store the dictionary name of a bean type so that the parser knows the data type to reconstruct.
beanTypePropertyName
in class UonParserBuilder
value
- The new value for this property.
public UonPartParserBuilder locale(Locale value)
BeanContextBuilder
Specifies a default locale for serializer and parser sessions.
locale
in class UonParserBuilder
value
- The new value for this property.public UonPartParserBuilder timeZone(TimeZone value)
BeanContextBuilder
timeZone
in class UonParserBuilder
value
- The new value for this property.public UonPartParserBuilder mediaType(MediaType value)
BeanContextBuilder
Specifies a default media type value for serializer and parser sessions.
mediaType
in class UonParserBuilder
value
- The new value for this property.public UonPartParserBuilder debug()
BeanContextBuilder
Shortcut for calling debug(
.
debug
in class UonParserBuilder
public UonPartParserBuilder set(String name, Object value)
ContextBuilder
set
in class UonParserBuilder
name
- The property name.value
- The property value.PropertyStoreBuilder.set(String, Object)
public UonPartParserBuilder set(boolean append, String name, Object value)
ContextBuilder
set
in class UonParserBuilder
append
- If name
- The property name.value
- The property value.PropertyStoreBuilder.set(String, Object)
public UonPartParserBuilder set(Map<String,Object> properties)
ContextBuilder
set
in class UonParserBuilder
properties
- The properties to set on this class.PropertyStoreBuilder.set(java.util.Map)
public UonPartParserBuilder add(Map<String,Object> properties)
ContextBuilder
add
in class UonParserBuilder
properties
- The properties to set on this class.PropertyStoreBuilder.add(java.util.Map)
public UonPartParserBuilder addTo(String name, Object value)
ContextBuilder
addTo
in class UonParserBuilder
name
- The property name.value
- The new value to add to the SET property.public UonPartParserBuilder addTo(String name, String key, Object value)
ContextBuilder
addTo
in class UonParserBuilder
name
- The property name.key
- The property value map key.value
- The property value map value.public UonPartParserBuilder removeFrom(String name, Object value)
ContextBuilder
removeFrom
in class UonParserBuilder
name
- The property name.value
- The property value in the SET property.public UonPartParserBuilder apply(PropertyStore copyFrom)
ContextBuilder
apply
in class UonParserBuilder
copyFrom
- The factory whose settings are being copied.Copyright © 2018 Apache. All rights reserved.