org.jruby
Class RubyStringIO

java.lang.Object
  extended by org.jruby.RubyObject
      extended by org.jruby.RubyStringIO
All Implemented Interfaces:
java.io.Serializable, java.lang.Cloneable, InstanceVariables, InternalVariables, IRubyObject, CoreObjectType

public class RubyStringIO
extends RubyObject

See Also:
Serialized Form

Nested Class Summary
 
Nested classes/interfaces inherited from class org.jruby.RubyObject
RubyObject.Finalizer, RubyObject.ObjectMethods, RubyObject.VariableTableEntry
 
Field Summary
static org.jruby.util.ByteList NEWLINE
           
 
Fields inherited from class org.jruby.RubyObject
ALL_F, ERR_INSECURE_SET_INST_VAR, FALSE_F, FL_USHIFT, flags, FROZEN_F, metaClass, metaClassName, NEVER, NIL_F, OBJECT_ALLOCATOR, TAINTED_F, UNDEF, USER0_F, USER1_F, USER2_F, USER3_F, USER4_F, USER5_F, USER6_F, USER7_F, VARIABLE_TABLE_DEFAULT_CAPACITY, VARIABLE_TABLE_EMPTY_TABLE, VARIABLE_TABLE_LOAD_FACTOR, VARIABLE_TABLE_MAXIMUM_CAPACITY, variableTable, variableTableSize, variableTableThreshold
 
Fields inherited from interface org.jruby.runtime.builtin.IRubyObject
NULL_ARRAY
 
Constructor Summary
protected RubyStringIO(Ruby runtime, RubyClass klass)
           
 
Method Summary
 IRubyObject append(ThreadContext context, IRubyObject obj)
           
 IRubyObject binmode()
           
protected  void checkFrozen()
          The actual method that checks frozen with the default frozen message from MRI.
 IRubyObject close_read()
           
 IRubyObject close_write()
           
 IRubyObject close()
           
 IRubyObject closed_p()
           
 IRubyObject closed_read_p()
           
 IRubyObject closed_write_p()
           
static RubyClass createStringIOClass(Ruby runtime)
           
 IRubyObject each_byte(ThreadContext context, Block block)
           
 IRubyObject each_line(ThreadContext context, IRubyObject[] args, Block block)
           
 IRubyObject each(ThreadContext context, IRubyObject[] args, Block block)
           
 IRubyObject eof_p()
           
 IRubyObject eof()
           
 IRubyObject fcntl()
           
 IRubyObject fileno()
           
 IRubyObject flush()
           
 IRubyObject fsync()
           
 IRubyObject getc()
           
 IRubyObject gets(ThreadContext context, IRubyObject[] args)
           
 IRubyObject initialize(IRubyObject[] args, Block unusedBlock)
           
 IRubyObject internalGets(IRubyObject[] args)
           
 IRubyObject isatty()
           
 IRubyObject length()
           
 IRubyObject lineno()
           
static IRubyObject open(ThreadContext context, IRubyObject recv, IRubyObject[] args, Block block)
           
 IRubyObject path()
           
 IRubyObject pid()
           
 IRubyObject pos()
           
 IRubyObject print(ThreadContext context, IRubyObject[] args)
           
 IRubyObject printf(ThreadContext context, IRubyObject[] args)
           
 IRubyObject putc(IRubyObject obj)
           
 IRubyObject puts(ThreadContext context, IRubyObject[] args)
           
 IRubyObject read(IRubyObject[] args)
           
 IRubyObject readchar()
           
 IRubyObject readline(ThreadContext context, IRubyObject[] args)
           
 IRubyObject readlines(ThreadContext context, IRubyObject[] arg)
           
 IRubyObject reopen(IRubyObject[] args)
           
 IRubyObject rewind()
           
 IRubyObject seek(IRubyObject[] args)
           
 IRubyObject set_lineno(IRubyObject arg)
           
 IRubyObject set_pos(IRubyObject arg)
           
 IRubyObject set_string(IRubyObject arg)
           
 IRubyObject set_sync(IRubyObject args)
           
 IRubyObject size()
           
 IRubyObject string()
           
 IRubyObject sync()
           
 IRubyObject sysread(IRubyObject[] args)
           
 IRubyObject syswrite(ThreadContext context, IRubyObject args)
           
 IRubyObject tell()
           
 IRubyObject truncate(IRubyObject arg)
           
 IRubyObject tty_p()
           
 IRubyObject ungetc(IRubyObject arg)
           
 IRubyObject write(ThreadContext context, IRubyObject arg)
           
 
