public enum Kitchen extends Enum<Kitchen>
Java class for kitchen.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="kitchen"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="Abitabile"/> <enumeration value="Semi abitabile"/> <enumeration value="Cucinotto"/> <enumeration value="Angolo cottura"/> </restriction> </simpleType>
Enum Constant and Description |
---|
ABITABILE |
ANGOLO_COTTURA |
CUCINOTTO |
SEMI_ABITABILE |
Modifier and Type | Method and Description |
---|---|
static Kitchen |
fromValue(String v) |
String |
value() |
static Kitchen |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Kitchen[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Kitchen ABITABILE
public static final Kitchen SEMI_ABITABILE
public static final Kitchen CUCINOTTO
public static final Kitchen ANGOLO_COTTURA
public static Kitchen[] values()
for (Kitchen c : Kitchen.values()) System.out.println(c);
public static Kitchen 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()
Copyright © 2015 OpenEstate. All rights reserved.