public enum NanuType extends Enum<NanuType> implements Enumeration
Enum Constant and Description |
---|
DECOM
Decommissioning NANU.
|
FCSTCANC
Forecast NANU for cancelling and outage for a Satellite.
|
FCSTDV
Forecast NANU for a Delta-V Maneuver on a satellite.
|
FCSTEXTD
Forecast NANU for extending the outage on a Satellite.
|
FCSTMX
Forecast NANU for maintenance on a Satellite.
|
FCSTRESCD
Forecast NANU for rescheduling an outage on a Satellite.
|
FCSTSUMM
Forecast NANU summarizing the outage for a NANU.
|
FCSTUUFN
Forecast Outage with no specified end date.
|
GENERAL
General NANU.
|
LAUNCH
Launch NANU.
|
LEAPSEC
Leap Second NANU.
|
NONE
Use this type if the outage did not result from a NANU.
|
UNUNOREF
Unusable with No Reference NANU.
|
UNUSABLE
Unusable NANU.
|
UNUSUFN
UNUsable Until Further Notice NANU.
|
USABINIT
Usable Initialization NANU.
|
Modifier and Type | Method and Description |
---|---|
static NanuType |
getDefault()
Get the enum constant that is considered to be the default.
|
static NanuType |
getFromValue(int value)
Get the enum constant that is associated with the given numeric value.
|
int |
getValue()
Get the numeric value associated with this enum constant.
|
static NanuType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NanuType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NanuType FCSTDV
public static final NanuType FCSTMX
public static final NanuType FCSTEXTD
public static final NanuType FCSTSUMM
public static final NanuType FCSTCANC
public static final NanuType FCSTRESCD
public static final NanuType FCSTUUFN
public static final NanuType UNUSUFN
public static final NanuType UNUSABLE
public static final NanuType UNUNOREF
public static final NanuType USABINIT
public static final NanuType LEAPSEC
public static final NanuType GENERAL
public static final NanuType LAUNCH
public static final NanuType DECOM
public static final NanuType NONE
public static NanuType[] values()
for (NanuType c : NanuType.values()) System.out.println(c);
public static NanuType 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 int getValue()
getValue
in interface Enumeration
@Nonnull public static NanuType getFromValue(int value)
value
- a numeric value.