com.intuit.ipp.data.EntityStatusEnum Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ipp-v3-java-data Show documentation
Show all versions of ipp-v3-java-data Show documentation
IPP Java V3 DevKit Data project - FMS Entities generation
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.06.28 at 02:49:33 PM PDT
//
package com.intuit.ipp.data;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlEnumValue;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for EntityStatusEnum.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="EntityStatusEnum">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="Deleted"/>
* <enumeration value="Voided"/>
* <enumeration value="Draft"/>
* <enumeration value="Pending"/>
* <enumeration value="InTransit"/>
* <enumeration value="Synchronized"/>
* <enumeration value="SyncError"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "EntityStatusEnum")
@XmlEnum
public enum EntityStatusEnum {
/**
* Object has been deleted but not yet purged from database
*
*/
@XmlEnumValue("Deleted")
DELETED("Deleted"),
/**
* Object has been voided from an accounting perspective
*
*/
@XmlEnumValue("Voided")
VOIDED("Voided"),
/**
* Object has been voided from an accounting perspective
*
*/
@XmlEnumValue("Draft")
DRAFT("Draft"),
/**
* Object has been written to the cloud but is pending sync to QuickBooks Desktop
*
*/
@XmlEnumValue("Pending")
PENDING("Pending"),
/**
* Object is currently being written to QuickBooks during an active synchronization, cloud will not permit writes to the entity
*
*/
@XmlEnumValue("InTransit")
IN_TRANSIT("InTransit"),
/**
* Object is synchronized with QuickBooks data, this is the normal state in QBO as there is no synchronization needed in QBO
*
*/
@XmlEnumValue("Synchronized")
SYNCHRONIZED("Synchronized"),
/**
* Object failed to sync to QuickBooks
*
*/
@XmlEnumValue("SyncError")
SYNC_ERROR("SyncError");
private final String value;
EntityStatusEnum(String v) {
value = v;
}
public String value() {
return value;
}
public static EntityStatusEnum fromValue(String v) {
for (EntityStatusEnum c: EntityStatusEnum.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}