public enum Rental extends Enum<Rental>
Java class for rental.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="rental"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="3+2"/> <enumeration value="4+4"/> <enumeration value="6+6"/> <enumeration value="9+9"/> <enumeration value="Transitorio"/> <enumeration value="Concordato"/> <enumeration value="Libero"/> <enumeration value="Studenti"/> </restriction> </simpleType>
Enum Constant and Description |
---|
CONCORDATO |
LIBERO |
RENT_3_PLUS_2 |
RENT_4_PLUS_4 |
RENT_6_PLUS_6 |
RENT_9_PLUS_9 |
STUDENTI |
TRANSITORIO |
Modifier and Type | Method and Description |
---|---|
static Rental |
fromValue(String v) |
String |
value() |
static Rental |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Rental[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Rental RENT_3_PLUS_2
public static final Rental RENT_4_PLUS_4
public static final Rental RENT_6_PLUS_6
public static final Rental RENT_9_PLUS_9
public static final Rental TRANSITORIO
public static final Rental CONCORDATO
public static final Rental LIBERO
public static final Rental STUDENTI
public static Rental[] values()
for (Rental c : Rental.values()) System.out.println(c);
public static Rental 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.