org.glassfish.grizzly.Buffer.getChar()方法的使用及代码示例

x33g5p2x  于2022-01-16 转载在 其他  
字(5.4k)|赞(0)|评价(0)|浏览(99)

本文整理了Java中org.glassfish.grizzly.Buffer.getChar()方法的一些代码示例,展示了Buffer.getChar()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Buffer.getChar()方法的具体详情如下:
包路径:org.glassfish.grizzly.Buffer
类名称:Buffer
方法名:getChar

Buffer.getChar介绍

[英]Relative get method for reading a char value.

Reads the next two bytes at this buffer's current position, composing them into a char value according to the current byte order, and then increments the position by two.
[中]用于读取字符值的相对get方法。
读取该缓冲区当前位置的下两个字节,根据当前字节顺序将它们组合成一个char值,然后将该位置增加两个。

代码示例

代码示例来源:origin: org.glassfish.shoal/shoal-gms-impl

@Override
public char getChar() {
  return grizzlyBuffer.getChar();
}

代码示例来源:origin: org.glassfish.shoal/shoal-gms-impl

@Override
public char getChar(final int index) {
  return grizzlyBuffer.getChar(index);
}

代码示例来源:origin: org.shoal/shoal-gms-impl

@Override
public char getChar() {
  return grizzlyBuffer.getChar();
}

代码示例来源:origin: org.shoal/shoal-gms-impl

@Override
public char getChar(final int index) {
  return grizzlyBuffer.getChar(index);
}

代码示例来源:origin: javaee/grizzly

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: org.glassfish.grizzly/grizzly-http-server-core

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: javaee/grizzly

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: javaee/grizzly

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: org.glassfish.grizzly/grizzly-websockets-server

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: org.mule.glassfish.grizzly/grizzly-framework

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: javaee/grizzly

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: javaee/grizzly

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: javaee/grizzly

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: javaee/grizzly

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: javaee/grizzly

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: org.glassfish.grizzly/grizzly-core

@Override
public char getChar(final int index) {
  checkDispose();
  checkIndex(index);
  
  if (upperBound - index >= 2) {
    return activeBuffer.getChar(toActiveBufferPos(index));
  } else {
    return ((bigEndian) ? makeCharB(index) : makeCharL(index));
  }
}

代码示例来源:origin: javaee/grizzly

/**
 * {@inheritDoc}
 */
@Override
public char readChar()  throws IOException {
  if (input.isBuffered()) {
    final Buffer buffer = input.getBuffer();
    if (buffer != null && buffer.remaining() >= 2) {
      final char result = buffer.getChar();
      buffer.shrink();
      return result;
    }
  }
  return (char) ((readByte() & 0xff) << 8 | readByte() & 0xff);
}

代码示例来源:origin: javaee/grizzly

/**
 * {@inheritDoc}
 */
@Override
public char readChar()  throws IOException {
  if (input.isBuffered()) {
    final Buffer buffer = input.getBuffer();
    if (buffer != null && buffer.remaining() >= 2) {
      final char result = buffer.getChar();
      buffer.shrink();
      return result;
    }
  }
  return (char) ((readByte() & 0xff) << 8 | readByte() & 0xff);
}

代码示例来源:origin: javaee/grizzly

/**
 * {@inheritDoc}
 */
@Override
public char readChar()  throws IOException {
  if (input.isBuffered()) {
    final Buffer buffer = input.getBuffer();
    if (buffer != null && buffer.remaining() >= 2) {
      final char result = buffer.getChar();
      buffer.shrink();
      return result;
    }
  }
  return (char) ((readByte() & 0xff) << 8 | readByte() & 0xff);
}

代码示例来源:origin: javaee/grizzly

/**
 * {@inheritDoc}
 */
@Override
public char readChar()  throws IOException {
  if (input.isBuffered()) {
    final Buffer buffer = input.getBuffer();
    if (buffer != null && buffer.remaining() >= 2) {
      final char result = buffer.getChar();
      buffer.shrink();
      return result;
    }
  }
  return (char) ((readByte() & 0xff) << 8 | readByte() & 0xff);
}

相关文章