All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.plasma.runtime.DataAccessProviderName Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2018.03.20 at 04:25:57 PM MST 
//


package org.plasma.runtime;

import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for DataAccessProviderName. * *

The following schema fragment specifies the expected content contained within this class. *

*

 * <simpleType name="DataAccessProviderName">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="JDBC"/>
 *     <enumeration value="JDO"/>
 *     <enumeration value="JPA"/>
 *     <enumeration value="ACCUMULO"/>
 *     <enumeration value="CASSANDRA"/>
 *     <enumeration value="HBASE"/>
 *     <enumeration value="HYPERTABLE"/>
 *     <enumeration value="MONGODB"/>
 *     <enumeration value="COUCHBASE"/>
 *     <enumeration value="DYNAMODB"/>
 *     <enumeration value="RIAK"/>
 *     <enumeration value="REDIS"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "DataAccessProviderName") @XmlEnum public enum DataAccessProviderName { JDBC, JDO, JPA, ACCUMULO, CASSANDRA, HBASE, HYPERTABLE, MONGODB, COUCHBASE, DYNAMODB, RIAK, REDIS; public String value() { return name(); } public static DataAccessProviderName fromValue(String v) { return valueOf(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy