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