Package org.smpp.util

Examples of org.smpp.util.ByteBuffer.appendShort()


    markValueSet();
  }

  protected ByteBuffer getValueData() throws ValueNotSetException {
    ByteBuffer valueBuf = new ByteBuffer();
    valueBuf.appendShort(getValue());
    return valueBuf;
  }

  public void setValue(short p_value) {
    value = p_value;
View Full Code Here


   * carried by this TLV.
   */
  public ByteBuffer getData() throws ValueNotSetException {
    if (hasValue()) {
      ByteBuffer tlvBuf = new ByteBuffer();
      tlvBuf.appendShort(getTag());
      tlvBuf.appendShort(encodeUnsigned(getLength()));
      tlvBuf.appendBuffer(getValueData());
      return tlvBuf;
    } else {
      return null;
View Full Code Here

   */
  public ByteBuffer getData() throws ValueNotSetException {
    if (hasValue()) {
      ByteBuffer tlvBuf = new ByteBuffer();
      tlvBuf.appendShort(getTag());
      tlvBuf.appendShort(encodeUnsigned(getLength()));
      tlvBuf.appendBuffer(getValueData());
      return tlvBuf;
    } else {
      return null;
    }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.