blob: 8f03b21f2c61e99c355d0716462eff6c72df387f [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
Brian Carlstrom9f30b382011-08-28 22:41:38 -070016
17class Statics {
jeffhaoabcfde32011-09-29 15:05:18 -070018 static final boolean s0 = true;
19 static final byte s1 = 5;
20 static final char s2 = 'a';
21 static final short s3 = (short) 65000;
22 static final int s4 = 2000000000;
23 static final long s5 = 0x1234567890abcdefL;
24 static final float s6 = 0.5f;
25 static final double s7 = 16777217;
26 static final String s8 = "android";
Brian Carlstrom193a44d2011-09-04 12:01:42 -070027
28 static boolean getS0() {
29 return s0;
30 }
31 static byte getS1() {
32 return s1;
33 }
34 static char getS2() {
35 return s2;
36 }
37 static short getS3() {
38 return s3;
39 }
40 static int getS4() {
41 return s4;
42 }
43 static long getS5() {
44 return s5;
45 }
46 static float getS6() {
47 return s6;
48 }
49 static double getS7() {
50 return s7;
51 }
jeffhaoabcfde32011-09-29 15:05:18 -070052 static String getS8() {
Brian Carlstrom193a44d2011-09-04 12:01:42 -070053 return s8;
54 }
Brian Carlstrom9f30b382011-08-28 22:41:38 -070055}