C++ class to access MATLAB enumeration arrays
Use EnumArray
objects to access enumeration arrays. To create an
EnumArray
, call createEnumArray
in the
ArrayFactory
class.
Namespace: | matlab::data |
Base class: | TypedArray<Enumeration> |
Include: | EnumArray.hpp |
EnumArray(const EnumArray& rhs)
EnumArray(const Array& rhs)
Creates a shared data copy of an EnumArray
object.
|
Value to copy. |
|
Value specified as |
|
Type of input |
EnumArray& operator=(const EnumArray& rhs)
EnumArray& operator=(const Array& rhs)
Assigns a shared data copy to an EnumArray
object.
|
Value to copy. |
|
Value specified as
|
|
Updated instance. |
|
Type of input |
EnumArray(EnumArray&& rhs)
EnumArray(Array&& rhs)
Moves contents of an EnumArray
object to a new
instance.
|
Value to move. |
|
Value specified as
|
|
Type of input |
EnumArray& operator=(EnumArray&& rhs)
EnumArray& operator=(Array&& rhs)
Assigns the input to this EnumArray
object.
|
Value to move. |
|
Value specified as
|
|
Updated instance. |
|
Type of input |
getClassName
std::string getClassName() const
Return class name for this EnumArray
.
|
Class name. |
None