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

de.micromata.opengis.kml.v_2_2_0.ViewRefreshMode Maven / Gradle / Ivy


package de.micromata.opengis.kml.v_2_2_0;

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


/**
 * ViewRefreshMode
 * 

* never, onRequest, onStop, onRegion *

* * See Also: * See * * * */ @XmlType(name = "viewRefreshModeEnumType") @XmlEnum public enum ViewRefreshMode { @XmlEnumValue("never") NEVER("never"), @XmlEnumValue("onRequest") ON_REQUEST("onRequest"), @XmlEnumValue("onStop") ON_STOP("onStop"), @XmlEnumValue("onRegion") ON_REGION("onRegion"); private final String value; ViewRefreshMode(String v) { value = v; } public String value() { return value; } public static ViewRefreshMode fromValue(String v) { for (ViewRefreshMode c: ViewRefreshMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy