public MultiRankMapEntryLong(object key, RangeLong rank, object value) { this.key = key; this.value = value; this.rank = rank; }
public Range2MapEntryLong(RangeLong x, RangeLong y, object value) { this.x = x; this.y = y; this.value = value; }
public MultiRankMapEntryLong(object key, RangeLong rank) { this.key = key; this.value = null; this.rank = rank; }
public Range2MapEntryLong(RangeLong x, RangeLong y) { this.x = x; this.y = y; this.value = null; }