public enum LabelStandard extends Enum<LabelStandard>
Enum Constant and Description |
---|
PDS3
The PDS 3 data standard.
|
PDS4
The PDS 4 data standard.
|
Modifier and Type | Method and Description |
---|---|
static LabelStandard |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LabelStandard[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LabelStandard PDS3
public static final LabelStandard PDS4
public static LabelStandard[] values()
for (LabelStandard c : LabelStandard.values()) System.out.println(c);
public static LabelStandard 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 nullCopyright © 2010–2018 Planetary Data System. All rights reserved.