classdef ENUM_CSAS_PITCH < Simulink.IntEnumType enumeration OFF (0) COMMAND(1) THT_CTRL (2) Q_CTRL (3) DAMPING (4) AZ_CTRL (5) end methods (Static = true) function retVal = getDescription() retVal = 'CSAS Pitch type'; end function retVal = getDefaultValue() retVal = ENUM_CSAS_PITCH.OFF; end function retVal = addClassNameToEnumNames() retVal = true; end end end