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