Home | History | Annotate | Download | only in cst

Lines Matching refs:make

31     public static final CstInteger VALUE_M1 = make(-1);
34 public static final CstInteger VALUE_0 = make(0);
37 public static final CstInteger VALUE_1 = make(1);
40 public static final CstInteger VALUE_2 = make(2);
43 public static final CstInteger VALUE_3 = make(3);
46 public static final CstInteger VALUE_4 = make(4);
49 public static final CstInteger VALUE_5 = make(5);
58 public static CstInteger make(int value) {
60 * Note: No need to synchronize, since we don't make any sort
77 * Constructs an instance. This constructor is private; use {@link #make}.