
org.cloudgraph.config.ObjectFactory Maven / Gradle / Ivy
Show all versions of cloudgraph-config Show documentation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.09.11 at 04:42:56 PM MST
//
package org.cloudgraph.config;
import javax.xml.bind.JAXBElement;
import javax.xml.bind.annotation.XmlElementDecl;
import javax.xml.bind.annotation.XmlRegistry;
import javax.xml.namespace.QName;
/**
* This object contains factory methods for each
* Java content interface and Java element interface
* generated in the org.cloudgraph.config 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 {
private final static QName _Configuration_QNAME = new QName("http://www.cloudgraph.org/config", "Configuration");
private final static QName _PredefinedField_QNAME = new QName("http://www.cloudgraph.org/config", "PredefinedField");
private final static QName _KeyField_QNAME = new QName("http://www.cloudgraph.org/config", "KeyField");
/**
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: org.cloudgraph.config
*
*/
public ObjectFactory() {
}
/**
* Create an instance of {@link Table }
*
*/
public Table createTable() {
return new Table();
}
/**
* Create an instance of {@link RowKeyField }
*
*/
public RowKeyField createRowKeyField() {
return new RowKeyField();
}
/**
* Create an instance of {@link UserDefinedField }
*
*/
public UserDefinedField createUserDefinedField() {
return new UserDefinedField();
}
/**
* Create an instance of {@link Property }
*
*/
public Property createProperty() {
return new Property();
}
/**
* Create an instance of {@link HashAlgorithm }
*
*/
public HashAlgorithm createHashAlgorithm() {
return new HashAlgorithm();
}
/**
* Create an instance of {@link DataGraph }
*
*/
public DataGraph createDataGraph() {
return new DataGraph();
}
/**
* Create an instance of {@link PredefinedField }
*
*/
public PredefinedField createPredefinedField() {
return new PredefinedField();
}
/**
* Create an instance of {@link Configuration }
*
*/
public Configuration createConfiguration() {
return new Configuration();
}
/**
* Create an instance of {@link ColumnKeyField }
*
*/
public ColumnKeyField createColumnKeyField() {
return new ColumnKeyField();
}
/**
* Create an instance of {@link CloudGraphConfiguration }
*
*/
public CloudGraphConfiguration createCloudGraphConfiguration() {
return new CloudGraphConfiguration();
}
/**
* Create an instance of {@link ColumnKeyModel }
*
*/
public ColumnKeyModel createColumnKeyModel() {
return new ColumnKeyModel();
}
/**
* Create an instance of {@link RowKeyModel }
*
*/
public RowKeyModel createRowKeyModel() {
return new RowKeyModel();
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link Configuration }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://www.cloudgraph.org/config", name = "Configuration")
public JAXBElement createConfiguration(Configuration value) {
return new JAXBElement(_Configuration_QNAME, Configuration.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link PredefinedField }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://www.cloudgraph.org/config", name = "PredefinedField")
public JAXBElement createPredefinedField(PredefinedField value) {
return new JAXBElement(_PredefinedField_QNAME, PredefinedField.class, null, value);
}
/**
* Create an instance of {@link JAXBElement }{@code <}{@link KeyField }{@code >}}
*
*/
@XmlElementDecl(namespace = "http://www.cloudgraph.org/config", name = "KeyField")
public JAXBElement createKeyField(KeyField value) {
return new JAXBElement(_KeyField_QNAME, KeyField.class, null, value);
}
}