zhao
2021-07-19 8347f2fbddbd25369359dcb2da1233ac48a19fdc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
/* ====================================================================
   Licensed to the Apache Software Foundation (ASF) Under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for Additional information regarding copyright ownership.
   The ASF licenses this file to You Under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at
 
       http://www.apache.org/licenses/LICENSE-2.0
 
   Unless required by applicable law or agreed to in writing, software
   distributed Under the License is distributed on an "AS Is" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations Under the License.
==================================================================== */
 
namespace HH.WMS.Utils.NPOI.SS.Formula.Functions
{
    using System;
    using System.Text;
    using HH.WMS.Utils.NPOI.SS.Formula;
    using HH.WMS.Utils.NPOI.SS.Formula.Eval;
    using System.Globalization;
 
    /**
     * Common functionality used by VLOOKUP, HLOOKUP, LOOKUP and MATCH
     * 
     * @author Josh Micich
     */
    internal class LookupUtils
    {
        internal class RowVector : ValueVector
        {
 
            private AreaEval _tableArray;
            private int _size;
            private int _rowIndex;
 
            public RowVector(AreaEval tableArray, int rowIndex)
            {
                _rowIndex = rowIndex;
                int _rowAbsoluteIndex = tableArray.FirstRow + rowIndex;
                if (!tableArray.ContainsRow(_rowAbsoluteIndex))
                {
                    int lastRowIx = tableArray.LastRow - tableArray.FirstRow;
                    throw new ArgumentException("Specified row index (" + rowIndex
                            + ") is outside the allowed range (0.." + lastRowIx + ")");
                }
                _tableArray = tableArray;
                _size = tableArray.Width;
            }
 
            public ValueEval GetItem(int index)
            {
                if (index > _size)
                {
                    throw new IndexOutOfRangeException("Specified index (" + index
                            + ") is outside the allowed range (0.." + (_size - 1) + ")");
                }
                return _tableArray.GetRelativeValue(_rowIndex, index);
            }
            public int Size
            {
                get
                {
                    return _size;
                }
            }
        }
        internal class ColumnVector : ValueVector
        {
 
            private AreaEval _tableArray;
            private int _size;
            private int _columnIndex;
 
            public ColumnVector(AreaEval tableArray, int columnIndex)
            {
                _columnIndex = columnIndex;
                int _columnAbsoluteIndex = tableArray.FirstColumn + columnIndex;
                if (!tableArray.ContainsColumn((short)_columnAbsoluteIndex))
                {
                    int lastColIx = tableArray.LastColumn - tableArray.FirstColumn;
                    throw new ArgumentException("Specified column index (" + columnIndex
                            + ") is outside the allowed range (0.." + lastColIx + ")");
                }
                _tableArray = tableArray;
                _size = _tableArray.Height;
            }
 
            public ValueEval GetItem(int index)
            {
                if (index > _size)
                {
                    throw new IndexOutOfRangeException("Specified index (" + index
                            + ") is outside the allowed range (0.." + (_size - 1) + ")");
                }
                return _tableArray.GetRelativeValue(index, _columnIndex);
            }
            public int Size
            {
                get
                {
                    return _size;
                }
            }
        }
 
        public static ValueVector CreateRowVector(TwoDEval tableArray, int relativeRowIndex)
        {
            return new RowVector((AreaEval)tableArray, relativeRowIndex);
        }
        public static ValueVector CreateColumnVector(TwoDEval tableArray, int relativeColumnIndex)
        {
            return new ColumnVector((AreaEval)tableArray, relativeColumnIndex);
        }
        /**
 * @return <c>null</c> if the supplied area is neither a single row nor a single colum
 */
        public static ValueVector CreateVector(TwoDEval ae)
        {
            if (ae.IsColumn)
            {
                return CreateColumnVector(ae, 0);
            }
            if (ae.IsRow)
            {
                return CreateRowVector(ae, 0);
            }
            return null;
        }
        private class StringLookupComparer : LookupValueComparerBase
        {
            private String _value;
 
            public StringLookupComparer(StringEval se)
                : base(se)
            {
 
                _value = se.StringValue;
            }
            protected override CompareResult CompareSameType(ValueEval other)
            {
                StringEval se = (StringEval)other;
                return CompareResult.ValueOf(String.Compare(_value, se.StringValue, StringComparison.OrdinalIgnoreCase));
            }
            protected override String GetValueAsString()
            {
                return _value;
            }
        }
        private class NumberLookupComparer : LookupValueComparerBase
        {
            private double _value;
 
