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