1 38 39 40 package com.sun.xml.fastinfoset.algorithm; 41 42 public abstract class IEEE754FloatingPointEncodingAlgorithm extends BuiltInEncodingAlgorithm { 43 public final static int FLOAT_SIZE = 4; 44 public final static int DOUBLE_SIZE = 8; 45 46 public final static int FLOAT_MAX_CHARACTER_SIZE = 14; 47 public final static int DOUBLE_MAX_CHARACTER_SIZE = 24; 48 49 } 50 | Popular Tags |