classdef ENUM_CSAS < Simulink.IntEnumType enumeration OFF (0) MANUAL (1) COMMAND(2) end methods (Static = true) function retVal = getDescription() retVal = 'CSAS type'; end function retVal = getDefaultValue() retVal = ENUM_CSAS.OFF; end function retVal = addClassNameToEnumNames() retVal = true; end end end