Ejemplo n.º 1
0
 public void writeType(@Nonnull TypeKey value) throws IOException {
   writer.writeEncodedUint(ValueType.TYPE, typeSection.getItemIndex(value));
 }
Ejemplo n.º 2
0
 public void writeString(@Nonnull StringKey value) throws IOException {
   writer.writeEncodedUint(ValueType.STRING, stringSection.getItemIndex(value));
 }
Ejemplo n.º 3
0
 public void writeField(@Nonnull FieldRefKey value) throws IOException {
   writer.writeEncodedUint(ValueType.FIELD, fieldSection.getItemIndex(value));
 }
Ejemplo n.º 4
0
 public void writeMethod(@Nonnull MethodRefKey value) throws IOException {
   writer.writeEncodedUint(ValueType.METHOD, methodSection.getItemIndex(value));
 }
Ejemplo n.º 5
0
 public void writeChar(char value) throws IOException {
   writer.writeEncodedUint(ValueType.CHAR, value);
 }