Package com.openinventor.meshviz.graph
Class PbNumericDisplayFormat
java.lang.Object
com.openinventor.inventor.Inventor
com.openinventor.meshviz.graph.PbBase
com.openinventor.meshviz.graph.PbNumericDisplayFormat
- All Implemented Interfaces:
Cloneable
Class to define a numeric display format.
This class is used to define a numerical display format for numerical values to be displayed. There are three formats available: automatic format, floating point format, integer format. The default format is the automatic format. The automatic format selects the best format adapted to the domain of values to be displayed. The floating point format and the integer format divide the numerical value to be displayed by the power of ten, and then display it in the selected format.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
static enum
Nested classes/interfaces inherited from class com.openinventor.inventor.Inventor
Inventor.ConstructorCommand
-
Field Summary
Fields inherited from class com.openinventor.inventor.Inventor
VERBOSE_LEVEL, ZeroHandle
-
Constructor Summary
ConstructorsConstructorDescriptionCalls PbNumericDisplayFormat(PbNumericDisplayFormat.FormatTypes.valueOf( PbNumericDisplayFormat.FormatTypes.AUTO_FORMAT.getValue() ), (int)0, (int)0).Copy constructor.Calls PbNumericDisplayFormat(type, (int)0, (int)0).PbNumericDisplayFormat
(PbNumericDisplayFormat.FormatTypes type, int tenPower) Calls PbNumericDisplayFormat(type, tenPower, (int)0).PbNumericDisplayFormat
(PbNumericDisplayFormat.FormatTypes type, int tenPower, int numDecimal) Constructor. -
Method Summary
Modifier and TypeMethodDescriptionclone()
Gets the numerical display format.void
Calls setFormat(PbNumericDisplayFormat.FormatTypes.valueOf( PbNumericDisplayFormat.FormatTypes.AUTO_FORMAT.getValue() ), (int)0, (int)0).void
Calls setFormat(type, (int)0, (int)0).void
setFormat
(PbNumericDisplayFormat.FormatTypes type, int tenPower) Calls setFormat(type, tenPower, (int)0).void
setFormat
(PbNumericDisplayFormat.FormatTypes type, int tenPower, int numDecimal) Sets the numerical display format.Methods inherited from class com.openinventor.meshviz.graph.PbBase
enableConnection, isConnectionEnabled, touch
Methods inherited from class com.openinventor.inventor.Inventor
dispose, getNativeResourceHandle
-
Constructor Details
-
PbNumericDisplayFormat
public PbNumericDisplayFormat()Calls PbNumericDisplayFormat(PbNumericDisplayFormat.FormatTypes.valueOf( PbNumericDisplayFormat.FormatTypes.AUTO_FORMAT.getValue() ), (int)0, (int)0). -
PbNumericDisplayFormat
Calls PbNumericDisplayFormat(type, tenPower, (int)0). -
PbNumericDisplayFormat
Calls PbNumericDisplayFormat(type, (int)0, (int)0). -
PbNumericDisplayFormat
public PbNumericDisplayFormat(PbNumericDisplayFormat.FormatTypes type, int tenPower, int numDecimal) Constructor. -
PbNumericDisplayFormat
Copy constructor.
-
-
Method Details
-
setFormat
public void setFormat()Calls setFormat(PbNumericDisplayFormat.FormatTypes.valueOf( PbNumericDisplayFormat.FormatTypes.AUTO_FORMAT.getValue() ), (int)0, (int)0). -
setFormat
Calls setFormat(type, (int)0, (int)0). -
setFormat
Calls setFormat(type, tenPower, (int)0). -
clone
-
getFormat
Gets the numerical display format. -
setFormat
Sets the numerical display format. If the format is AUTO_FORMAT, numDecimal and tenPower are useless. If the format is FLOAT_FORMAT, numDecimal indicates the number of decimals placed after the decimal point and tenPower is the power of ten divisor. If the format is INTEGER_FORMAT, numDecimal is useless.
-