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

de.micromata.opengis.kml.v_2_2_0.RefreshMode 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;


/**
 * RefreshMode
 * 

* onChange, onInterval, onExpire *

* * See Also: * See * * * */ @XmlType(name = "refreshModeEnumType") @XmlEnum public enum RefreshMode { @XmlEnumValue("onChange") ON_CHANGE("onChange"), @XmlEnumValue("onInterval") ON_INTERVAL("onInterval"), @XmlEnumValue("onExpire") ON_EXPIRE("onExpire"); private final String value; RefreshMode(String v) { value = v; } public String value() { return value; } public static RefreshMode fromValue(String v) { for (RefreshMode c: RefreshMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy