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

org.openestate.is24.restapi.xml.common.EnergyCertificateAvailability 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 EnergyCertificateAvailability. * *

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

*

 * <simpleType name="EnergyCertificateAvailability">
 *   <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *     <enumeration value="AVAILABLE"/>
 *     <enumeration value="NOT_AVAILABLE_YET"/>
 *     <enumeration value="NOT_REQUIRED"/>
 *   </restriction>
 * </simpleType>
 * 
* */ @XmlType(name = "EnergyCertificateAvailability") @XmlEnum public enum EnergyCertificateAvailability { /** * vorhanden * */ AVAILABLE, /** * noch nicht vorhanden * */ NOT_AVAILABLE_YET, /** * nicht notwendig * */ NOT_REQUIRED; public String value() { return name(); } public static EnergyCertificateAvailability fromValue(String v) { return valueOf(v); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy