jdk/src/java.base/share/classes/java/text/RuleBasedCollator.java
changeset 32649 2ee9017c7597
parent 25859 3317bb8137f4
child 45434 4582657c7260
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
   748 
   748 
   749     // ==============================================================
   749     // ==============================================================
   750     // private
   750     // private
   751     // ==============================================================
   751     // ==============================================================
   752 
   752 
   753     final static int CHARINDEX = 0x70000000;  // need look up in .commit()
   753     static final int CHARINDEX = 0x70000000;  // need look up in .commit()
   754     final static int EXPANDCHARINDEX = 0x7E000000; // Expand index follows
   754     static final int EXPANDCHARINDEX = 0x7E000000; // Expand index follows
   755     final static int CONTRACTCHARINDEX = 0x7F000000;  // contract indexes follow
   755     static final int CONTRACTCHARINDEX = 0x7F000000;  // contract indexes follow
   756     final static int UNMAPPED = 0xFFFFFFFF;
   756     static final int UNMAPPED = 0xFFFFFFFF;
   757 
   757 
   758     private final static int COLLATIONKEYOFFSET = 1;
   758     private static final int COLLATIONKEYOFFSET = 1;
   759 
   759 
   760     private RBCollationTables tables = null;
   760     private RBCollationTables tables = null;
   761 
   761 
   762     // Internal objects that are cached across calls so that they don't have to
   762     // Internal objects that are cached across calls so that they don't have to
   763     // be created/destroyed on every call to compare() and getCollationKey()
   763     // be created/destroyed on every call to compare() and getCollationKey()