classdef ENUM_AT < Simulink.IntEnumType enumeration OFF (0) MANUAL (1) COMMAND(2) AS (3) GS (4) end methods (Static = true) function retVal = getDescription() retVal = 'Auto throttle type'; end function retVal = getDefaultValue() retVal = ENUM_AT.OFF; end function retVal = addClassNameToEnumNames() retVal = true; end end end