Home | History | Annotate | Download | only in export

Lines Matching refs:defVal

52     public void write(byte value, String name, byte defVal) throws IOException;
53 public void write(byte[] value, String name, byte[] defVal) throws IOException;
54 public void write(byte[][] value, String name, byte[][] defVal) throws IOException;
59 public void write(int value, String name, int defVal) throws IOException;
60 public void write(int[] value, String name, int[] defVal) throws IOException;
61 public void write(int[][] value, String name, int[][] defVal) throws IOException;
66 public void write(float value, String name, float defVal) throws IOException;
67 public void write(float[] value, String name, float[] defVal) throws IOException;
68 public void write(float[][] value, String name, float[][] defVal) throws IOException;
73 public void write(double value, String name, double defVal) throws IOException;
74 public void write(double[] value, String name, double[] defVal) throws IOException;
75 public void write(double[][] value, String name, double[][] defVal) throws IOException;
80 public void write(long value, String name, long defVal) throws IOException;
81 public void write(long[] value, String name, long[] defVal) throws IOException;
82 public void write(long[][] value, String name, long[][] defVal) throws IOException;
87 public void write(short value, String name, short defVal) throws IOException;
88 public void write(short[] value, String name, short[] defVal) throws IOException;
89 public void write(short[][] value, String name, short[][] defVal) throws IOException;
94 public void write(boolean value, String name, boolean defVal) throws IOException;
95 public void write(boolean[] value, String name, boolean[] defVal) throws IOException;
96 public void write(boolean[][] value, String name, boolean[][] defVal) throws IOException;
101 public void write(String value, String name, String defVal) throws IOException;
102 public void write(String[] value, String name, String[] defVal) throws IOException;
103 public void write(String[][] value, String name, String[][] defVal) throws IOException;
108 public void write(BitSet value, String name, BitSet defVal) throws IOException;
113 public void write(Savable object, String name, Savable defVal) throws IOException;
114 public void write(Savable[] objects, String name, Savable[] defVal) throws IOException;
115 public void write(Savable[][] objects, String name, Savable[][] defVal) throws IOException;
120 public void writeSavableArrayList(ArrayList array, String name, ArrayList defVal) throws IOException;
121 public void writeSavableArrayListArray(ArrayList[] array, String name, ArrayList[] defVal) throws IOException;
122 public void writeSavableArrayListArray2D(ArrayList[][] array, String name, ArrayList[][] defVal) throws IOException;
124 public void writeFloatBufferArrayList(ArrayList<FloatBuffer> array, String name, ArrayList<FloatBuffer> defVal) throws IOException;
125 public void writeByteBufferArrayList(ArrayList<ByteBuffer> array, String name, ArrayList<ByteBuffer> defVal) throws IOException;
130 public void writeSavableMap(Map<? extends Savable, ? extends Savable> map, String name, Map<? extends Savable, ? extends Savable> defVal) throws IOException;
131 public void writeStringSavableMap(Map<String, ? extends Savable> map, String name, Map<String, ? extends Savable> defVal) throws IOException;
132 public void writeIntSavableMap(IntMap<? extends Savable> map, String name, IntMap<? extends Savable> defVal) throws IOException;
137 public void write(FloatBuffer value, String name, FloatBuffer defVal) throws IOException;
142 public void write(IntBuffer value, String name, IntBuffer defVal) throws IOException;
147 public void write(ByteBuffer value, String name, ByteBuffer defVal) throws IOException;
152 public void write(ShortBuffer value, String name, ShortBuffer defVal) throws IOException;
157 public void write(Enum value, String name, Enum defVal) throws IOException;