            public NumberLookupComparer(NumberEval ne)
                : base(ne)
            {
 
                _value = ne.NumberValue;
            }
            protected override CompareResult CompareSameType(ValueEval other)
            {
                NumberEval ne = (NumberEval)other;
                return CompareResult.ValueOf(_value.CompareTo(ne.NumberValue));
            }
            protected override String GetValueAsString()
            {
                return _value.ToString(CultureInfo.InvariantCulture);
            }
        }
 
 
        /**
         * Processes the third argument to VLOOKUP, or HLOOKUP (<b>col_index_num</b> 
         * or <b>row_index_num</b> respectively).<br/>
         * Sample behaviour:
         *    <table border="0" cellpAdding="1" cellspacing="2" summary="Sample behaviour">
         *      <tr><th>Input Return</th><th>Value </th><th>Thrown Error</th></tr>
         *      <tr><td>5</td><td>4</td><td> </td></tr>
         *      <tr><td>2.9</td><td>2</td><td> </td></tr>
         *      <tr><td>"5"</td><td>4</td><td> </td></tr>
         *      <tr><td>"2.18e1"</td><td>21</td><td> </td></tr>
         *      <tr><td>"-$2"</td><td>-3</td><td>*</td></tr>
         *      <tr><td>FALSE</td><td>-1</td><td>*</td></tr>
         *      <tr><td>TRUE</td><td>0</td><td> </td></tr>
         *      <tr><td>"TRUE"</td><td> </td><td>#REF!</td></tr>
         *      <tr><td>"abc"</td><td> </td><td>#REF!</td></tr>
         *      <tr><td>""</td><td> </td><td>#REF!</td></tr>
         *      <tr><td>&lt;blank&gt;</td><td> </td><td>#VALUE!</td></tr>
         *    </table><br/>
         *    
         *  * Note - out of range errors (both too high and too low) are handled by the caller. 
         * @return column or row index as a zero-based value
         * 
         */
        public static int ResolveRowOrColIndexArg(ValueEval rowColIndexArg, int srcCellRow, int srcCellCol)
        {
            if(rowColIndexArg == null) {
                throw new ArgumentException("argument must not be null");
            }
            
            ValueEval veRowColIndexArg;
            try {
                veRowColIndexArg = OperandResolver.GetSingleValue(rowColIndexArg, srcCellRow, (short)srcCellCol);
            } catch (EvaluationException) {
                // All errors get translated to #REF!
                throw EvaluationException.InvalidRef();
            }
            int oneBasedIndex;
            if(veRowColIndexArg is StringEval) {
                StringEval se = (StringEval) veRowColIndexArg;
                String strVal = se.StringValue;
                Double dVal = OperandResolver.ParseDouble(strVal);
                if(Double.IsNaN(dVal)) {
                    // String does not resolve to a number. Raise #REF! error.
                    throw EvaluationException.InvalidRef();
                    // This includes text booleans "TRUE" and "FALSE".  They are not valid.
                }
                // else - numeric value parses OK
            }
            // actual BoolEval values get interpreted as FALSE->0 and TRUE->1
            oneBasedIndex = OperandResolver.CoerceValueToInt(veRowColIndexArg);
            if (oneBasedIndex < 1) {
                // note this is asymmetric with the errors when the index is too large (#REF!)  
                throw EvaluationException.InvalidValue();
            }
            return oneBasedIndex - 1; // convert to zero based
        }
 
 
 
