public enum RealEstateState extends Enum<RealEstateState>
Java class for RealEstateState.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="RealEstateState">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="ACTIVE"/>
<enumeration value="INACTIVE"/>
<enumeration value="TO_BE_DELETED"/>
<enumeration value="DRAFT"/>
<enumeration value="ARCHIVED"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
ACTIVE
Veröffentlichungsstatus ist aktiv.
|
ARCHIVED
Immobilie ist archiviert.
|
DRAFT
Immobilie ist im Entwurf.
|
INACTIVE
Veröffentlichungsstatus ist inaktiv.
|
TO_BE_DELETED
Immobilie wurde gelöscht.
|
| Modifier and Type | Method and Description |
|---|---|
static RealEstateState |
fromValue(String v) |
String |
value() |
static RealEstateState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RealEstateState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RealEstateState ACTIVE
public static final RealEstateState INACTIVE
public static final RealEstateState TO_BE_DELETED
public static final RealEstateState DRAFT
public static final RealEstateState ARCHIVED
public static RealEstateState[] values()
for (RealEstateState c : RealEstateState.values()) System.out.println(c);
public static RealEstateState 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 RealEstateState fromValue(String v)
Copyright © 2014 OpenEstate. All rights reserved.