12faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes/*
22faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Copyright (C) 2011 The Android Open Source Project
32faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
42faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Licensed under the Apache License, Version 2.0 (the "License");
52faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * you may not use this file except in compliance with the License.
62faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * You may obtain a copy of the License at
72faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
82faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *      http://www.apache.org/licenses/LICENSE-2.0
92faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes *
102faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * Unless required by applicable law or agreed to in writing, software
112faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * distributed under the License is distributed on an "AS IS" BASIS,
122faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
132faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * See the License for the specific language governing permissions and
142faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes * limitations under the License.
152faa5f1271587cda765f26bcf2951065300a01ffElliott Hughes */
169f30b38d74990286ce27c3a45368f73dbe3638f0Brian Carlstrom
179f30b38d74990286ce27c3a45368f73dbe3638f0Brian Carlstromclass Statics {
18abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static final boolean s0 = true;
19abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static final byte s1 = 5;
20abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static final char s2 = 'a';
21abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static final short s3 = (short) 65000;
22abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static final int s4 = 2000000000;
23abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static final long s5 = 0x1234567890abcdefL;
24abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static final float s6 = 0.5f;
25abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static final double s7 = 16777217;
26abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static final String s8 = "android";
27193a44d9637b51724274b1de384245776e264a46Brian Carlstrom
28193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    static boolean getS0() {
29193a44d9637b51724274b1de384245776e264a46Brian Carlstrom        return s0;
30193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    }
31193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    static byte getS1() {
32193a44d9637b51724274b1de384245776e264a46Brian Carlstrom        return s1;
33193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    }
34193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    static char getS2() {
35193a44d9637b51724274b1de384245776e264a46Brian Carlstrom        return s2;
36193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    }
37193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    static short getS3() {
38193a44d9637b51724274b1de384245776e264a46Brian Carlstrom        return s3;
39193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    }
40193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    static int getS4() {
41193a44d9637b51724274b1de384245776e264a46Brian Carlstrom        return s4;
42193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    }
43193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    static long getS5() {
44193a44d9637b51724274b1de384245776e264a46Brian Carlstrom        return s5;
45193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    }
46193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    static float getS6() {
47193a44d9637b51724274b1de384245776e264a46Brian Carlstrom        return s6;
48193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    }
49193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    static double getS7() {
50193a44d9637b51724274b1de384245776e264a46Brian Carlstrom        return s7;
51193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    }
52abcfde3b9661618a88e170fac6fdf092a59eb993jeffhao    static String getS8() {
53193a44d9637b51724274b1de384245776e264a46Brian Carlstrom        return s8;
54193a44d9637b51724274b1de384245776e264a46Brian Carlstrom    }
559f30b38d74990286ce27c3a45368f73dbe3638f0Brian Carlstrom}
56