org.pubcoi.cdm.pw.ObjectFactory Maven / Gradle / Ivy
Show all versions of parlparse Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2021.05.04 at 11:27:48 PM BST
//
package org.pubcoi.cdm.pw;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.bind.annotation.adapters.NormalizedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.pubcoi.cdm.pw package.
* An ObjectFactory allows you to programatically
* construct new instances of the Java representation
* for XML content. The Java representation of XML
* content can consist of schema derived interfaces
* and classes representing the binding of schema
* type definitions, element declarations and model
* groups. Factory methods for each of these are
* provided in this class.
*
*/
@XmlRegistry
public class ObjectFactory {
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.pubcoi.cdm.pw
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link PWRootType }
*
*/
public PWRootType createPWRootType() {
return new PWRootType();
}
/**
* Create an instance of {@link RegisterEntryType }
*
*/
public RegisterEntryType createRegisterEntryType() {
return new RegisterEntryType();
}
/**
* Create an instance of {@link RegisterCategoryType }
*
*/
public RegisterCategoryType createRegisterCategoryType() {
return new RegisterCategoryType();
}
/**
* Create an instance of {@link RegisterRecordType }
*
*/
public RegisterRecordType createRegisterRecordType() {
return new RegisterRecordType();
}
/**
* Create an instance of {@link RegisterRecordType.RegisterRecordItem }
*
* @param value
* Java instance representing xml element's value.
* @return
* the new instance of {@link RegisterRecordType.RegisterRecordItem }
*/
@XmlElementDecl(namespace = "", name = "item", scope = RegisterRecordType.class)
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
public RegisterRecordType.RegisterRecordItem createRegisterRecordTypeRegisterRecordItem(String value) {
return new RegisterRecordType.RegisterRecordItem(value);
}
}