        /**
         * The second argument (table_array) should be an area ref, but can actually be a cell ref, in
         * which case it Is interpreted as a 1x1 area ref.  Other scalar values cause #VALUE! error.
         */
        public static AreaEval ResolveTableArrayArg(ValueEval eval)
        {
            if (eval is AreaEval)
            {
                return (AreaEval)eval;
            }
 
            if(eval is RefEval) {
                RefEval refEval = (RefEval) eval;
                // Make this cell ref look like a 1x1 area ref.
 
                // It doesn't matter if eval is a 2D or 3D ref, because that detail is never asked of AreaEval.
                return refEval.Offset(0, 0, 0, 0);
            }
            throw EvaluationException.InvalidValue();
        }
 
 
        /**
         * Resolves the last (optional) parameter (<b>range_lookup</b>) to the VLOOKUP and HLOOKUP functions. 
         * @param rangeLookupArg
         * @param srcCellRow
         * @param srcCellCol
         * @return
         * @throws EvaluationException
         */
        public static bool ResolveRangeLookupArg(ValueEval rangeLookupArg, int srcCellRow, int srcCellCol)
        {
            if (rangeLookupArg == null)
            {
                // range_lookup arg not provided
                return true; // default Is TRUE
            }
            ValueEval valEval = OperandResolver.GetSingleValue(rangeLookupArg, srcCellRow, srcCellCol);
            if (valEval is BlankEval)
            {
                // Tricky:
                // fourth arg supplied but Evaluates to blank
                // this does not Get the default value
                return false;
            }
            if (valEval is BoolEval)
            {
                // Happy day flow 
                BoolEval boolEval = (BoolEval)valEval;
                return boolEval.BooleanValue;
            }
 
            if (valEval is StringEval)
            {
                String stringValue = ((StringEval)valEval).StringValue;
                if (stringValue.Length < 1)
                {
                    // More trickiness:
                    // Empty string Is not the same as BlankEval.  It causes #VALUE! error 
                    throw EvaluationException.InvalidValue();
                }
                // TODO move parseBoolean to OperandResolver
                bool? b = Countif.ParseBoolean(stringValue);
                if (b!=null)
                {
                    // string Converted to bool OK
                    return b==true?true:false;
                }
                //// Even more trickiness:
                //// Note - even if the StringEval represents a number value (for example "1"), 
                //// Excel does not resolve it to a bool.  
                throw EvaluationException.InvalidValue();
                //// This Is in contrast to the code below,, where NumberEvals values (for 
                //// example 0.01) *do* resolve to equivalent bool values.
            }
            if (valEval is NumericValueEval)
            {
                NumericValueEval nve = (NumericValueEval)valEval;
                // zero Is FALSE, everything else Is TRUE
                return 0.0 != nve.NumberValue;
            }
            throw new Exception("Unexpected eval type (" + valEval.GetType().Name + ")");
        }
 
        public static int LookupIndexOfValue(ValueEval lookupValue, ValueVector vector, bool IsRangeLookup)
        {
            LookupValueComparer lookupComparer = CreateLookupComparer(lookupValue);
            int result;
            if (IsRangeLookup)
            {
                result = PerformBinarySearch(vector, lookupComparer);
            }
            else
            {
                result = LookupIndexOfExactValue(lookupComparer, vector);
            }
            if (result < 0)
            {
                throw new EvaluationException(ErrorEval.NA);
            }
            return result;
        }
 
 
        /**
         * Finds first (lowest index) exact occurrence of specified value.
         * @param lookupValue the value to be found in column or row vector
         * @param vector the values to be searched. For VLOOKUP this Is the first column of the 
         *     tableArray. For HLOOKUP this Is the first row of the tableArray. 
         * @return zero based index into the vector, -1 if value cannot be found
         */
        private static int LookupIndexOfExactValue(LookupValueComparer lookupComparer, ValueVector vector)
        {
 
            // Find first occurrence of lookup value
            int size = vector.Size;
            for (int i = 0; i < size; i++)
            {
                if (lookupComparer.CompareTo(vector.GetItem(i)).IsEqual)
                {
                    return i;
                }
            }
            return -1;
        }
 
 
 
