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

riv.itintegration.engagementindex._1.ResultCodeEnum Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version

package riv.itintegration.engagementindex._1;

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


/**
 * 

Java class for ResultCodeEnum. * *

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

*

 * <simpleType name="ResultCodeEnum">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="OK"/>
 *     <enumeration value="ERROR"/>
 *     <enumeration value="INFO"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "ResultCodeEnum") @XmlEnum public enum ResultCodeEnum { OK, ERROR, INFO; public String value() { return name(); } public static ResultCodeEnum fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy