public enum OfficeRentDuration extends Enum<OfficeRentDuration>
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>
| Enum Constant and Description |
|---|
LONG_TERM
langfristig
|
MONTHLY
monatsweise
|
WEEKLY
wochenweise
|
YEARLY
1 bis 2 Jahre
|
| Modifier and Type | Method and Description |
|---|---|
static OfficeRentDuration |
fromValue(String v) |
String |
value() |
static OfficeRentDuration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OfficeRentDuration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OfficeRentDuration WEEKLY
public static final OfficeRentDuration MONTHLY
public static final OfficeRentDuration YEARLY
public static final OfficeRentDuration LONG_TERM
public static OfficeRentDuration[] values()
for (OfficeRentDuration c : OfficeRentDuration.values()) System.out.println(c);
public static OfficeRentDuration 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 OfficeRentDuration fromValue(String v)
Copyright © 2014 OpenEstate. All rights reserved.