IntegerValue#
- class IntegerValue(value)#
Bases: numpy.int64, ansys.tools.variableinterop.variable_value.IVariableValue
Stores a value as an IntegerValue variable type.
Overview#
Invoke the visitor pattern of this object using the passed-in visitor |
|
Convert the value to an API string. |
|
Convert this |
|
Convert the value to a formatted string. |
Variable type of the object. |
Create an |
Import detail#
from ansys.tools.variableinterop.scalar_values import IntegerValue
Property detail#
- property IntegerValue.variable_type: VariableType#
Variable type of the object.
- Returns:
VariableTypeVariable type of the object.
Method detail#
- IntegerValue.accept(visitor: ansys.tools.variableinterop.ivariable_visitor.IVariableValueVisitor[ansys.tools.variableinterop.ivariable_visitor.T]) ansys.tools.variableinterop.ivariable_visitor.T#
Invoke the visitor pattern of this object using the passed-in visitor implementation.
- Parameters:
- visitor
IVariableValueVisitor Visitor object to call.
- visitor
- Returns:
TResults of the visitor invocation.
- IntegerValue.to_api_string(context: ansys.tools.variableinterop.isave_context.ISaveContext | None = None) str#
Convert the value to an API string.
- Returns:
strString appropriate for use in files and APIs.
- IntegerValue.to_real_value() RealValue#
Convert this
IntegerValuetype to aRealValuetype.Because a
RealValuetype is a 64-bit floating point number, it has a 52-bit mantissa. That means that a portion of the range of 64-bitIntegerValuetypes cannot be completely accurately represented byRealValuetypes. This conversion is sometimes lossy forIntegerValuetypes of sufficient magnitude.- Returns:
RealValueRealValuetype with the same numeric value as theIntegerValuetype.
- static IntegerValue.from_api_string(value: str) IntegerValue#
Create an
IntegerValuetype from an API string.Leading and trailing whitespace is ignored. Values that can be correctly parsed as floating-point numbers are parsed in that manner and then rounded to integers. When rounding, values with a 5 in the tenths place are rounded away from zero.
- Parameters:
- value
str String to parse.
- value
- Returns:
IntegerValueIntegerValuetype parsed from the API string.