Uses of Interface
pro.verron.officestamper.api.ObjectResolver
Packages that use ObjectResolver
Package
Description
This package provides the core functionality for docxstamper.
This package provides presets and recommended configurations for docxstamper library users;
-
Uses of ObjectResolver in org.wickedsource.docxstamper
Methods in org.wickedsource.docxstamper that return types with arguments of type ObjectResolverModifier and TypeMethodDescriptionDocxStamperConfiguration.getResolvers()Deprecated, for removal: This API element is subject to removal in a future version.Retrieves the list of resolvers.Methods in org.wickedsource.docxstamper with parameters of type ObjectResolverModifier and TypeMethodDescriptionDocxStamperConfiguration.addResolver(ObjectResolver resolver) Deprecated, for removal: This API element is subject to removal in a future version.Adds a resolver to the list of resolvers in the `DocxStamperConfiguration` object.Method parameters in org.wickedsource.docxstamper with type arguments of type ObjectResolverModifier and TypeMethodDescriptionDocxStamperConfiguration.setResolvers(List<ObjectResolver> resolvers) Deprecated, for removal: This API element is subject to removal in a future version.Sets the resolvers for resolving objects in the DocxStamperConfiguration. -
Uses of ObjectResolver in pro.verron.officestamper.api
Classes in pro.verron.officestamper.api that implement ObjectResolverModifier and TypeClassDescriptionclassThis is an abstract class that provides a generic implementation for resolving objects to strings.Methods in pro.verron.officestamper.api that return types with arguments of type ObjectResolverModifier and TypeMethodDescriptionOfficeStamperConfiguration.getResolvers()Retrieves the list of ObjectResolvers.Methods in pro.verron.officestamper.api with parameters of type ObjectResolverModifier and TypeMethodDescriptionOfficeStamperConfiguration.addResolver(ObjectResolver resolver) Adds an ObjectResolver to the OfficeStamperConfiguration.Method parameters in pro.verron.officestamper.api with type arguments of type ObjectResolverModifier and TypeMethodDescriptionOfficeStamperConfiguration.setResolvers(List<ObjectResolver> resolvers) Sets the list of object resolvers for the OfficeStamper configuration. -
Uses of ObjectResolver in pro.verron.officestamper.core
Constructor parameters in pro.verron.officestamper.core with type arguments of type ObjectResolverModifierConstructorDescriptionObjectResolverRegistry(List<ObjectResolver> resolvers) A registry for object resolvers. -
Uses of ObjectResolver in pro.verron.officestamper.preset
Classes in pro.verron.officestamper.preset that implement ObjectResolverModifier and TypeClassDescriptionstatic classDeprecated.will not be removed, but will be made package-privateMethods in pro.verron.officestamper.preset that return ObjectResolverModifier and TypeMethodDescriptionstatic ObjectResolverResolvers.fallback()Returns an instance ofObjectResolverthat can act as a fallback resolver.static ObjectResolverResolvers.image()Returns an instance ofObjectResolverthat resolvesImageto an actual image in the resulting .docx document.static ObjectResolverResolvers.isoDate()Returns an instance ofObjectResolverthat resolvesLocalDatevalues to a formatted string using theDateTimeFormatter.ISO_LOCAL_DATEpattern.static ObjectResolverResolvers.isoDate(DateTimeFormatter formatter) Returns an instance ofObjectResolverthat resolvesLocalDatevalues to a formatted string using the givenDateTimeFormatterpattern.static ObjectResolverResolvers.isoDateTime()Returns an instance ofObjectResolverthat resolvesLocalDateTimevalues to a formatted string using theDateTimeFormatter.ISO_LOCAL_DATE_TIMEpattern.static ObjectResolverResolvers.isoDateTime(DateTimeFormatter formatter) Returns an instance ofObjectResolverthat resolvesLocalDateTimevalues to a formatted string using the givenDateTimeFormatterpattern.static ObjectResolverResolvers.isoTime()Returns an instance ofObjectResolverthat resolvesLocalTimevalues to a formatted string using theDateTimeFormatter.ISO_LOCAL_TIMEpattern.static ObjectResolverResolvers.isoTime(DateTimeFormatter formatter) Returns an instance ofObjectResolverthat resolvesLocalTimevalues to a formatted string using the givenDateTimeFormatterpattern.static ObjectResolverResolvers.legacyDate()Returns an instance ofObjectResolverthat resolvesDatevalues to a formatted string using the "dd.MM.yyyy" pattern.static ObjectResolverResolvers.legacyDate(DateTimeFormatter formatter) Returns an instance ofObjectResolverthat resolvesDatevalues to a formatted string using the givenDateTimeFormatterpattern.static ObjectResolverResolvers.nullToDefault(String value) Returns an instance ofObjectResolverthat resolves null objects by creating a run with a default text value.static ObjectResolverResolvers.nullToEmpty()Returns an instance ofObjectResolverthat replaces null values with an empty string.static ObjectResolverResolvers.nullToPlaceholder()Returns an instance ofObjectResolverthat resolves null objects by not replacing their expression.