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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.ChartBackgroundDirection Maven / Gradle / Ivy

The newest version!

package com.palominolabs.crm.sf.soap.jaxwsstub.metadata;

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


/**
 * 

Java class for ChartBackgroundDirection. * *

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

*

 * <simpleType name="ChartBackgroundDirection">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="TopToBottom"/>
 *     <enumeration value="LeftToRight"/>
 *     <enumeration value="Diagonal"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ChartBackgroundDirection") @XmlEnum public enum ChartBackgroundDirection { @XmlEnumValue("TopToBottom") TOP_TO_BOTTOM("TopToBottom"), @XmlEnumValue("LeftToRight") LEFT_TO_RIGHT("LeftToRight"), @XmlEnumValue("Diagonal") DIAGONAL("Diagonal"); private final String value; ChartBackgroundDirection(String v) { value = v; } public String value() { return value; } public static ChartBackgroundDirection fromValue(String v) { for (ChartBackgroundDirection c: ChartBackgroundDirection.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy