BooleanArrayMetadata#

class ansys.tools.variableinterop.array_metadata.BooleanArrayMetadata#

Bases: ansys.tools.variableinterop.scalar_metadata.BooleanMetadata

Provides metadata for the BooleanArrayValue variable type.

Overview#

from_dict

Creates a new metadata object from the data from a call to to_dict().

accept

Invoke the visitor pattern of this object using the passed-in visitor

variable_type

Variable type of the object.

Import detail#

from ansys.tools.variableinterop.array_metadata import BooleanArrayMetadata

Property detail#

property BooleanArrayMetadata.variable_type: ansys.tools.variableinterop.variable_type.VariableType#

Variable type of the object.

Returns:
VariableType

Variable type of the object.

Method detail#

BooleanArrayMetadata.accept(visitor: ansys.tools.variableinterop.ivariablemetadata_visitor.IVariableMetadataVisitor[ansys.tools.variableinterop.ivariablemetadata_visitor.T]) ansys.tools.variableinterop.ivariablemetadata_visitor.T#

Invoke the visitor pattern of this object using the passed-in visitor implementation.

Parameters:
visitorIVariableMetadataVisitor[T]

Visitor object to call.

Returns:
T

Results of the visitor invocation.

classmethod BooleanArrayMetadata.from_dict(data) BooleanArrayMetadata#

Creates a new metadata object from the data from a call to to_dict().

Parameters:
data

The serialized dictionary data.

Returns:
CommonVariableMetadata

The new metadata object.