1 38 39 40 package com.sun.xml.fastinfoset.algorithm; 41 42 public class BuiltInEncodingAlgorithmState { 43 44 public static final int INITIAL_LENGTH = 8; 45 46 public boolean[] booleanArray = new boolean[INITIAL_LENGTH]; 47 48 public short[] shortArray = new short[INITIAL_LENGTH]; 49 50 public int[] intArray = new int[INITIAL_LENGTH]; 51 52 public long[] longArray = new long[INITIAL_LENGTH]; 53 54 public float[] floatArray = new float[INITIAL_LENGTH]; 55 56 public double[] doubleArray = new double[INITIAL_LENGTH]; 57 } 58 | Popular Tags |