jdk/src/java.base/share/classes/java/text/RBTableBuilder.java
changeset 32649 2ee9017c7597
parent 25859 3317bb8137f4
equal deleted inserted replaced
32648:1fa861caf840 32649:2ee9017c7597
   581     }
   581     }
   582 
   582 
   583     // ==============================================================
   583     // ==============================================================
   584     // constants
   584     // constants
   585     // ==============================================================
   585     // ==============================================================
   586     final static int CHARINDEX = 0x70000000;  // need look up in .commit()
   586     static final int CHARINDEX = 0x70000000;  // need look up in .commit()
   587 
   587 
   588     private final static int IGNORABLEMASK = 0x0000ffff;
   588     private static final int IGNORABLEMASK = 0x0000ffff;
   589     private final static int PRIMARYORDERINCREMENT = 0x00010000;
   589     private static final int PRIMARYORDERINCREMENT = 0x00010000;
   590     private final static int SECONDARYORDERINCREMENT = 0x00000100;
   590     private static final int SECONDARYORDERINCREMENT = 0x00000100;
   591     private final static int TERTIARYORDERINCREMENT = 0x00000001;
   591     private static final int TERTIARYORDERINCREMENT = 0x00000001;
   592     private final static int INITIALTABLESIZE = 20;
   592     private static final int INITIALTABLESIZE = 20;
   593     private final static int MAXKEYSIZE = 5;
   593     private static final int MAXKEYSIZE = 5;
   594 
   594 
   595     // ==============================================================
   595     // ==============================================================
   596     // instance variables
   596     // instance variables
   597     // ==============================================================
   597     // ==============================================================
   598 
   598