Java ByteBuffer Put skipBlank(ByteBuffer input)

Here you can find the source of skipBlank(ByteBuffer input)

Description

skip Blank

License

Apache License

Declaration

static void skipBlank(ByteBuffer input) throws IOException 

Method Source Code


//package com.java2s;
/*/*w ww.  j  av a  2 s .  c o  m*/
 * Copyright 2017 Rafael Villar Villar
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.io.IOException;
import java.nio.ByteBuffer;

public class Main {
    static void skipBlank(ByteBuffer input) throws IOException {
        if (input.get() != ' ') {
            throw new IOException("Parser error reading input from the server: expected a blank space");
        }
    }
}

Related

  1. readPackedLong(ByteBuffer input)
  2. readToByteBuffer(InputStream inStream)
  3. serializeNullableString(ByteBuffer outputBuffer, String value)
  4. serializeObject(Object obj, ByteBuffer buffer, ByteArrayOutputStream baos, boolean markEndOfHeader)
  5. setBit(ByteBuffer input, int pos)
  6. toByteArrayInputStream(ByteBuffer buffer)
  7. toByteBuffer(InputStream inputStream)
  8. toByteBuffer(String input)
  9. wrap(ByteBuffer byteBuffer, ByteBuffer outputBB, SSLEngine sslEngine)