1 38 39 40 package com.sun.xml.fastinfoset.algorithm; 41 42 public abstract class IntegerEncodingAlgorithm extends BuiltInEncodingAlgorithm { 43 public final static int SHORT_SIZE = 2; 44 public final static int INT_SIZE = 4; 45 public final static int LONG_SIZE = 8; 46 47 public final static int SHORT_MAX_CHARACTER_SIZE = 6; 48 public final static int INT_MAX_CHARACTER_SIZE = 11; 49 public final static int LONG_MAX_CHARACTER_SIZE = 20; 50 51 } 52 | Popular Tags |