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

com.netgrif.application.engine.importer.model.Appearance Maven / Gradle / Ivy

Go to download

System provides workflow management functions including user, role and data management.

There is a newer version: 6.3.3
Show newest version

package com.netgrif.application.engine.importer.model;

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


/**
 * 

Java class for appearance. * *

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

*

 * <simpleType name="appearance">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="standard"/>
 *     <enumeration value="outline"/>
 *     <enumeration value="fill"/>
 *     <enumeration value="legacy"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "appearance") @XmlEnum public enum Appearance { @XmlEnumValue("standard") STANDARD("standard"), @XmlEnumValue("outline") OUTLINE("outline"), @XmlEnumValue("fill") FILL("fill"), @XmlEnumValue("legacy") LEGACY("legacy"); private final String value; Appearance(String v) { value = v; } public String value() { return value; } public static Appearance fromValue(String v) { for (Appearance c: Appearance.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy