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

net.sf.dynamicreports.report.defaults.xml.XmlHorizontalAlignment Maven / Gradle / Ivy

Go to download

DynamicReports is an open source Java reporting library based on JasperReports. It allows to create dynamic report designs and it doesn't need a visual report designer. You can very quickly create reports and produce documents that can be displayed, printed or exported into many popular formats such as PDF, Excel, Word and others.

There is a newer version: 6.20.1
Show newest version
//
// 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: 2017.01.27 at 10:05:07 AM CET 
//


package net.sf.dynamicreports.report.defaults.xml;

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


/**
 * 

Java class for HorizontalAlignment. * *

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

*

 * <simpleType name="HorizontalAlignment">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="LEFT"/>
 *     <enumeration value="CENTER"/>
 *     <enumeration value="RIGHT"/>
 *     <enumeration value="JUSTIFIED"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "HorizontalAlignment") @XmlEnum public enum XmlHorizontalAlignment { LEFT, CENTER, RIGHT, JUSTIFIED; public String value() { return name(); } public static XmlHorizontalAlignment fromValue(String v) { return valueOf(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy