public enum MeteoSource extends Enum<MeteoSource>
| Enum Constant and Description |
|---|
DME_DME |
GNSS |
INS |
INVALID |
RESERVED |
VOR_DME |
| Modifier and Type | Method and Description |
|---|---|
static MeteoSource |
find(int source) |
static MeteoSource |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MeteoSource[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MeteoSource INVALID
public static final MeteoSource INS
public static final MeteoSource GNSS
public static final MeteoSource DME_DME
public static final MeteoSource VOR_DME
public static final MeteoSource RESERVED
public static MeteoSource[] values()
for (MeteoSource c : MeteoSource.values()) System.out.println(c);
public static MeteoSource 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 static MeteoSource find(int source)
Copyright © 2020. All rights reserved.