KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jruby > runtime > ClassIndex


1 /*
2  * ClassIndex.java
3  *
4  * Created on January 1, 2007, 7:50 PM
5  *
6  * To change this template, choose Tools | Template Manager
7  * and open the template in the editor.
8  */

9
10 package org.jruby.runtime;
11
12 /**
13  *
14  * @author headius
15  */

16 public class ClassIndex {
17     public static final int NO_INDEX = 0;
18     public static final int FIXNUM = 1;
19     public static final int BIGNUM = 2;
20     public static final int ARRAY = 3;
21     public static final int STRING = 4;
22     public static final int NIL = 5;
23     public static final int TRUE = 6;
24     public static final int FALSE = 7;
25     public static final int SYMBOL = 8;
26     public static final int REGEXP = 9;
27     public static final int HASH = 10;
28     public static final int FLOAT = 11;
29     public static final int MODULE = 12;
30     public static final int CLASS = 13;
31     public static final int OBJECT = 14;
32     public static final int STRUCT = 15;
33     public static final int MAX_CLASSES = 16;
34     
35     /** Creates a new instance of ClassIndex */
36     public ClassIndex() {
37     }
38     
39 }
40
Popular Tags