blob: d7158d4c8d38ec1e6713be0dee5e9c535aa4b658 [file] [log] [blame]
Brian Carlstrom9f30b382011-08-28 22:41:38 -07001// Copyright 2011 Google Inc. All Rights Reserved.
2
3class Statics {
jeffhaoabcfde32011-09-29 15:05:18 -07004 static final boolean s0 = true;
5 static final byte s1 = 5;
6 static final char s2 = 'a';
7 static final short s3 = (short) 65000;
8 static final int s4 = 2000000000;
9 static final long s5 = 0x1234567890abcdefL;
10 static final float s6 = 0.5f;
11 static final double s7 = 16777217;
12 static final String s8 = "android";
Brian Carlstrom193a44d2011-09-04 12:01:42 -070013
14 static boolean getS0() {
15 return s0;
16 }
17 static byte getS1() {
18 return s1;
19 }
20 static char getS2() {
21 return s2;
22 }
23 static short getS3() {
24 return s3;
25 }
26 static int getS4() {
27 return s4;
28 }
29 static long getS5() {
30 return s5;
31 }
32 static float getS6() {
33 return s6;
34 }
35 static double getS7() {
36 return s7;
37 }
jeffhaoabcfde32011-09-29 15:05:18 -070038 static String getS8() {
Brian Carlstrom193a44d2011-09-04 12:01:42 -070039 return s8;
40 }
Brian Carlstrom9f30b382011-08-28 22:41:38 -070041}