        /**
         * Excel has funny behaviour when the some elements in the search vector are the wrong type.
         * 
         */
        private static int PerformBinarySearch(ValueVector vector, LookupValueComparer lookupComparer)
        {
            // both low and high indexes point to values assumed too low and too high.
            BinarySearchIndexes bsi = new BinarySearchIndexes(vector.Size);
 
            while (true)
            {
                int midIx = bsi.GetMidIx();
 
                if (midIx < 0)
                {
                    return bsi.GetLowIx();
                }
                CompareResult cr = lookupComparer.CompareTo(vector.GetItem(midIx));
                if (cr.IsTypeMismatch)
                {
                    int newMidIx = HandleMidValueTypeMismatch(lookupComparer, vector, bsi, midIx);
                    if (newMidIx < 0)
                    {
                        continue;
                    }
                    midIx = newMidIx;
                    cr = lookupComparer.CompareTo(vector.GetItem(midIx));
                }
                if (cr.IsEqual)
                {
                    return FindLastIndexInRunOfEqualValues(lookupComparer, vector, midIx, bsi.GetHighIx());
                }
                bsi.narrowSearch(midIx, cr.IsLessThan);
            }
        }
        /**
         * Excel seems to handle mismatched types initially by just stepping 'mid' ix forward to the 
         * first compatible value.
         * @param midIx 'mid' index (value which has the wrong type)
         * @return usually -1, signifying that the BinarySearchIndex has been narrowed to the new mid 
         * index.  Zero or greater signifies that an exact match for the lookup value was found
         */
        private static int HandleMidValueTypeMismatch(LookupValueComparer lookupComparer, ValueVector vector,
                BinarySearchIndexes bsi, int midIx)
        {
            int newMid = midIx;
            int highIx = bsi.GetHighIx();
 
            while (true)
            {
                newMid++;
                if (newMid == highIx)
                {
                    // every element from midIx to highIx was the wrong type
                    // move highIx down to the low end of the mid values
                    bsi.narrowSearch(midIx, true);
                    return -1;
                }
                CompareResult cr = lookupComparer.CompareTo(vector.GetItem(newMid));
                if (cr.IsLessThan && newMid == highIx - 1)
                {
                    // move highIx down to the low end of the mid values
                    bsi.narrowSearch(midIx, true);
                    return -1;
                    // but only when "newMid == highIx-1"? slightly weird.
                    // It would seem more efficient to always do this.
                }
                if (cr.IsTypeMismatch)
                {
                    // keep stepping over values Until the right type Is found
                    continue;
                }
                if (cr.IsEqual)
                {
                    return newMid;
                }
                // Note - if moving highIx down (due to lookup<vector[newMid]),
                // this execution path only moves highIx it down as far as newMid, not midIx,
                // which would be more efficient.
                bsi.narrowSearch(newMid, cr.IsLessThan);
                return -1;
            }
        }
        /**
         * Once the binary search has found a single match, (V/H)LOOKUP steps one by one over subsequent
         * values to choose the last matching item.
         */
        private static int FindLastIndexInRunOfEqualValues(LookupValueComparer lookupComparer, ValueVector vector,
                    int firstFoundIndex, int maxIx)
        {
            for (int i = firstFoundIndex + 1; i < maxIx; i++)
            {
                if (!lookupComparer.CompareTo(vector.GetItem(i)).IsEqual)
                {
                    return i - 1;
                }
            }
            return maxIx - 1;
        }
 
        public static LookupValueComparer CreateLookupComparer(ValueEval lookupValue)
        {
 
            if (lookupValue == BlankEval.instance)
            {
                // blank eval translates to zero
                // Note - a blank eval in the lookup column/row never matches anything
                // empty string in the lookup column/row can only be matched by explicit emtpty string
                return new NumberLookupComparer(NumberEval.ZERO);
            }
            if (lookupValue is StringEval)
            {
                return new StringLookupComparer((StringEval)lookupValue);
            }
            if (lookupValue is NumberEval)
            {
                return new NumberLookupComparer((NumberEval)lookupValue);
            }
            if (lookupValue is BoolEval)
            {
                return new BooleanLookupComparer((BoolEval)lookupValue);
            }
            throw new ArgumentException("Bad lookup value type (" + lookupValue.GetType().Name + ")");
        }
    }
    /**
    * Enumeration to support <b>4</b> valued comparison results.<p/>
    * Excel lookup functions have complex behaviour in the case where the lookup array has mixed 
    * types, and/or Is Unordered.  Contrary to suggestions in some Excel documentation, there
    * does not appear to be a Universal ordering across types.  The binary search algorithm used
    * Changes behaviour when the Evaluated 'mid' value has a different type to the lookup value.<p/>
    * 
    * A simple int might have done the same job, but there Is risk in confusion with the well 
    * known <c>Comparable.CompareTo()</c> and <c>Comparator.Compare()</c> which both use
    * a ubiquitous 3 value result encoding.
    */
    public class CompareResult
    {
        private bool _isTypeMismatch;
        private bool _isLessThan;
        private bool _isEqual;
        private bool _isGreaterThan;
 
        private CompareResult(bool IsTypeMismatch, int simpleCompareResult)
        {
            if (IsTypeMismatch)
            {
                _isTypeMismatch = true;
                _isLessThan = false;
                _isEqual = false;
                _isGreaterThan = false;
            }
            else
            {
                _isTypeMismatch = false;
                _isLessThan = simpleCompareResult < 0;
                _isEqual = simpleCompareResult == 0;
                _isGreaterThan = simpleCompareResult > 0;
            }
        }
        public static CompareResult TYPE_MISMATCH = new CompareResult(true, 0);
        public static CompareResult LESS_THAN = new CompareResult(false, -1);
        public static CompareResult EQUAL = new CompareResult(false, 0);
        public static CompareResult GREATER_THAN = new CompareResult(false, +1);
 
