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

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

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

*

 * <simpleType name="LiveChatButtonPresentation">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="Slide"/>
 *     <enumeration value="Fade"/>
 *     <enumeration value="Appear"/>
 *     <enumeration value="Custom"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "LiveChatButtonPresentation") @XmlEnum public enum LiveChatButtonPresentation { @XmlEnumValue("Slide") SLIDE("Slide"), @XmlEnumValue("Fade") FADE("Fade"), @XmlEnumValue("Appear") APPEAR("Appear"), @XmlEnumValue("Custom") CUSTOM("Custom"); private final String value; LiveChatButtonPresentation(String v) { value = v; } public String value() { return value; } public static LiveChatButtonPresentation fromValue(String v) { for (LiveChatButtonPresentation c: LiveChatButtonPresentation.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy