EntryPairpublic final class EntryPair extends Object This is used for building contracting character tables. entryName
is the contracting character name and value is its collation
order. |
Fields Summary |
---|
public String | entryName | public int | value | public boolean | fwd |
Constructors Summary |
---|
public EntryPair(String name, int value)
this(name, value, true);
| public EntryPair(String name, int value, boolean fwd)
this.entryName = name;
this.value = value;
this.fwd = fwd;
|
|