public enum WalkerConstellationPattern extends Enum<WalkerConstellationPattern> implements Enumeration
| Enum Constant and Description | 
|---|
DELTA
Delta Walker constellations have orbital planes that span the full 360-degree range of ascending node values,
    starting from the right ascension of the ascending node of the seed satellite. 
 | 
STAR
Star Walker constellations have orbital planes that span a 180-degree range of ascending node values,
    starting from the right ascension of the ascending node of the seed satellite. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static WalkerConstellationPattern | 
getDefault()
Get the enum constant that is considered to be the default. 
 | 
static WalkerConstellationPattern | 
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 WalkerConstellationPattern | 
valueOf(String name)
Returns the enum constant of this type with the specified name. 
 | 
static WalkerConstellationPattern[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final WalkerConstellationPattern DELTA
public static final WalkerConstellationPattern STAR
public static WalkerConstellationPattern[] values()
for (WalkerConstellationPattern c : WalkerConstellationPattern.values()) System.out.println(c);
public static WalkerConstellationPattern 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 WalkerConstellationPattern getFromValue(int value)
value - a numeric value.@Nonnull public static WalkerConstellationPattern getDefault()