Package com.jcraft.jsch
Class Buffer
- java.lang.Object
-
- com.jcraft.jsch.Buffer
-
public class Buffer extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getByte()
void
getByte(byte[] foo)
int
getByte(int len)
int
getInt()
int
getLength()
long
getLong()
byte[]
getMPInt()
byte[]
getMPIntBits()
int
getOffSet()
byte[]
getString()
long
getUInt()
void
putByte(byte foo)
void
putByte(byte[] foo)
void
putByte(byte[] foo, int begin, int length)
void
putInt(int val)
void
putLong(long val)
void
putMPInt(byte[] foo)
void
putString(byte[] foo)
void
putString(byte[] foo, int begin, int length)
void
reset()
void
setOffSet(int s)
void
shift()
-
-
-
Method Detail
-
putByte
public void putByte(byte foo)
-
putByte
public void putByte(byte[] foo)
-
putByte
public void putByte(byte[] foo, int begin, int length)
-
putString
public void putString(byte[] foo)
-
putString
public void putString(byte[] foo, int begin, int length)
-
putInt
public void putInt(int val)
-
putLong
public void putLong(long val)
-
putMPInt
public void putMPInt(byte[] foo)
-
getLength
public int getLength()
-
getOffSet
public int getOffSet()
-
setOffSet
public void setOffSet(int s)
-
getLong
public long getLong()
-
getInt
public int getInt()
-
getUInt
public long getUInt()
-
getByte
public int getByte()
-
getByte
public void getByte(byte[] foo)
-
getByte
public int getByte(int len)
-
getMPInt
public byte[] getMPInt()
-
getMPIntBits
public byte[] getMPIntBits()
-
getString
public byte[] getString()
-
reset
public void reset()
-
shift
public void shift()
-
-