public static enum SpacePoint.Representation extends Enum<SpacePoint.Representation>
Enum Constant and Description |
---|
Cartesian |
Cylindrical |
Spherical |
Modifier and Type | Method and Description |
---|---|
static SpacePoint.Representation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpacePoint.Representation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpacePoint.Representation Cartesian
public static final SpacePoint.Representation Cylindrical
public static final SpacePoint.Representation Spherical
public static SpacePoint.Representation[] values()
for (SpacePoint.Representation c : SpacePoint.Representation.values()) System.out.println(c);
public static SpacePoint.Representation 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 nullJas4pp 1.5 © Java Analysis Studio for Particle Physics