|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of ByteList in org.jruby |
---|
Methods in org.jruby that return ByteList | |
---|---|
ByteList |
RubyString.getByteList()
|
Methods in org.jruby with parameters of type ByteList | |
---|---|
static java.lang.String |
RubyString.byteListToString(ByteList bytes)
|
RubyString |
RubyString.cat(ByteList str)
|
void |
RubyRegexp.initialize(ByteList regex,
int options)
|
static RubyRegexp |
RubyRegexp.newRegexp(Ruby runtime,
ByteList str,
int options,
java.lang.String kcode)
|
static RubyRegexp |
RubyRegexp.newRegexp(Ruby runtime,
ByteList source,
Pattern pattern,
int flags,
java.lang.String lang)
|
RubyString |
Ruby.newString(ByteList byteList)
|
RubyString |
RubyString.newString(ByteList s)
Create a new String which uses the same Ruby runtime and the same class like this String. |
static RubyString |
RubyString.newString(Ruby runtime,
ByteList bytes)
|
RubyString |
Ruby.newStringShared(ByteList byteList)
|
static RubyString |
RubyString.newStringShared(Ruby runtime,
ByteList bytes)
|
void |
RubyString.setValue(ByteList value)
|
Pattern |
RegexpTranslator.translate(ByteList regex,
int options,
int javaRegexFlags)
|
Uses of ByteList in org.jruby.ast |
---|
Methods in org.jruby.ast that return ByteList | |
---|---|
ByteList |
RegexpNode.getValue()
Gets the value. |
ByteList |
StrNode.getValue()
Gets the value. |
ByteList |
XStrNode.getValue()
Gets the value. |
Constructors in org.jruby.ast with parameters of type ByteList | |
---|---|
RegexpNode(ISourcePosition position,
ByteList value,
int options)
|
|
StrNode(ISourcePosition position,
ByteList value)
|
|
XStrNode(ISourcePosition position,
ByteList value)
|
Uses of ByteList in org.jruby.compiler |
---|
Methods in org.jruby.compiler with parameters of type ByteList | |
---|---|
void |
Compiler.createNewRegexp(ByteList value,
int options,
java.lang.String lang)
|
void |
Compiler.createNewString(ByteList value)
Generate a new "String" value. |
Uses of ByteList in org.jruby.compiler.impl |
---|
Methods in org.jruby.compiler.impl with parameters of type ByteList | |
---|---|
void |
StandardASMCompiler.createNewRegexp(ByteList value,
int options,
java.lang.String lang)
|
void |
StandardASMCompiler.createNewString(ByteList value)
|
Uses of ByteList in org.jruby.lexer.yacc |
---|
Methods in org.jruby.lexer.yacc that return ByteList | |
---|---|
ByteList |
LexerSource.readLineBytes()
|
Methods in org.jruby.lexer.yacc with parameters of type ByteList | |
---|---|
char |
StringTerm.parseStringIntoBuffer(LexerSource src,
ByteList buffer)
|
Uses of ByteList in org.jruby.runtime.marshal |
---|
Methods in org.jruby.runtime.marshal that return ByteList | |
---|---|
ByteList |
UnmarshalStream.unmarshalString()
|
Methods in org.jruby.runtime.marshal with parameters of type ByteList | |
---|---|
void |
MarshalStream.writeString(ByteList value)
|
Uses of ByteList in org.jruby.util |
---|
Fields in org.jruby.util declared as ByteList | |
---|---|
static ByteList |
ByteList.EMPTY_BYTELIST
|
static ByteList |
IOHandler.PARAGRAPH_DELIMETER
|
Methods in org.jruby.util that return ByteList | |
---|---|
ByteList |
ByteList.append(byte b)
|
ByteList |
ByteList.append(int b)
|
static ByteList |
ByteList.create(java.lang.CharSequence s)
|
ByteList |
ByteList.dup()
|
ByteList |
ByteList.dup(int length)
|
abstract ByteList |
IOHandler.gets(ByteList separatorString)
|
ByteList |
IOHandlerJavaIO.gets(ByteList separatorString)
|
ByteList |
IOHandlerNio.gets(ByteList separator)
|
ByteList |
IOHandlerNull.gets(ByteList separatorString)
|
abstract ByteList |
IOHandler.getsEntireStream()
|
ByteList |
IOHandlerJavaIO.getsEntireStream()
|
ByteList |
IOHandlerNio.getsEntireStream()
|
ByteList |
IOHandlerNull.getsEntireStream()
|
ByteList |
IOHandlerSeekable.getsEntireStream()
|
ByteList |
IOHandlerUnseekable.getsEntireStream()
|
static ByteList |
Convert.intToBinaryByteList(int i)
|
static ByteList |
Convert.intToByteList(int i)
Returns a ByteList object representing the
specified integer. |
static ByteList |
Convert.intToByteList(int i,
int radix)
Returns a ByteList object representing the
specified integer, using the specified radix. |
static ByteList |
Convert.intToHexByteList(int i)
|
static ByteList |
Convert.intToHexByteList(int i,
boolean upper)
|
static ByteList |
Convert.intToOctalByteList(int i)
|
static ByteList |
Convert.longToBinaryByteList(long i)
|
static ByteList |
Convert.longToByteList(long i)
Returns a ByteList object representing the specified
long . |
static ByteList |
Convert.longToByteList(long i,
int radix)
|
static ByteList |
Convert.longToHexByteList(long i)
|
static ByteList |
Convert.longToHexByteList(long i,
boolean upper)
|
static ByteList |
Convert.longToOctalByteList(long i)
|
ByteList |
ByteList.makeShared(int index,
int len)
|
abstract ByteList |
IOHandler.read(int number)
|
ByteList |
IOHandlerJavaIO.read(int number)
|
ByteList |
IOHandlerNio.read(int length)
|
ByteList |
IOHandlerNull.read(int number)
|
ByteList |
IOHandlerNio.readpartial(int length)
|
ByteList |
IOHandlerNio.recv(int length)
|
ByteList |
IOHandlerSocket.recv(int len)
|
abstract ByteList |
IOHandler.sysread(int number)
|
ByteList |
IOHandlerJavaIO.sysread(int number)
|
ByteList |
IOHandlerNio.sysread(int length)
|
ByteList |
IOHandlerNull.sysread(int number)
|
ByteList |
IOHandlerProcess.sysread(int number)
|
ByteList |
IOHandlerSeekable.sysread(int number)
|
ByteList |
IOHandlerUnseekable.sysread(int number)
|
Methods in org.jruby.util with parameters of type ByteList | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
void |
ByteList.append(ByteList moreBytes)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
void |
ZlibDeflate.append(ByteList obj)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
void |
ZlibInflate.append(ByteList obj)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
void |
ByteList.append(ByteList moreBytes,
int index,
int len)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
static java.math.BigInteger |
Convert.byteListToBigInteger(ByteList bytes)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
static java.math.BigInteger |
Convert.byteListToBigInteger(ByteList bytes,
int base)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
static java.math.BigInteger |
Convert.byteListToBigInteger(ByteList bytes,
int base,
boolean raise)
Converts a ByteList to a BigInteger value, using the specified base. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
static double |
Convert.byteListToDouble(ByteList bytes)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
static double |
Convert.byteListToDouble(ByteList bytes,
boolean strict)
Converts a ByteList containing a RubyString representation of a double value to a double. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
static long |
Convert.byteListToLong(ByteList bytes)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
static long |
Convert.byteListToLong(ByteList bytes,
int base)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
static long |
Convert.byteListToLong(ByteList bytes,
int base,
boolean raise)
Converts a ByteList to a primitive long value, using the specified base. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
int |
ByteList.cmp(ByteList other)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IRubyObject |
ZlibDeflate.deflate(ByteList str,
int flush)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
boolean |
ByteList.equal(ByteList other)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
abstract ByteList |
IOHandler.gets(ByteList separatorString)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ByteList |
IOHandlerJavaIO.gets(ByteList separatorString)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ByteList |
IOHandlerNio.gets(ByteList separator)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ByteList |
IOHandlerNull.gets(ByteList separatorString)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
int |
ByteList.indexOf(ByteList find)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
int |
ByteList.indexOf(ByteList find,
int i)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
IRubyObject |
ZlibInflate.inflate(ByteList str)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
int |
ByteList.lastIndexOf(ByteList find)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
int |
ByteList.lastIndexOf(ByteList find,
int pos)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
static RubyString |
Pack.pack(Ruby runtime,
RubyArray list,
ByteList formatString)
pack_pack Template characters for Array#pack Directive Meaning
Copyright © 2002-2007 JRuby Team. All Rights Reserved. |