aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/test2/ConstField.java
blob: 2d08cfc05672a276bdd4e4cec0d4d7bb5cee4197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package test2;

public class ConstField {
    public static final boolean b = true;
    public static final int i = 3;
    public static final long j = 7L;
    public static final float f = 8.0F;
    public static final double d = 9.0;
    public static final String s = "const";
    public static final Object obj = null;
    public static final Integer integer = Integer.valueOf(4);
    public static int k = 2;
}