Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for writeChar (0.06 sec)

  1. guava/src/com/google/common/io/LittleEndianDataOutputStream.java

       */
      @Override
      public void writeChar(int v) throws IOException {
        writeShort(v);
      }
    
      /**
       * Writes a {@code String} as specified by {@link DataOutputStream#writeChars(String)}, except
       * each character is written using little-endian byte order.
       *
       * @throws IOException if an I/O error occurs
       */
      @Override
      public void writeChars(String s) throws IOException {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 26 12:34:49 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/io/ByteStreams.java

          }
        }
    
        @Override
        public void writeChar(int v) {
          try {
            output.writeChar(v);
          } catch (IOException impossible) {
            throw new AssertionError(impossible);
          }
        }
    
        @Override
        public void writeChars(String s) {
          try {
            output.writeChars(s);
          } catch (IOException impossible) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 29.7K bytes
    - Viewed (0)
Back to top