
org.openestate.is24.restapi.xml.common.OfficeRentDuration Maven / Gradle / Ivy
package org.openestate.is24.restapi.xml.common;
import javax.xml.bind.annotation.XmlEnum;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for OfficeRentDuration.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <simpleType name="OfficeRentDuration">
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <enumeration value="WEEKLY"/>
* <enumeration value="MONTHLY"/>
* <enumeration value="YEARLY"/>
* <enumeration value="LONG_TERM"/>
* </restriction>
* </simpleType>
*
*
*/
@XmlType(name = "OfficeRentDuration")
@XmlEnum
public enum OfficeRentDuration {
/**
* wochenweise
*
*/
WEEKLY,
/**
* monatsweise
*
*/
MONTHLY,
/**
* 1 bis 2 Jahre
*
*/
YEARLY,
/**
* langfristig
*
*/
LONG_TERM;
public String value() {
return name();
}
public static OfficeRentDuration fromValue(String v) {
return valueOf(v);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy