Example #1
0
 public MultiRankMapEntryLong(object key, RangeLong rank, object value)
 {
     this.key   = key;
     this.value = value;
     this.rank  = rank;
 }
Example #2
0
 public Range2MapEntryLong(RangeLong x, RangeLong y, object value)
 {
     this.x     = x;
     this.y     = y;
     this.value = value;
 }
Example #3
0
 public MultiRankMapEntryLong(object key, RangeLong rank)
 {
     this.key   = key;
     this.value = null;
     this.rank  = rank;
 }
Example #4
0
 public Range2MapEntryLong(RangeLong x, RangeLong y)
 {
     this.x     = x;
     this.y     = y;
     this.value = null;
 }