Package com.helger.regrep.query
Class ObjectFactory
- java.lang.Object
-
- com.helger.regrep.query.ObjectFactory
-
@CodingStyleguideUnaware public class ObjectFactory extends Object
This object contains factory methods for each Java content interface and Java element interface generated in the com.helger.regrep.query 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.
This class was annotated by ph-jaxb-plugin -Xph-annotate
-
-
Field Summary
Fields Modifier and Type Field Description static QName_ResponseOption_QNAME
-
Constructor Summary
Constructors Constructor Description ObjectFactory()Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: com.helger.regrep.query
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description QueryExceptionTypecreateQueryExceptionType()Create an instance ofQueryExceptionTypeQueryRequestcreateQueryRequest()Create an instance ofQueryRequestQueryResponsecreateQueryResponse()Create an instance ofQueryResponsejakarta.xml.bind.JAXBElement<ResponseOptionType>createResponseOption(ResponseOptionType value)ResponseOptionTypecreateResponseOptionType()Create an instance ofResponseOptionType
-
-
-
Field Detail
-
_ResponseOption_QNAME
public static final QName _ResponseOption_QNAME
-
-
Method Detail
-
createResponseOptionType
@Nonnull public ResponseOptionType createResponseOptionType()
Create an instance ofResponseOptionType- Returns:
- the new instance of
ResponseOptionTypeThe created ResponseOptionType object and nevernull.
-
createQueryRequest
@Nonnull public QueryRequest createQueryRequest()
Create an instance ofQueryRequest- Returns:
- the new instance of
QueryRequestThe created QueryRequest object and nevernull.
-
createQueryResponse
@Nonnull public QueryResponse createQueryResponse()
Create an instance ofQueryResponse- Returns:
- the new instance of
QueryResponseThe created QueryResponse object and nevernull.
-
createQueryExceptionType
@Nonnull public QueryExceptionType createQueryExceptionType()
Create an instance ofQueryExceptionType- Returns:
- the new instance of
QueryExceptionTypeThe created QueryExceptionType object and nevernull.
-
createResponseOption
@Nonnull public jakarta.xml.bind.JAXBElement<ResponseOptionType> createResponseOption(@Nullable ResponseOptionType value)
- Parameters:
value- Java instance representing xml element's value.- Returns:
- the new instance of
JAXBElement<ResponseOptionType>The created JAXBElement and nevernull.
-
-