blob: b8df69a03019cfce95cd368423a1adb9769005e8 [file] [log] [blame]
/*
* Copyright (c) 2014, 2020 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 v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Martin Vojtek - 2.6.0 - initial implementation
package org.eclipse.persistence.testing.perf.largexml.bigpo.line_status_code;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* <p>Java class for LineStatusCodeContentType.
*
* <p>The following schema fragment specifies the expected content contained within this class.
* <p>
* <pre>
* &lt;simpleType name="LineStatusCodeContentType">
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}normalizedString">
* &lt;enumeration value="Added"/>
* &lt;enumeration value="Cancelled"/>
* &lt;enumeration value="Disputed"/>
* &lt;enumeration value="NoStatus"/>
* &lt;enumeration value="Revised"/>
* &lt;/restriction>
* &lt;/simpleType>
* </pre>
*
*/
@XmlType(name = "LineStatusCodeContentType")
@XmlEnum
public enum LineStatusCodeContentType {
/**
*
* <pre>
* &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;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"&gt;Line has been added.&lt;/CodeName&gt;
* </pre>
*
*
*/
@XmlEnumValue("Added")
ADDED("Added"),
/**
*
* <pre>
* &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;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"&gt;Line has been cancelled.&lt;/CodeName&gt;
* </pre>
*
*
*/
@XmlEnumValue("Cancelled")
CANCELLED("Cancelled"),
/**
*
* <pre>
* &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;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"&gt;Line is disputed.&lt;/CodeName&gt;
* </pre>
*
*
*/
@XmlEnumValue("Disputed")
DISPUTED("Disputed"),
/**
*
* <pre>
* &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;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"&gt;Line has no status.&lt;/CodeName&gt;
* </pre>
*
*
*/
@XmlEnumValue("NoStatus")
NO_STATUS("NoStatus"),
/**
*
* <pre>
* &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;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"&gt;Line has been revised.&lt;/CodeName&gt;
* </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);
}
}