public static final class ElevationMethodType.Member.Enum
extends org.apache.xmlbeans.StringEnumAbstractBase
enum.toString(); // returns the string value of the enum enum.intValue(); // returns an int value, useful for switches // e.g., case Enum.INT_MAP Enum.forString(s); // returns the enum value for a string Enum.forInt(i); // returns the enum value for an intEnumeration objects are immutable singleton objects that can be compared using == object equality. They have no public constructor. See the constants defined within this class for all the valid values.
| Modifier and Type | Field and Description |
|---|---|
(package private) static int |
INT_ALT |
(package private) static int |
INT_DRB |
(package private) static int |
INT_FOS |
(package private) static int |
INT_GPH |
(package private) static int |
INT_GPS |
(package private) static int |
INT_MAP |
(package private) static int |
INT_MIB |
(package private) static int |
INT_PGE |
(package private) static int |
INT_PHG |
(package private) static int |
INT_SAT |
(package private) static int |
INT_SON |
(package private) static int |
INT_SUR |
static org.apache.xmlbeans.StringEnumAbstractBase.Table |
table |
| Modifier and Type | Method and Description |
|---|---|
static ElevationMethodType.Member.Enum |
forInt(int i)
Returns the enum value corresponding to an int, or null if none.
|
static ElevationMethodType.Member.Enum |
forString(java.lang.String s)
Returns the enum value for a string, or null if none.
|
static final int INT_MAP
static final int INT_PGE
static final int INT_MIB
static final int INT_DRB
static final int INT_PHG
static final int INT_ALT
static final int INT_SAT
static final int INT_SON
static final int INT_GPH
static final int INT_GPS
static final int INT_SUR
static final int INT_FOS
public static final org.apache.xmlbeans.StringEnumAbstractBase.Table table
public static ElevationMethodType.Member.Enum forString(java.lang.String s)
public static ElevationMethodType.Member.Enum forInt(int i)
Copyright © 2015–2018 52north.org. All rights reserved.