/** * Axelor Business Solutions * * Copyright (C) 2016 Axelor (<http://axelor.com>). * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ package com.qas.web_2005_02; import javax.xml.bind.annotation.XmlEnum; import javax.xml.bind.annotation.XmlEnumValue; import javax.xml.bind.annotation.XmlType; /** * <p>Classe Java pour EngineIntensityType. * * <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * <p> * <pre> * <simpleType name="EngineIntensityType"> * <restriction base="{http://www.w3.org/2001/XMLSchema}string"> * <enumeration value="Exact"/> * <enumeration value="Close"/> * <enumeration value="Extensive"/> * </restriction> * </simpleType> * </pre> * */ @XmlType(name = "EngineIntensityType") @XmlEnum public enum EngineIntensityType { @XmlEnumValue("Exact") EXACT("Exact"), @XmlEnumValue("Close") CLOSE("Close"), @XmlEnumValue("Extensive") EXTENSIVE("Extensive"); private final String value; EngineIntensityType(String v) { value = v; } public String value() { return value; } public static EngineIntensityType fromValue(String v) { for (EngineIntensityType c: EngineIntensityType.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }