Package net.fortuna.ical4j.vcard
Class VCardBuilderContext
- java.lang.Object
-
- net.fortuna.ical4j.vcard.VCardBuilderContext
-
public class VCardBuilderContext extends Object
Customize behaviour ofVCardBuilderimplementations.
-
-
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()VCardBuilderContextwithIgnoredPropertyNames(List<String> ignoredPropertyNames)VCardBuilderContextwithParameterFactorySupplier(Supplier<List<ParameterFactory<?>>> parameterFactorySupplier)VCardBuilderContextwithPropertyFactorySupplier(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()
-
-