1classdef (Sealed) DropStrategy
2 % Enumeration of drop policies in stations.
4 % Copyright (c) 2012-2026, Imperial College London
14 function text = toText(type)
17 case DropStrategy.WAITQ
18 text =
'waiting queue';
19 case DropStrategy.DROP
22 text =
'BAS blocking';
24 line_error(mfilename,
'Unrecognized drop strategy type.');