KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > caucho > hessian > io > Hessian2Constants


1 /*
2  * Copyright (c) 2001-2006 Caucho Technology, Inc. All rights reserved.
3  *
4  * The Apache Software License, Version 1.1
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  *
10  * 1. Redistributions of source code must retain the above copyright
11  * notice, this list of conditions and the following disclaimer.
12  *
13  * 2. Redistributions in binary form must reproduce the above copyright
14  * notice, this list of conditions and the following disclaimer in
15  * the documentation and/or other materials provided with the
16  * distribution.
17  *
18  * 3. The end-user documentation included with the redistribution, if
19  * any, must include the following acknowlegement:
20  * "This product includes software developed by the
21  * Caucho Technology (http://www.caucho.com/)."
22  * Alternately, this acknowlegement may appear in the software itself,
23  * if and wherever such third-party acknowlegements normally appear.
24  *
25  * 4. The names "Burlap", "Resin", and "Caucho" must not be used to
26  * endorse or promote products derived from this software without prior
27  * written permission. For written permission, please contact
28  * info@caucho.com.
29  *
30  * 5. Products derived from this software may not be called "Resin"
31  * nor may "Resin" appear in their names without prior written
32  * permission of Caucho Technology.
33  *
34  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
35  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
36  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
37  * DISCLAIMED. IN NO EVENT SHALL CAUCHO TECHNOLOGY OR ITS CONTRIBUTORS
38  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
39  * OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
40  * OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
41  * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
42  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
43  * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
44  * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
45  *
46  * @author Scott Ferguson
47  */

48
49 package com.caucho.hessian.io;
50
51 public interface Hessian2Constants
52 {
53   public static final int INT_DIRECT_MIN = -0x10;
54   public static final int INT_DIRECT_MAX = 0x1f;
55   public static final int INT_ZERO = 0x90;
56   // xb0-xbf is reserved
57

58   public static final int INT_BYTE_MIN = -0x800;
59   public static final int INT_BYTE_MAX = 0x7ff;
60   public static final int INT_BYTE_ZERO = 0xc8;
61
62   public static final int INT_SHORT_MIN = -0x40000;
63   public static final int INT_SHORT_MAX = 0x3ffff;
64   public static final int INT_SHORT_ZERO = 0xd4;
65
66   public static final long LONG_DIRECT_MIN = -0x08;
67   public static final long LONG_DIRECT_MAX = 0x0f;
68   public static final int LONG_ZERO = 0xe0;
69
70   public static final long LONG_BYTE_MIN = -0x800;
71   public static final long LONG_BYTE_MAX = 0x7ff;
72   public static final int LONG_BYTE_ZERO = 0xf8;
73
74   public static final int LONG_SHORT_MIN = -0x40000;
75   public static final int LONG_SHORT_MAX = 0x3ffff;
76   public static final int LONG_SHORT_ZERO = 0x3c;
77
78   public static final int STRING_DIRECT_MAX = 0x0f;
79   public static final int STRING_DIRECT = 0x00;
80   // 0x10-0x1f is reserved
81

82   public static final int BYTES_DIRECT_MAX = 0x0f;
83   public static final int BYTES_DIRECT = 0x20;
84   // 0x30-0x3f is reserved
85

86   public static final int LONG_INT = 'a';
87
88   public static final int DOUBLE_ZERO = 'h';
89   public static final int DOUBLE_ONE = 'i';
90   public static final int DOUBLE_BYTE = 'j';
91   public static final int DOUBLE_SHORT = 'k';
92
93   public static final int DOUBLE_INT = 'n';
94   public static final int DOUBLE_256_SHORT = 'p';
95
96   public static final int DOUBLE_FLOAT = 'q';
97   public static final int LENGTH_BYTE = 'u';
98   public static final int LIST_FIXED = 'v';
99
100   public static final int REF_BYTE = 'e';
101   public static final int REF_SHORT = 'f';
102
103   public static final int TYPE_REF = 'T';
104 }
105
Popular Tags