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

com.palominolabs.crm.sf.soap.jaxwsstub.metadata.ChartLegendPosition 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 ChartLegendPosition. * *

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

*

 * <simpleType name="ChartLegendPosition">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="Right"/>
 *     <enumeration value="Bottom"/>
 *     <enumeration value="OnChart"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ChartLegendPosition") @XmlEnum public enum ChartLegendPosition { @XmlEnumValue("Right") RIGHT("Right"), @XmlEnumValue("Bottom") BOTTOM("Bottom"), @XmlEnumValue("OnChart") ON_CHART("OnChart"); private final String value; ChartLegendPosition(String v) { value = v; } public String value() { return value; } public static ChartLegendPosition fromValue(String v) { for (ChartLegendPosition c: ChartLegendPosition.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy