|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjist.swans.misc.Mapper
public final class Mapper
Encodes a one-to-one mapping. Used, for example, to dynamically assign port numbers consistently, but in a smaller index range, in order to reduce array sizes.
Field Summary | |
---|---|
private int |
limit
Mapped (range) limit. |
static int |
MAP_INVALID
Invalid mapping constant. |
private int[] |
mapFrom
Reverse mapping table. |
private int[] |
mapTo
Forward mapping table. |
private boolean |
sealed
Whether this mapping is sealed. |
Constructor Summary | |
---|---|
Mapper(int max)
Create a mapping with a given index cap. |
|
Mapper(int[] values)
Create a sealed mapping of the provided values. |
Method Summary | |
---|---|
int |
getLimit()
Return limit of the range of this mapping. |
int |
getMap(int i)
Return element in the range of the mapping. |
int |
getMapR(int j)
Return element in the domain of the mapping. |
private void |
init(int max)
Private constructor helper method. |
private int |
map(int i,
int j)
Define a mapping. |
int |
mapToNext(int i)
Define a mapping. |
void |
seal()
Seal the current mapping; prevent further changes. |
int |
testMapToNext(int i)
Define a mapping if one does not already exist. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final int MAP_INVALID
private int[] mapTo
private int[] mapFrom
private int limit
private boolean sealed
Constructor Detail |
---|
public Mapper(int max)
max
- map indices should be non-negative and less than max.public Mapper(int[] values)
values
- array of domain values to map.Method Detail |
---|
private void init(int max)
max
- map indices should be non-negative and less than max.public void seal()
private int map(int i, int j)
i
- integer in domain of mappingj
- integer in range of mapping
public int mapToNext(int i)
i
- integer in the domain of mapping
public int testMapToNext(int i)
i
- integer in the domain of mapping
public int getMap(int i)
i
- integer in the domain of the mapping
public int getMapR(int j)
j
- integer in the range of the mapping
public int getLimit()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |