/******************************************************************************* * Copyright (c) 2014, 2015 Oracle and/or its affiliates. All rights reserved. * This program and the accompanying materials are made available under the * terms of the Eclipse Public License v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Martin Vojtek - 2.6.0 - initial implementation ******************************************************************************/ package org.eclipse.persistence.testing.perf.largexml.bigpo.line_status_code; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for LineStatusCodeContentType. * * <p>The following schema fragment specifies the expected content contained within this class. * <p> * <pre> * <simpleType name="LineStatusCodeContentType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}normalizedString"> * <enumeration value="Added"/> * <enumeration value="Cancelled"/> * <enumeration value="Disputed"/> * <enumeration value="NoStatus"/> * <enumeration value="Revised"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "LineStatusCodeContentType") @XmlEnum public enum LineStatusCodeContentType { /** * * <pre> * <?xml version="1.0" encoding="UTF-8"?><CodeName xmlns="urn:oasis:names:specification:ubl:schema:xsd:LineStatusCode-1.0" xmlns:ccts="urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema">Line has been added.</CodeName> * </pre> * * */ @XmlEnumValue("Added") ADDED("Added"), /** * * <pre> * <?xml version="1.0" encoding="UTF-8"?><CodeName xmlns="urn:oasis:names:specification:ubl:schema:xsd:LineStatusCode-1.0" xmlns:ccts="urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema">Line has been cancelled.</CodeName> * </pre> * * */ @XmlEnumValue("Cancelled") CANCELLED("Cancelled"), /** * * <pre> * <?xml version="1.0" encoding="UTF-8"?><CodeName xmlns="urn:oasis:names:specification:ubl:schema:xsd:LineStatusCode-1.0" xmlns:ccts="urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema">Line is disputed.</CodeName> * </pre> * * */ @XmlEnumValue("Disputed") DISPUTED("Disputed"), /** * * <pre> * <?xml version="1.0" encoding="UTF-8"?><CodeName xmlns="urn:oasis:names:specification:ubl:schema:xsd:LineStatusCode-1.0" xmlns:ccts="urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema">Line has no status.</CodeName> * </pre> * * */ @XmlEnumValue("NoStatus") NO_STATUS("NoStatus"), /** * * <pre> * <?xml version="1.0" encoding="UTF-8"?><CodeName xmlns="urn:oasis:names:specification:ubl:schema:xsd:LineStatusCode-1.0" xmlns:ccts="urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema">Line has been revised.</CodeName> * </pre> * * */ @XmlEnumValue("Revised") REVISED("Revised"); private final String value; LineStatusCodeContentType(String v) { value = v; } public String value() { return value; } public static LineStatusCodeContentType fromValue(String v) { for (LineStatusCodeContentType c: LineStatusCodeContentType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }