public enum InstrumentKind extends java.lang.Enum<InstrumentKind>
| Enum Constant and Description |
|---|
CAMERA
Has a lens of known focal length.
|
TELESCOPE
No focal length metadata stored.
|
| Modifier and Type | Method and Description |
|---|---|
static InstrumentKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InstrumentKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InstrumentKind CAMERA
public static final InstrumentKind TELESCOPE
public static InstrumentKind[] values()
for (InstrumentKind c : InstrumentKind.values()) System.out.println(c);
public static InstrumentKind valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null