ToAPIStringVisitor#
- class ansys.tools.variableinterop.api_serialization.ToAPIStringVisitor(save_context: ansys.tools.variableinterop.isave_context.ISaveContext | None)#
Bases:
ansys.tools.variableinterop.ivariable_visitor.IVariableValueVisitor[str]Visits values and converts them to an API string.
Overview#
Method that is called if the |
|
Method that is called if the |
|
Method that is called if the |
|
Method that is called if the |
|
Method that is called if the |
|
Method that is called if the |
|
Method that is called if the :meth:`IVariableValue.accept() method is called |
|
Method that is called if the |
|
Method that is called if the |
|
Method that is called if the |
Import detail#
from ansys.tools.variableinterop.api_serialization import ToAPIStringVisitor
Method detail#
- ToAPIStringVisitor.visit_integer(value: ansys.tools.variableinterop.scalar_values.IntegerValue) str#
Method that is called if the
IVariableValue.accept()method is called on anIntegerValuetype.- Parameters:
- value
IntegerValue IntegerValuetype to visit.
- value
- Returns:
TResult.
- ToAPIStringVisitor.visit_real(value: ansys.tools.variableinterop.scalar_values.RealValue) str#
Method that is called if the
IVariableValue.accept()method is called on aRealValuetype.- Parameters:
- value
RealValue RealValuetype to visit.
- value
- Returns:
TResult.
- ToAPIStringVisitor.visit_boolean(value: ansys.tools.variableinterop.scalar_values.BooleanValue) str#
Method that is called if the
IVariableValue.accept()method is called on aBooleanValuetype.- Parameters:
- value
BooleanValue BooleanValuetype to visit.
- value
- Returns:
TResult.
- ToAPIStringVisitor.visit_string(value: ansys.tools.variableinterop.scalar_values.StringValue) str#
Method that is called if the
IVariableValue.accept()method is called on aStringValuetype.- Parameters:
- value
StringValue StringValuetype to visit.
- value
- Returns:
TResult.
- ToAPIStringVisitor.visit_integer_array(value: ansys.tools.variableinterop.array_values.IntegerArrayValue) str#
Method that is called if the
IVariableValue.accept()method is called on anIntegerArrayValuetype.- Parameters:
- value
IntegerArrayValue IntegerArrayValuetype to visit.
- value
- Returns:
TResult.
- ToAPIStringVisitor.visit_file(value: ansys.tools.variableinterop.file_value.FileValue) str#
Method that is called if the
IVariableValue.accept()method is called on aFileValuetype.- Parameters:
- value
FileValue FileValuetype to visit.
- value
- Returns:
TResult
- ToAPIStringVisitor.visit_real_array(value: ansys.tools.variableinterop.array_values.RealArrayValue) str#
Method that is called if the :meth:`IVariableValue.accept() method is called on a
RealArrayValuetype.- Parameters:
- value
RealArrayValue RealArrayValuetype to visit.
- value
- Returns:
TResult.
- ToAPIStringVisitor.visit_boolean_array(value: ansys.tools.variableinterop.array_values.BooleanArrayValue) str#
Method that is called if the
IVariableValue.accept()method is called on aBooleanArrayValuetype.- Parameters:
- value
BooleanArrayValue BooleanArrayValuetype to visit.
- value
- Returns:
TResult.
- ToAPIStringVisitor.visit_string_array(value: ansys.tools.variableinterop.array_values.StringArrayValue) str#
Method that is called if the
IVariableValue.accept()method is called on aStringArrayValuetype.- Parameters:
- value
StringArrayValue StringArrayValuetype to visit.
- value
- Returns:
TResult.
- ToAPIStringVisitor.visit_file_array(value: ansys.tools.variableinterop.file_array_value.FileArrayValue) str#
Method that is called if the
IVariableValue.accept()method is called on aFileArrayValuetype.- Parameters:
- value
FileArrayValue FileArrayValuetype to visit.
- value
- Returns:
TResult.