org.plasma.metamodel.ConcurentDataFlavor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plasma-metamodel Show documentation
Show all versions of plasma-metamodel Show documentation
The Plasma Metamodel Module
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.07.01 at 02:31:06 PM MST
//
package org.plasma.metamodel;
import jakarta.xml.bind.annotation.XmlEnum;
import jakarta.xml.bind.annotation.XmlEnumValue;
import jakarta.xml.bind.annotation.XmlType;
/**
* Java class for ConcurentDataFlavor.
*
*
The following schema fragment specifies the expected content contained within this class.
*
* <simpleType name="ConcurentDataFlavor">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="version"/>
* <enumeration value="user"/>
* <enumeration value="time"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "ConcurentDataFlavor")
@XmlEnum
public enum ConcurentDataFlavor {
/**
* Indicates the data is an integral version number, typically incremented for every successful update of the owning entity.
*
*/
@XmlEnumValue("version")
VERSION("version"),
/**
* Indicates the data represents a system username, typically reset to the current system user on successful update of the owning entity.
*
*/
@XmlEnumValue("user")
USER("user"),
/**
* Indicates the data is temporal in nature typically reset to the system data or time for every successful update of the owning entity.
*
*/
@XmlEnumValue("time")
TIME("time");
private final String value;
ConcurentDataFlavor(String v) {
value = v;
}
public String value() {
return value;
}
public static ConcurentDataFlavor fromValue(String v) {
for (ConcurentDataFlavor c: ConcurentDataFlavor.values()) {
if (c.value.equals(v)) {
return c;
}
}
throw new IllegalArgumentException(v);
}
}