NumericConstants.java
01 package net.sourceforge.pmd.util; 02 03 public class NumericConstants { 04 05 public static final Integer ZERO = 0; 06 07 public static final Integer ONE = 1; 08 09 public static final Float FLOAT_ZERO = new Float(0.0f); 10 11 }