Package mil.nga.crs.common
Enum AxisDirectionType
- java.lang.Object
-
- java.lang.Enum<AxisDirectionType>
-
- mil.nga.crs.common.AxisDirectionType
-
- All Implemented Interfaces:
Serializable,Comparable<AxisDirectionType>
public enum AxisDirectionType extends Enum<AxisDirectionType>
Axis Direction Type- Author:
- osbornb
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTaftAWAY_FROMawayFromCLOCKWISEclockwiseCOLUMN_NEGATIVEcolumnNegativeCOLUMN_POSITIVEcolumnPositiveCOUNTER_CLOCKWISEcounterClockwiseDISPLAY_DOWNdisplayDownDISPLAY_LEFTdisplayLeftDISPLAY_RIGHTdisplayRightDISPLAY_UPdisplayUpDOWNdownEASTeastEAST_NORTH_EASTeastNorthEastEAST_SOUTH_EASTeastSouthEastFORWARDforwardFUTUREfutureGEOCENTRIC_XgeocentricXGEOCENTRIC_YgeocentricYGEOCENTRIC_ZgeocentricZNORTHnorthNORTH_EASTnorthEastNORTH_NORTH_EASTnorthNorthEastNORTH_NORTH_WESTnorthNorthWestNORTH_WESTnorthWestPASTpastPORTportROW_NEGATIVErowNegativeROW_POSITIVErowPositiveSOUTHsouthSOUTH_EASTsouthEastSOUTH_SOUTH_EASTsouthSouthEastSOUTH_SOUTH_WESTsouthSouthWestSOUTH_WESTsouthWestSTARBOARDstarboardTOWARDStowardsUNSPECIFIEDunspecifiedUPupWESTwestWEST_NORTH_WESTwestNorthWestWEST_SOUTH_WESTwestSouthWest
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetName()Get the type namestatic AxisDirectionTypegetType(String name)Get the type from the namestatic AxisDirectionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static AxisDirectionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AFT
public static final AxisDirectionType AFT
aft
-
AWAY_FROM
public static final AxisDirectionType AWAY_FROM
awayFrom
-
CLOCKWISE
public static final AxisDirectionType CLOCKWISE
clockwise
-
COLUMN_NEGATIVE
public static final AxisDirectionType COLUMN_NEGATIVE
columnNegative
-
COLUMN_POSITIVE
public static final AxisDirectionType COLUMN_POSITIVE
columnPositive
-
COUNTER_CLOCKWISE
public static final AxisDirectionType COUNTER_CLOCKWISE
counterClockwise
-
DISPLAY_DOWN
public static final AxisDirectionType DISPLAY_DOWN
displayDown
-
DISPLAY_LEFT
public static final AxisDirectionType DISPLAY_LEFT
displayLeft
-
DISPLAY_RIGHT
public static final AxisDirectionType DISPLAY_RIGHT
displayRight
-
DISPLAY_UP
public static final AxisDirectionType DISPLAY_UP
displayUp
-
DOWN
public static final AxisDirectionType DOWN
down
-
EAST
public static final AxisDirectionType EAST
east
-
EAST_NORTH_EAST
public static final AxisDirectionType EAST_NORTH_EAST
eastNorthEast
-
EAST_SOUTH_EAST
public static final AxisDirectionType EAST_SOUTH_EAST
eastSouthEast
-
FORWARD
public static final AxisDirectionType FORWARD
forward
-
FUTURE
public static final AxisDirectionType FUTURE
future
-
GEOCENTRIC_X
public static final AxisDirectionType GEOCENTRIC_X
geocentricX
-
GEOCENTRIC_Y
public static final AxisDirectionType GEOCENTRIC_Y
geocentricY
-
GEOCENTRIC_Z
public static final AxisDirectionType GEOCENTRIC_Z
geocentricZ
-
NORTH
public static final AxisDirectionType NORTH
north
-
NORTH_EAST
public static final AxisDirectionType NORTH_EAST
northEast
-
NORTH_NORTH_EAST
public static final AxisDirectionType NORTH_NORTH_EAST
northNorthEast
-
NORTH_NORTH_WEST
public static final AxisDirectionType NORTH_NORTH_WEST
northNorthWest
-
NORTH_WEST
public static final AxisDirectionType NORTH_WEST
northWest
-
PAST
public static final AxisDirectionType PAST
past
-
PORT
public static final AxisDirectionType PORT
port
-
ROW_NEGATIVE
public static final AxisDirectionType ROW_NEGATIVE
rowNegative
-
ROW_POSITIVE
public static final AxisDirectionType ROW_POSITIVE
rowPositive
-
SOUTH
public static final AxisDirectionType SOUTH
south
-
SOUTH_EAST
public static final AxisDirectionType SOUTH_EAST
southEast
-
SOUTH_SOUTH_EAST
public static final AxisDirectionType SOUTH_SOUTH_EAST
southSouthEast
-
SOUTH_SOUTH_WEST
public static final AxisDirectionType SOUTH_SOUTH_WEST
southSouthWest
-
SOUTH_WEST
public static final AxisDirectionType SOUTH_WEST
southWest
-
STARBOARD
public static final AxisDirectionType STARBOARD
starboard
-
TOWARDS
public static final AxisDirectionType TOWARDS
towards
-
UNSPECIFIED
public static final AxisDirectionType UNSPECIFIED
unspecified
-
UP
public static final AxisDirectionType UP
up
-
WEST
public static final AxisDirectionType WEST
west
-
WEST_NORTH_WEST
public static final AxisDirectionType WEST_NORTH_WEST
westNorthWest
-
WEST_SOUTH_WEST
public static final AxisDirectionType WEST_SOUTH_WEST
westSouthWest
-
-
Method Detail
-
values
public static AxisDirectionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AxisDirectionType c : AxisDirectionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AxisDirectionType valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getName
public String getName()
Get the type name- Returns:
- type name
-
getType
public static AxisDirectionType getType(String name)
Get the type from the name- Parameters:
name- type name- Returns:
- type
-
-