public enum CoveredEnumeration extends Enum<CoveredEnumeration>
Java class for CoveredEnumeration.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="CoveredEnumeration">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="indoors"/>
<enumeration value="outdoors"/>
<enumeration value="covered"/>
<enumeration value="mixed"/>
<enumeration value="unknown"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COVERED |
INDOORS |
MIXED |
OUTDOORS |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static CoveredEnumeration |
fromValue(String v) |
String |
value() |
static CoveredEnumeration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoveredEnumeration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoveredEnumeration INDOORS
public static final CoveredEnumeration OUTDOORS
public static final CoveredEnumeration COVERED
public static final CoveredEnumeration MIXED
public static final CoveredEnumeration UNKNOWN
public static CoveredEnumeration[] values()
for (CoveredEnumeration c : CoveredEnumeration.values()) System.out.println(c);
public static CoveredEnumeration 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 CoveredEnumeration fromValue(String v)
Copyright © 2018 Entur AS. All rights reserved.