VariableValueToJsonVisitor#

class ansys.tools.variableinterop.variable_value_json_visitors.VariableValueToJsonVisitor#

Bases: ansys.tools.variableinterop.IVariableValueVisitor

Visitor that returns a JSON serializable representation of an IVariableValue.

Overview#

visit_file

Method that is called if the IVariableValue.accept() method is called on

visit_file_array

Method that is called if the IVariableValue.accept() method is called on

visit_integer

Method that is called if the IVariableValue.accept() method is called on

visit_real

Method that is called if the IVariableValue.accept() method is called on

visit_boolean

Method that is called if the IVariableValue.accept() method is called on

visit_string

Method that is called if the IVariableValue.accept() method is called on

visit_integer_array

Method that is called if the IVariableValue.accept() method is called on

visit_real_array

Method that is called if the :meth:`IVariableValue.accept() method is called

visit_boolean_array

Method that is called if the IVariableValue.accept() method is called on

visit_string_array

Method that is called if the IVariableValue.accept() method is called on

Import detail#

from ansys.tools.variableinterop.variable_value_json_visitors import VariableValueToJsonVisitor

Method detail#

VariableValueToJsonVisitor.visit_integer(value: ansys.tools.variableinterop.IntegerValue) Any#

Method that is called if the IVariableValue.accept() method is called on an IntegerValue type.

Parameters:
valueIntegerValue

IntegerValue type to visit.

Returns:
T

Result.

VariableValueToJsonVisitor.visit_real(value: ansys.tools.variableinterop.RealValue) Any#

Method that is called if the IVariableValue.accept() method is called on a RealValue type.

Parameters:
valueRealValue

RealValue type to visit.

Returns:
T

Result.

VariableValueToJsonVisitor.visit_boolean(value: ansys.tools.variableinterop.BooleanValue) Any#

Method that is called if the IVariableValue.accept() method is called on a BooleanValue type.

Parameters:
valueBooleanValue

BooleanValue type to visit.

Returns:
T

Result.

VariableValueToJsonVisitor.visit_string(value: ansys.tools.variableinterop.StringValue) Any#

Method that is called if the IVariableValue.accept() method is called on a StringValue type.

Parameters:
valueStringValue

StringValue type to visit.

Returns:
T

Result.

VariableValueToJsonVisitor.visit_integer_array(value: ansys.tools.variableinterop.IntegerArrayValue) Any#

Method that is called if the IVariableValue.accept() method is called on an IntegerArrayValue type.

Parameters:
valueIntegerArrayValue

IntegerArrayValue type to visit.

Returns:
T

Result.

abstractmethod VariableValueToJsonVisitor.visit_file(value: ansys.tools.variableinterop.FileValue) Any#

Method that is called if the IVariableValue.accept() method is called on a FileValue type.

Parameters:
valueFileValue

FileValue type to visit.

Returns:
T

Result

VariableValueToJsonVisitor.visit_real_array(value: ansys.tools.variableinterop.RealArrayValue) Any#

Method that is called if the :meth:`IVariableValue.accept() method is called on a RealArrayValue type.

Parameters:
valueRealArrayValue

RealArrayValue type to visit.

Returns:
T

Result.

VariableValueToJsonVisitor.visit_boolean_array(value: ansys.tools.variableinterop.BooleanArrayValue) Any#

Method that is called if the IVariableValue.accept() method is called on a BooleanArrayValue type.

Parameters:
valueBooleanArrayValue

BooleanArrayValue type to visit.

Returns:
T

Result.

VariableValueToJsonVisitor.visit_string_array(value: ansys.tools.variableinterop.StringArrayValue) Any#

Method that is called if the IVariableValue.accept() method is called on a StringArrayValue type.

Parameters:
valueStringArrayValue

StringArrayValue type to visit.

Returns:
T

Result.

abstractmethod VariableValueToJsonVisitor.visit_file_array(value: ansys.tools.variableinterop.FileArrayValue) Any#

Method that is called if the IVariableValue.accept() method is called on a FileArrayValue type.

Parameters:
valueFileArrayValue

FileArrayValue type to visit.

Returns:
T

Result.