classdef ENUM_CSAS_ROLL < Simulink.IntEnumType enumeration OFF (0) COMMAND(1) ROLL_CTRL (2) ROLLRATE_CTRL (3) end methods (Static = true) function retVal = getDescription() retVal = 'CSAS roll type'; end function retVal = getDefaultValue() retVal = ENUM_CSAS_ROLL.OFF; end function retVal = addClassNameToEnumNames() retVal = true; end end end