Methods inherited from class org.jruby.RubyObject
addFinalizer, anyToString, asJavaString, asString, attachToObjectSpace, callInit, callMethod, callMethod, callMethod, callMethod, callMethod, callMethod, callSuper, checkArrayType, checkStringType, convertToArray, convertToFloat, convertToHash, convertToInteger, convertToInteger, convertToString, convertToType, copySpecialInstanceVariables, createObjectClass, dataGetStruct, dataWrapStruct, display, dup, ensureInstanceVariablesSettable, eql_p, eql, eqlInternal, equal_p, equalInternal, equals, evalUnder, extend, fastGetInstanceVariable, fastGetInternalVariable, fastHasInstanceVariable, fastHasInternalVariable, fastSetInstanceVariable, fastSetInternalVariable, freeze, frozen_p, getFlag, getInstanceVariable, getInstanceVariableList, getInstanceVariableNameList, getInstanceVariables, getInternalVariable, getInternalVariableList, getInternalVariables, getJavaClass, getMetaClass, getNativeTypeIndex, getRuntime, getSingletonClass, getSingletonClassClone, getType, getVariableCount, getVariableList, getVariableMap, getVariableNameList, hash, hashCode, hasInstanceVariable, hasInternalVariable, hasVariables, id_deprecated, id, infectBy, initialize_copy, initialize, inspect, instance_eval, instance_exec, instance_of_p, instance_variable_defined_p, instance_variable_get, instance_variable_set, instance_variables, isClass, isFalse, isFrozen, isImmediate, isModule, isNil, isRubyVariable, isTaint, isTrue, kind_of_p, makeMetaClass, method, methods, nil_p, op_eqq, op_equal, op_match, private_methods, protected_methods, public_methods, puts, rbClone, remove_instance_variable, removeFinalizers, removeInstanceVariable, removeInternalVariable, respond_to_p, respond_to_p, respondsTo, send, setFlag, setFrozen, setInstanceVariable, setInternalVariable, setMetaClass, setTaint, singleton_methods, specificEval, syncVariables, taint, tainted_p, testFrozen, to_a, to_s, toString, type_deprecated, type, untaint, validateInstanceVariable, variableTableContains, variableTableFastContains, variableTableFastFetch, variableTableFastStore, variableTableFetch, variableTableGetMap, variableTableGetMap, variableTableGetSize, variableTableGetTable, variableTableReadLocked, variableTableRehash, variableTableRemove, variableTableStore, variableTableSync
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Field Detail

NEWLINE

public static final org.jruby.util.ByteList NEWLINE
Constructor Detail

RubyStringIO

protected RubyStringIO(Ruby runtime,
                       RubyClass klass)
Method Detail

createStringIOClass

public static RubyClass createStringIOClass(Ruby runtime)

open

public static IRubyObject open(ThreadContext context,
                               IRubyObject recv,
                               IRubyObject[] args,
                               Block block)

initialize

public IRubyObject initialize(IRubyObject[] args,
                              Block unusedBlock)

append

public IRubyObject append(ThreadContext context,
                          IRubyObject obj)

binmode

public IRubyObject binmode()

close

public IRubyObject close()

closed_p

public IRubyObject closed_p()

close_read

public IRubyObject close_read()

closed_read_p

public IRubyObject closed_read_p()

close_write

public IRubyObject close_write()

closed_write_p

public IRubyObject closed_write_p()

each

public IRubyObject each(ThreadContext context,
                        IRubyObject[] args,
                        Block block)

each_byte

public IRubyObject each_byte(ThreadContext context,
                             Block block)

each_line

public IRubyObject each_line(ThreadContext context,
                             IRubyObject[] args,
                             Block block)

eof

public IRubyObject eof()

eof_p

public IRubyObject eof_p()

fcntl

public IRubyObject fcntl()

fileno

public IRubyObject fileno()

flush

public IRubyObject flush()

fsync

public IRubyObject fsync()

getc

public IRubyObject getc()

internalGets

public IRubyObject internalGets(IRubyObject[] args)

gets

public IRubyObject gets(ThreadContext context,
                        IRubyObject[] args)

isatty

public IRubyObject isatty()

tty_p

public IRubyObject tty_p()

length

public IRubyObject length()

lineno

public IRubyObject lineno()

set_lineno

public IRubyObject set_lineno(IRubyObject arg)

path

public IRubyObject path()

pid

public IRubyObject pid()

pos

public IRubyObject pos()

tell

public IRubyObject tell()

set_pos

public IRubyObject set_pos(IRubyObject arg)

print

public IRubyObject print(ThreadContext context,
                         IRubyObject[] args)

printf

public IRubyObject printf(ThreadContext context,
                          IRubyObject[] args)

putc

public IRubyObject putc(IRubyObject obj)

puts

public IRubyObject puts(ThreadContext context,
                        IRubyObject[] args)

read

public IRubyObject read(IRubyObject[] args)

readchar

public IRubyObject readchar()

readline

public IRubyObject readline(ThreadContext context,
                            IRubyObject[] args)

readlines

public IRubyObject readlines(ThreadContext context,
                             IRubyObject[] arg)

reopen

public IRubyObject reopen(IRubyObject[] args)

rewind

public IRubyObject rewind()

seek

public IRubyObject seek(IRubyObject[] args)

set_string

public IRubyObject set_string(IRubyObject arg)

set_sync

public IRubyObject set_sync(IRubyObject args)

size

public IRubyObject size()

string

public IRubyObject string()

sync

public IRubyObject sync()

sysread

public IRubyObject sysread(IRubyObject[] args)

syswrite

public IRubyObject syswrite(ThreadContext context,
                            IRubyObject args)

truncate

public IRubyObject truncate(IRubyObject arg)

ungetc

public IRubyObject ungetc(IRubyObject arg)

write

public IRubyObject write(ThreadContext context,
                         IRubyObject arg)

checkFrozen

protected void checkFrozen()
Description copied from class: RubyObject
The actual method that checks frozen with the default frozen message from MRI. If possible, call this instead of RubyObject.testFrozen(java.lang.String).

Overrides:
checkFrozen in class RubyObject


Copyright © 2002-2007 JRuby Team. All Rights Reserved.