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

org.docx4j.wml.STDirection Maven / Gradle / Ivy

There is a newer version: 11.5.0
Show newest version

package org.docx4j.wml;

import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 

Java class for ST_Direction. * *

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

*

 * <simpleType name="ST_Direction">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="ltr"/>
 *     <enumeration value="rtl"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ST_Direction") @XmlEnum public enum STDirection { @XmlEnumValue("ltr") LTR("ltr"), @XmlEnumValue("rtl") RTL("rtl"); private final String value; STDirection(String v) { value = v; } public String value() { return value; } public static STDirection fromValue(String v) { for (STDirection c: STDirection.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy