Available Methods
- get ( )
- put ( )
- allocate ( )
- getInt ( )
- flip ( )
- remaining ( )
- position ( )
- wrap ( )
- putInt ( )
- setAutoExpand ( )
- hasRemaining ( )
- limit ( )
- reset ( )
- order ( )
- rewind ( )
- mark ( )
- getShort ( )
- getUnsignedShort ( )
- clear ( )
- putLong ( )
- putPrefixedString ( )
- skip ( )
- putString ( )
- free ( )
- getHexDump ( )
- array ( )
- prefixedDataAvailable ( )
- putDouble ( )
- compact ( )
- setAllocator ( )
- hasArray ( )
- putUnsignedShort ( )
- getUnsigned ( )
- getFloat ( )
- getLong ( )
- putFloat ( )
- putShort ( )
- putUnsignedInt ( )
- putEnumSetShort ( )
Related Classes
- java.util.Arrays
- java.util.Collections
- java.io.ByteArrayOutputStream
- java.util.LinkedList
- java.io.UnsupportedEncodingException
- java.nio.charset.Charset
- java.nio.ByteBuffer
- org.junit.Assert
- java.math.BigDecimal
- java.net.InetSocketAddress
- java.util.Queue
- java.nio.ByteOrder
- java.net.SocketAddress
- junit.framework.Assert
- javax.net.ssl.SSLException
- org.apache.commons.codec.binary.Hex
- java.nio.charset.CharacterCodingException
- com.google.protobuf.Message
- com.google.protobuf.MessageLite
- org.apache.mina.core.session.IoSession
- org.apache.mina.core.service.IoHandlerAdapter
- org.apache.mina.filter.codec.ProtocolEncoderOutput
- org.apache.mina.filter.codec.ProtocolDecoderOutput
- org.easymock.IAnswer
- org.apache.mina.transport.socket.nio.NioSocketAcceptor
Java Code Examples for org.apache.mina.core.buffer.IoBuffer#putUnsignedInt()
The following examples show how to use
org.apache.mina.core.buffer.IoBuffer#putUnsignedInt() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: UnsignedIntegerType.java From neoscada with Eclipse Public License 1.0 | 4 votes |
@Override public void putValue ( final IoBuffer slice, final Variant value ) { slice.putUnsignedInt ( makeValue ( value ) ); }
Example 2
Source File: UInt32Accessor.java From neoscada with Eclipse Public License 1.0 | 4 votes |
@Override public void put ( final IoBuffer data, final Long value ) { data.putUnsignedInt ( value ); }