        public static CompareResult ValueOf(int simpleCompareResult)
        {
            if (simpleCompareResult < 0)
            {
                return LESS_THAN;
            }
            if (simpleCompareResult > 0)
            {
                return GREATER_THAN;
            }
            return EQUAL;
        }
 
        public bool IsTypeMismatch
        {
            get { return _isTypeMismatch; }
        }
        public bool IsLessThan
        {
            get { return _isLessThan; }
        }
        public bool IsEqual
        {
            get { return _isEqual; }
        }
        public bool IsGreaterThan
        {
            get { return _isGreaterThan; }
        }
        public override String ToString()
        {
            StringBuilder sb = new StringBuilder(64);
            sb.Append(GetType().Name).Append(" [");
            sb.Append(FormatAsString);
            sb.Append("]");
            return sb.ToString();
        }
 
        private String FormatAsString
        {
            get
            {
                if (_isTypeMismatch)
                {
                    return "TYPE_MISMATCH";
                }
                if (_isLessThan)
                {
                    return "LESS_THAN";
                }
                if (_isEqual)
                {
                    return "EQUAL";
                }
                if (_isGreaterThan)
                {
                    return "GREATER_THAN";
                }
                // toString must be reliable
                return "error";
            }
        }
    }
    /**
    * Encapsulates some standard binary search functionality so the Unusual Excel behaviour can
    * be clearly distinguished. 
    */
    internal class BinarySearchIndexes
    {
 
        private int _lowIx;
        private int _highIx;
 
        public BinarySearchIndexes(int highIx)
        {
            _lowIx = -1;
            _highIx = highIx;
        }
 
        /**
         * @return -1 if the search range Is empty
         */
        public int GetMidIx()
        {
            int ixDiff = _highIx - _lowIx;
            if (ixDiff < 2)
            {
                return -1;
            }
            return _lowIx + (ixDiff / 2);
        }
 
        public int GetLowIx()
        {
            return _lowIx;
        }
        public int GetHighIx()
        {
            return _highIx;
        }
        public void narrowSearch(int midIx, bool IsLessThan)
        {
            if (IsLessThan)
            {
                _highIx = midIx;
            }
            else
            {
                _lowIx = midIx;
            }
        }
    }
    internal class BooleanLookupComparer : LookupValueComparerBase
    {
        private bool _value;
 
        public BooleanLookupComparer(BoolEval be)
            : base(be)
        {
 
            _value = be.BooleanValue;
        }
        protected override CompareResult CompareSameType(ValueEval other)
        {
            BoolEval be = (BoolEval)other;
            bool otherVal = be.BooleanValue;
            if (_value == otherVal)
            {
                return CompareResult.EQUAL;
            }
            // TRUE > FALSE
            if (_value)
            {
                return CompareResult.GREATER_THAN;
            }
            return CompareResult.LESS_THAN;
        }
        protected override String GetValueAsString()
        {
            return _value.ToString();
        }
    }
    /**
    * Represents a single row or column within an <c>AreaEval</c>.
    */
    public interface ValueVector
    {
        ValueEval GetItem(int index);
        int Size { get; }
    }
 
 
    public interface LookupValueComparer
    {
        /**
         * @return one of 4 instances or <c>CompareResult</c>: <c>LESS_THAN</c>, <c>EQUAL</c>, 
         * <c>GREATER_THAN</c> or <c>TYPE_MISMATCH</c>
         */
        CompareResult CompareTo(ValueEval other);
    }
 
 
 
    internal abstract class LookupValueComparerBase : LookupValueComparer
    {
 
        private Type _tarGetType;
        protected LookupValueComparerBase(ValueEval tarGetValue)
        {
            if (tarGetValue == null)
            {
                throw new Exception("tarGetValue cannot be null");
            }
            _tarGetType = tarGetValue.GetType();
        }
        public CompareResult CompareTo(ValueEval other)
        {
            if (other == null)
            {
                throw new Exception("Compare to value cannot be null");
            }
            if (_tarGetType != other.GetType())
            {
                return CompareResult.TYPE_MISMATCH;
            }
            if (_tarGetType == typeof(StringEval))
            {
 
            }
            return CompareSameType(other);
        }
        public override String ToString()
        {
            StringBuilder sb = new StringBuilder(64);
            sb.Append(GetType().Name).Append(" [");
            sb.Append(GetValueAsString());
            sb.Append("]");
            return sb.ToString();
        }
        protected abstract CompareResult CompareSameType(ValueEval other);
        /** used only for debug purposes */
        protected abstract String GetValueAsString();
    }
 
}