Package org.purl.dc.elements
Interface DCElementsFactory
public interface DCElementsFactory
The Factory for the model.
It provides a create method for each non-abstract class of the model.
-
Field Summary
Modifier and TypeFieldDescriptionstatic final DCElementsFactory
The singleton instance of the factory. -
Method Summary
Modifier and TypeMethodDescriptionorg.purl.dc.elements.DocumentRoot
Returns a new object of class 'Document Root'.Returns a new object of class 'Element Container'.Returns a new object of class 'Simple Literal'.
-
Field Details
-
INSTANCE
The singleton instance of the factory.
-
-
Method Details
-
createElementContainer
ElementContainer createElementContainer()Returns a new object of class 'Element Container'.- Returns:
- a new object of class 'Element Container'.
-
createSimpleLiteral
SimpleLiteral createSimpleLiteral()Returns a new object of class 'Simple Literal'.- Returns:
- a new object of class 'Simple Literal'.
-
createDocumentRoot
org.purl.dc.elements.DocumentRoot createDocumentRoot()Returns a new object of class 'Document Root'.- Returns:
- a new object of class 'Document Root'.
-