public enum Location extends Enum<Location>
Enum Constant and Description |
---|
DE_FKB |
DE_FRA |
UNRECOGNIZED |
US_LAS |
US_LASDEV |
Modifier and Type | Method and Description |
---|---|
static Location |
fromId(String id) |
static Location |
fromValue(String v) |
String |
getDescription() |
String |
getId() |
String |
toString() |
static Location |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Location[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Location DE_FKB
public static final Location DE_FRA
public static final Location US_LAS
public static final Location US_LASDEV
public static final Location UNRECOGNIZED
public static Location[] values()
for (Location c : Location.values()) System.out.println(c);
public static Location 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 getId()
public String getDescription()
Copyright © 2009-2016 The Apache Software Foundation. All Rights Reserved.