StringArrayValue#
- class StringArrayValue#
Bases: ansys.tools.variableinterop.variable_value.CommonArrayValue[numpy.str_]
Stores a value as a StringArrayValue variable type.
Overview#
Get a deep copy of this value. |
|
Invoke the visitor pattern of this object using the passed-in visitor |
|
Convert the value to a |
|
Convert the value to a |
|
Convert the value to an |
|
Convert the value to an API string. |
|
Convert the value to a formatted string. |
Variable type of the object. |
Convert an API-formatted string to a |
Return self==value. |
Import detail#
from ansys.tools.variableinterop.array_values import StringArrayValue
Property detail#
- property StringArrayValue.variable_type: VariableType#
Variable type of the object.
- Returns:
VariableTypeVariable type of the object.
Method detail#
- StringArrayValue.__eq__(other)#
Return self==value.
- StringArrayValue.clone() StringArrayValue#
Get a deep copy of this value.
- StringArrayValue.accept(visitor: ansys.tools.variableinterop.ivariable_visitor.IVariableValueVisitor[T]) 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.
- StringArrayValue.to_real_array_value() RealArrayValue#
Convert the value to a
RealArrayValuetype.- Returns:
RealArrayValueRealArrayValuetype with the same values converted to real numbers.
- StringArrayValue.to_boolean_array_value() BooleanArrayValue#
Convert the value to a
BooleanArrayValuetype.- Returns:
BooleanArrayValueBooleanArrayValuetype with the same values converted to Boolean values.
- StringArrayValue.to_integer_array_value() IntegerArrayValue#
Convert the value to an
IntegerArrayValuetype.- Returns:
IntegerArrayValueIntegerArrayValuetype with the same values converted to integers.
- StringArrayValue.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.
- static StringArrayValue.from_api_string(value: str) StringArrayValue#
Convert an API-formatted string to a
StringArrayValuetype.- Parameters:
- value
str API string to parse.
- value
- Returns:
StringArrayValueResult of parsing the
StringArrayValuetype.