Home | History | Annotate | Download | only in serializer

Lines Matching defs:write

33  * write(int val)
34 * write(char[] chars)
35 * write(char[] chars, int start, int count)
36 * write(String chars)
37 * write(String chars, int start, int count)
54 public void write(int val) throws IOException;
56 public void write(char[] chars) throws IOException;
58 public void write(char[] chars, int start, int count) throws IOException;
60 public void write(String chars) throws IOException;
62 public void write(String chars, int start, int count) throws IOException;