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

de.micromata.opengis.kml.v_2_2_0.gx.FlyToMode Maven / Gradle / Ivy

Go to download

This is JavaAPIforKMml, Micromata's library for use with applications that want to parse, generate and operate on KML. It is an implementation of the OGC KML 2.2 standard. It is written entirely in Java and makes heavy use of JAXB.

There is a newer version: 3.0.4
Show newest version

package de.micromata.opengis.kml.v_2_2_0.gx;

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


/**
 * 

Java class for flyToModeEnumType. *

*

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

* {@code * * * * * * * } * */ @XmlType(name = "flyToModeEnumType") @XmlEnum public enum FlyToMode { @XmlEnumValue("bounce") BOUNCE("bounce"), @XmlEnumValue("smooth") SMOOTH("smooth"); private final String value; FlyToMode(String v) { value = v; } public String value() { return value; } public static FlyToMode fromValue(String v) { for (FlyToMode c: FlyToMode.values()) { if (c.value.equals(v)) { return c; } } throw new IllegalArgumentException(v); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy