public static enum CelestialPoint.BodyNature extends Enum<CelestialPoint.BodyNature>
Enum Constant and Description |
---|
PHYSICAL_BODY
Physical body.
|
POINT
Point.
|
Modifier and Type | Method and Description |
---|---|
static CelestialPoint.BodyNature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CelestialPoint.BodyNature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CelestialPoint.BodyNature PHYSICAL_BODY
public static final CelestialPoint.BodyNature POINT
public static CelestialPoint.BodyNature[] values()
for (CelestialPoint.BodyNature c : CelestialPoint.BodyNature.values()) System.out.println(c);
public static CelestialPoint.BodyNature 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 © 2023 CNES. All rights reserved.