25 lines
557 B
Matlab
25 lines
557 B
Matlab
classdef HvDcDcMod < Simulink.IntEnumType
|
|
|
|
enumeration
|
|
NoConversion(0)
|
|
BuckMode(1)
|
|
BoostMode(2)
|
|
NotSpecified(3)
|
|
end
|
|
|
|
methods (Static)
|
|
function retVal = getDescription()
|
|
retVal = 'HvDcDcMod';
|
|
end
|
|
function retVal = getDefaultValue()
|
|
retVal = HvDcDcMod.NotSpecified;
|
|
end
|
|
function retVal = getDataScope()
|
|
retVal = 'Exported';
|
|
end
|
|
function retVal = addClassNameToEnumNames()
|
|
retVal = true;
|
|
end
|
|
end
|
|
end
|