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

generated.LocalUnitSymbol Maven / Gradle / Ivy

//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.7 
// See https://eclipse-ee4j.github.io/jaxb-ri 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2024.08.30 at 01:38:13 PM UTC 
//


package generated;

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


/**
 * 

Java class for LocalUnitSymbol. * *

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

 * <simpleType name="LocalUnitSymbol">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}NMTOKEN">
 *     <enumeration value="AMP"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "LocalUnitSymbol", namespace = "") @XmlEnum public enum LocalUnitSymbol { AMP; public String value() { return name(); } public static LocalUnitSymbol fromValue(String v) { return valueOf(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy