1classdef (Sealed) JoinStrategy
2 % Enumeration of join strategy types.
4 % Copyright (c) 2012-2026, Imperial College London
13 function text = toText(type)
17 text =
'Standard Join';
18 case JoinStrategy.PARTIAL
19 text =
'Partial Join';
21 line_error(mfilename,
'Unrecognized join strategy type.');