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

org.openestate.is24.restapi.xml.common.EnergyCertificateCreationDate Maven / Gradle / Ivy

Go to download

OpenEstate-IS24-REST is a client library for the REST-Webservice of ImmobilienScout24.de written in Java.

There is a newer version: 0.5
Show newest version

package org.openestate.is24.restapi.xml.common;

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


/**
 * 

Java class for EnergyCertificateCreationDate. * *

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

*

 * <simpleType name="EnergyCertificateCreationDate">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="NOT_APPLICABLE"/>
 *     <enumeration value="BEFORE_01_MAY_2014"/>
 *     <enumeration value="FROM_01_MAY_2014"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "EnergyCertificateCreationDate") @XmlEnum public enum EnergyCertificateCreationDate { /** * keine Angabe * */ NOT_APPLICABLE, /** * Ausgestellt vor dem 01.05.2014 * */ BEFORE_01_MAY_2014, /** * Ausgestellt ab dem 01.05.2014 * */ FROM_01_MAY_2014; public String value() { return name(); } public static EnergyCertificateCreationDate fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy