Package net.fortuna.ical4j.vcard
Class VCardBuilderContext
- java.lang.Object
-
- net.fortuna.ical4j.vcard.VCardBuilderContext
-
public class VCardBuilderContext extends Object
Customize behaviour ofVCardBuilder
implementations.
-
-
Constructor Summary
Constructors Constructor Description VCardBuilderContext()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<String>
getIgnoredPropertyNames()
Supplier<List<ParameterFactory<?>>>
getParameterFactorySupplier()
Supplier<List<PropertyFactory<?>>>
getPropertyFactorySupplier()
VCardBuilderContext
withIgnoredPropertyNames(List<String> ignoredPropertyNames)
VCardBuilderContext
withParameterFactorySupplier(Supplier<List<ParameterFactory<?>>> parameterFactorySupplier)
VCardBuilderContext
withPropertyFactorySupplier(Supplier<List<PropertyFactory<?>>> propertyFactorySupplier)
-
-
-
Method Detail
-
withParameterFactorySupplier
public VCardBuilderContext withParameterFactorySupplier(Supplier<List<ParameterFactory<?>>> parameterFactorySupplier)
-
withPropertyFactorySupplier
public VCardBuilderContext withPropertyFactorySupplier(Supplier<List<PropertyFactory<?>>> propertyFactorySupplier)
-
withIgnoredPropertyNames
public VCardBuilderContext withIgnoredPropertyNames(List<String> ignoredPropertyNames)
-
getParameterFactorySupplier
public Supplier<List<ParameterFactory<?>>> getParameterFactorySupplier()
-
getPropertyFactorySupplier
public Supplier<List<PropertyFactory<?>>> getPropertyFactorySupplier()
-
-