Uses of Class
com.atlassian.adf.util.Factory
-
Packages that use Factory Package Description com.atlassian.adf.model.mark Marks are special document elements that are used to decoratetextnodes.com.atlassian.adf.model.mark.unsupported Special marks that wrap opaque mark values that have an unrecognized type.com.atlassian.adf.model.node Nodes are elements within the Atlassian Document Format that represent presentation data for the document.com.atlassian.adf.util Utility classes that are common to ADF nodes and marks, but not generally of any interest outside of the builder implementation. -
-
Uses of Factory in com.atlassian.adf.model.mark
Methods in com.atlassian.adf.model.mark with parameters of type Factory Modifier and Type Method Description static <M extends Mark>
voidMarkParserSupport. parseMarks(Map<String,?> nodeMap, Class<M> expectedMarkClass, Factory<M> unsupportedMarkFactory, Marked<?,M> markedNode)Given a map representation of a marked node, attempts to parse any marks that are present in it. -
Uses of Factory in com.atlassian.adf.model.mark.unsupported
Fields in com.atlassian.adf.model.mark.unsupported declared as Factory Modifier and Type Field Description static Factory<TextMark>UnsupportedTextMark. FACTORY -
Uses of Factory in com.atlassian.adf.model.node
Fields in com.atlassian.adf.model.node declared as Factory Modifier and Type Field Description static Factory<Media>Media. FACTORYMethods in com.atlassian.adf.model.node that return Factory Modifier and Type Method Description protected Factory<M>AbstractMarkedContentNode. unsupportedMarkFactory()protected Factory<M>AbstractMarkedNode. unsupportedMarkFactory()protected Factory<TextMark>Text. unsupportedMarkFactory() -
Uses of Factory in com.atlassian.adf.util
Methods in com.atlassian.adf.util that return Factory Modifier and Type Method Description static <T extends Element,U extends T>
Factory<T>Factory. unsupported(Class<T> typeClass, Function<Map<String,?>,U> parser)Methods in com.atlassian.adf.util that return types with arguments of type Factory Modifier and Type Method Description static <K,T extends Element>
Map<K,Factory<? extends T>>Factory. extractLookupMap(Function<Factory<? extends T>,K> keyExtractor, Factory<? extends T>... factories)Given a group of factories, builds a lookup map that can resolve each factory'stypeClass()to the corresponding factory.Methods in com.atlassian.adf.util with parameters of type Factory Modifier and Type Method Description static <K,T extends Element>
Map<K,Factory<? extends T>>Factory. extractLookupMap(Function<Factory<? extends T>,K> keyExtractor, Factory<? extends T>... factories)Given a group of factories, builds a lookup map that can resolve each factory'stypeClass()to the corresponding factory.Method parameters in com.atlassian.adf.util with type arguments of type Factory Modifier and Type Method Description static <K,T extends Element>
Map<K,Factory<? extends T>>Factory. extractLookupMap(Function<Factory<? extends T>,K> keyExtractor, Factory<? extends T>... factories)Given a group of factories, builds a lookup map that can resolve each factory'stypeClass()to the corresponding factory.
-