1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.util; 5 6 public class NumericConstants { 7 8 public static final Integer ZERO = 0; 9 10 public static final Integer ONE = 1; 11 12 public static final Float FLOAT_ZERO = new Float(0.0f); 13 14 }