API Documentation > Classes > Class CoordAxis
Class CoordAxis

package com.ptc.pfc.pfcBase;

public class
CoordAxis
implements
jxenum


Description
This enumerated type specifies the axes of a coordinate system.
Field Summary
static final int
_COORD_AXIS_X
Integer value of enum value "COORD_AXIS_X"
The X-axis of the coordinate system.
static final CoordAxis
COORD_AXIS_X
Object value of enum value "COORD_AXIS_X"
The X-axis of the coordinate system.
static final int
_COORD_AXIS_Y
Integer value of enum value "COORD_AXIS_Y"
The Y-axis of the coordinate system.
static final CoordAxis
COORD_AXIS_Y
Object value of enum value "COORD_AXIS_Y"
The Y-axis of the coordinate system.
static final int
_COORD_AXIS_Z
Integer value of enum value "COORD_AXIS_Z"
The Z-axis of the coordinate system.
static final CoordAxis
COORD_AXIS_Z
Object value of enum value "COORD_AXIS_Z"
The Z-axis of the coordinate system.
static final int
_CoordAxis_null
Enum null value.
Field Summary
static final int
Integer value of enum value "COORD_AXIS_X"
The X-axis of the coordinate system.
static final CoordAxis
Object value of enum value "COORD_AXIS_X"
The X-axis of the coordinate system.
static final int
Integer value of enum value "COORD_AXIS_Y"
The Y-axis of the coordinate system.
static final CoordAxis
Object value of enum value "COORD_AXIS_Y"
The Y-axis of the coordinate system.
static final int
Integer value of enum value "COORD_AXIS_Z"
The Z-axis of the coordinate system.
static final CoordAxis
Object value of enum value "COORD_AXIS_Z"
The Z-axis of the coordinate system.
static final int
Enum null value.
Method Summary
static CoordAxis
FromInt (int value)
Creates enum object from an integer.
static CoordAxis
FromInt (Integer value)
Creates enum object from an integer object.
int
Returns enum object value as an integer.
Method Detail
getValue
int
getValue
()
Returns enum object value as an integer.
Returns:
Integer enum value.
FromInt
static CoordAxis
FromInt
(int value)
Creates enum object from an integer.
Parameters:
value
Input integer value.
Returns:
Enum value object.
FromInt
static CoordAxis
FromInt
(Integer value)
Creates enum object from an integer object.
Parameters:
value
Input integer object.
Returns:
Enum value object.
Was this helpful?