Uses of Class
org.klomp.snark.bencode.BEValue

Packages that use BEValue
org.klomp.snark.bencode   
 

Uses of BEValue in org.klomp.snark.bencode
 

Methods in org.klomp.snark.bencode that return BEValue
 BEValue BDecoder.bdecode()
          Gets the next indicator and returns either null when the stream has ended or bdecodes the rest of the stream and returns the appropriate BEValue encoded object.
static BEValue BDecoder.bdecode(java.io.InputStream in)
          Creates a new BDecoder and immediatly decodes the first value it sees.
 BEValue BDecoder.bdecodeBytes()
          Returns the next bencoded value on the stream and makes sure it is a byte array.
 BEValue BDecoder.bdecodeList()
          Returns the next bencoded value on the stream and makes sure it is a list.
 BEValue BDecoder.bdecodeMap()
          Returns the next bencoded value on the stream and makes sure it is a map (dictonary).
 BEValue BDecoder.bdecodeNumber()
          Returns the next bencoded value on the stream and makes sure it is a number.