net.sf.jni4net.nio.BufferN.capacity C# (CSharp) Method

capacity() public method

public capacity ( ) : int
return int
        public int capacity()
        {
            return _capacity;
        }

Usage Example

Example #1
0
 internal static String toString(BufferN b)
 {
     return (b.GetType().Name
             + "[pos=" + b.position()
             + " lim=" + b.limit()
             + " cap=" + b.capacity()
             + "]");
 }