public enum InteriorQuality extends Enum<InteriorQuality>
Java class for InteriorQuality.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="InteriorQuality"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="NO_INFORMATION"/> <enumeration value="LUXURY"/> <enumeration value="SOPHISTICATED"/> <enumeration value="NORMAL"/> <enumeration value="SIMPLE"/> </restriction> </simpleType>
Enum Constant and Description |
---|
LUXURY
Luxus
|
NO_INFORMATION
Keine Angabe
|
NORMAL
Normal
|
SIMPLE
Einfach
|
SOPHISTICATED
Gehoben
|
Modifier and Type | Method and Description |
---|---|
static InteriorQuality |
fromValue(String v) |
String |
value() |
static InteriorQuality |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InteriorQuality[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InteriorQuality NO_INFORMATION
public static final InteriorQuality LUXURY
public static final InteriorQuality SOPHISTICATED
public static final InteriorQuality NORMAL
public static final InteriorQuality SIMPLE
public static InteriorQuality[] values()
for (InteriorQuality c : InteriorQuality.values()) System.out.println(c);
public static InteriorQuality 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 InteriorQuality fromValue(String v)
Copyright © 2014 OpenEstate. All rights reserved.