public enum PropertyType extends Enum<PropertyType>
Java class for propertyType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="propertyType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="bauernhof"/>
<enumeration value="baugrund"/>
<enumeration value="buero"/>
<enumeration value="einfamilienhaus"/>
<enumeration value="garage"/>
<enumeration value="gastgewerbeobjekt"/>
<enumeration value="geschaeft"/>
<enumeration value="gewerbehalle"/>
<enumeration value="kulturgrund"/>
<enumeration value="reihenhaus"/>
<enumeration value="wald"/>
<enumeration value="wohnung"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BAUERNHOF |
BAUGRUND |
BUERO |
EINFAMILIENHAUS |
GARAGE |
GASTGEWERBEOBJEKT |
GESCHAEFT |
GEWERBEHALLE |
KULTURGRUND |
REIHENHAUS |
WALD |
WOHNUNG |
| Modifier and Type | Method and Description |
|---|---|
static PropertyType |
fromValue(String v) |
String |
value() |
static PropertyType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropertyType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropertyType BAUERNHOF
public static final PropertyType BAUGRUND
public static final PropertyType BUERO
public static final PropertyType EINFAMILIENHAUS
public static final PropertyType GARAGE
public static final PropertyType GASTGEWERBEOBJEKT
public static final PropertyType GESCHAEFT
public static final PropertyType GEWERBEHALLE
public static final PropertyType KULTURGRUND
public static final PropertyType REIHENHAUS
public static final PropertyType WALD
public static final PropertyType WOHNUNG
public static PropertyType[] values()
for (PropertyType c : PropertyType.values()) System.out.println(c);
public static PropertyType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static PropertyType fromValue(String v)
Copyright © 2017 OpenEstate. All rights reserved.