Package net.fortuna.ical4j.vcard
Class AbstractFactoryRegistry<T>
- java.lang.Object
-
- net.fortuna.ical4j.vcard.AbstractFactoryRegistry<T>
-
- Direct Known Subclasses:
ParameterFactoryRegistry
,PropertyFactoryRegistry
@Deprecated public abstract class AbstractFactoryRegistry<T> extends Object
Deprecated.Created by fortuna on 23/09/14.
-
-
Constructor Summary
Constructors Constructor Description AbstractFactoryRegistry(ServiceLoader<T> factoryLoader)
Deprecated.
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Deprecated Methods Modifier and Type Method Description protected abstract boolean
factorySupports(T factory, String name)
Deprecated.T
getFactory(String name)
Deprecated.void
register(String extendedName, T factory)
Deprecated.register factories via META-INF/services
-
-
-
Constructor Detail
-
AbstractFactoryRegistry
public AbstractFactoryRegistry(ServiceLoader<T> factoryLoader)
Deprecated.
-
-
Method Detail
-
getFactory
public final T getFactory(String name)
Deprecated.- Parameters:
name
- a string representation of a content identifier- Returns:
- a factory for creating content of the resolved type
-
register
@Deprecated public final void register(String extendedName, T factory)
Deprecated.register factories via META-INF/services- Parameters:
extendedName
- a non-standard name to registerfactory
- a factory for creating instances of the non-standard type
-
-