Uses of Class
cz.martlin.xspf.playlist.base.XSPFElement
-
Packages that use XSPFElement Package Description cz.martlin.xspf.playlist.base The all the abstract superclasses in the xspf-playlist.cz.martlin.xspf.playlist.collections The implementations of the collections, subclasses of theXSPFCollection.cz.martlin.xspf.playlist.elements The actual xspf file elements (playlist, track, ...) implementation. -
-
Uses of XSPFElement in cz.martlin.xspf.playlist.base
Classes in cz.martlin.xspf.playlist.base with type parameters of type XSPFElement Modifier and Type Class Description classXSPFCollection<E extends XSPFElement>An abstract collection of siblingXSPFElements of the same type (element name, type).static interfaceXSPFElement.XSPFCollectionFactory<E extends XSPFElement>The mapping of element toXSPFCollectioninstance.Subclasses of XSPFElement in cz.martlin.xspf.playlist.base Modifier and Type Class Description classXSPFCollection<E extends XSPFElement>An abstract collection of siblingXSPFElements of the same type (element name, type).classXSPFCommonThe abstract superclass containing the common properties of theXSPFPlaylistandXSPFTrack.Methods in cz.martlin.xspf.playlist.base with type parameters of type XSPFElement Modifier and Type Method Description protected <E extends XSPFElement>
XSPFCollection<E>XSPFElement. collection(XSPFElement.XSPFCollectionFactory<E> factory)Returns the collection (view) mapped to this element, constructed by the given factory.protected <E extends XSPFElement>
XSPFCollection<E>XSPFElement. collection(String name, XSPFElement.XSPFCollectionFactory<E> factory)Returns the collection (view) mapped to this element's child of given name, constructed by the given factory.protected <T extends XSPFElement>
TXSPFNode. createOne(String name, java.util.function.Function<Element,T> mapper)protected <T extends XSPFElement>
List<T>XSPFNode. getAll(String name, java.util.function.Function<Element,T> mapper)protected <E extends XSPFElement>
XSPFCollection<E>XSPFElement. getCollection(XSPFElement.XSPFCollectionFactory<E> factory)Returns the collection (clone) mapped to this element, constructed by the given factory.protected <E extends XSPFElement>
XSPFCollection<E>XSPFElement. getCollection(String name, XSPFElement.XSPFCollectionFactory<E> factory)Returns the collection (clone) mapped to this element's child of given name, constructed by the given factory.protected <T extends XSPFElement>
TXSPFNode. getOne(String name, java.util.function.Function<Element,T> mapper)protected <T extends XSPFElement>
TXSPFNode. one(String name, java.util.function.Function<Element,T> mapper)protected <T extends XSPFElement>
voidXSPFNode. setAll(String name, List<T> items)protected <E extends XSPFElement,C extends XSPFCollection<E>>
voidXSPFElement. setCollection(XSPFCollection<E> collection)Sets the collection (clone) mapped to this element.protected <E extends XSPFElement,C extends XSPFCollection<E>>
voidXSPFElement. setCollection(String name, XSPFCollection<E> collection)Sets the collection (clone) mapped to this element's child of given name.protected <T extends XSPFElement>
voidXSPFNode. setOne(String name, T value) -
Uses of XSPFElement in cz.martlin.xspf.playlist.collections
Subclasses of XSPFElement in cz.martlin.xspf.playlist.collections Modifier and Type Class Description classXSPFExtensionsAn collection of theXSPFExtension.classXSPFLinkclassXSPFLinksAn collection of theXSPFLinks.classXSPFMetasAn collection fo theXSPFMetas.classXSPFTracksAn collection of theXSPFTracks. -
Uses of XSPFElement in cz.martlin.xspf.playlist.elements
Subclasses of XSPFElement in cz.martlin.xspf.playlist.elements Modifier and Type Class Description classXSPFAttributionAn attribution element.classXSPFExtensionAn extension element.classXSPFLinkThe link element.classXSPFMetaThe meta element.classXSPFPlaylistThe playlist element.classXSPFTrackThe track element.
-