1 38 39 package org.jvnet.fastinfoset.sax; 40 41 import org.xml.sax.SAXException ; 42 43 82 public interface PrimitiveTypeContentHandler { 83 99 public void booleans(boolean [] b, int start, int length) throws SAXException ; 100 101 123 public void bytes(byte[] b, int start, int length) throws SAXException ; 124 125 141 public void shorts(short[] s, int start, int length) throws SAXException ; 142 143 159 public void ints(int [] i, int start, int length) throws SAXException ; 160 161 177 public void longs(long [] l, int start, int length) throws SAXException ; 178 179 195 public void floats(float [] f, int start, int length) throws SAXException ; 196 197 213 public void doubles(double [] d, int start, int length) throws SAXException ; 214 215 233 public void uuids(long[] msblsb, int start, int length) throws SAXException ; 234 } 235 | Popular Tags |