LINE Solver
MATLAB API documentation
Loading...
Searching...
No Matches
JoinStrategy.m
1classdef (Sealed) JoinStrategy
2 % Enumeration of join strategy types.
3 %
4 % Copyright (c) 2012-2026, Imperial College London
5 % All rights reserved.
6
7 properties (Constant)
8 STD = 1;
9 PARTIAL = 2;
10 end
11
12 methods (Static)
13 function text = toText(type)
14 % TEXT = TOTEXT(TYPE)
15 switch type
16 case JoinStrategy.STD
17 text = 'Standard Join';
18 case JoinStrategy.PARTIAL
19 text = 'Partial Join';
20 otherwise
21 line_error(mfilename, 'Unrecognized join strategy type.');
22 end
23 end
24 end
25
26end