View Javadoc

1   package net.sourceforge.pmd.util;
2   
3   public class NumericConstants {
4   
5       public static final Integer ZERO = 0;
6   
7       public static final Integer ONE = 1;
8   
9       public static final Float FLOAT_ZERO = new Float(0.0f);
10  
11  }