Uses of Class
org.jruby.RubyBoolean

Packages that use RubyBoolean
org.jruby   
org.jruby.javasupport   
org.jruby.libraries   
 

Uses of RubyBoolean in org.jruby
 

Methods in org.jruby that return RubyBoolean
 RubyBoolean Ruby.getTrue()
          Returns the "true" instance from the instance pool.
 RubyBoolean Ruby.getFalse()
          Returns the "false" instance from the instance pool.
 RubyBoolean Ruby.newBoolean(boolean value)
           
 RubyBoolean RubyArray.include_p(IRubyObject item)
          rb_ary_includes
 RubyBoolean RubyArray.frozen()
          rb_ary_frozen_p
 RubyBoolean RubyArray.eql_p(IRubyObject obj)
          rb_ary_eql
static RubyBoolean RubyBoolean.newBoolean(Ruby runtime, boolean value)
           
static RubyBoolean RubyComparable.op_gt(IRubyObject recv, IRubyObject other)
          cmp_gt
static RubyBoolean RubyComparable.op_ge(IRubyObject recv, IRubyObject other)
          cmp_ge
static RubyBoolean RubyComparable.op_lt(IRubyObject recv, IRubyObject other)
          cmp_lt
static RubyBoolean RubyComparable.op_le(IRubyObject recv, IRubyObject other)
          cmp_le
static RubyBoolean RubyComparable.between_p(IRubyObject recv, IRubyObject first, IRubyObject second)
          cmp_between
 RubyBoolean RubyFileStat.directory_p()
           
 RubyBoolean RubyFileStat.file_p()
           
static RubyBoolean RubyFileTest.directory_p(IRubyObject recv, IRubyObject filename)
           
static RubyBoolean RubyFileTest.readable_p(IRubyObject recv, IRubyObject filename)
           
static RubyBoolean RubyFileTest.writable_p(IRubyObject recv, IRubyObject filename)
           
static RubyBoolean RubyFileTest.zero_p(IRubyObject recv, IRubyObject filename)
           
static RubyBoolean RubyFileTest.file_p(IRubyObject recv, IRubyObject filename)
           
 RubyBoolean RubyHash.empty_p()
          rb_hash_empty_p
 RubyBoolean RubyHash.has_key(IRubyObject key)
          rb_hash_has_key
 RubyBoolean RubyHash.has_value(IRubyObject value)
          rb_hash_has_value
 RubyBoolean RubyIO.sync()
          Returns the current sync mode.
 RubyBoolean RubyIO.eof()
           
 RubyBoolean RubyIO.tty()
           
 RubyBoolean RubyIO.closed()
          Closes the IO.
static RubyBoolean RubyKernel.block_given(IRubyObject recv, Block block)
           
static RubyBoolean RubyKernel.system(IRubyObject recv, IRubyObject[] args)
           
 RubyBoolean RubyModule.op_eqq(IRubyObject obj)
          rb_mod_eqq
 RubyBoolean RubyModule.const_defined(IRubyObject symbol)
          rb_mod_const_defined
 RubyBoolean RubyModule.method_defined(IRubyObject symbol)
           
static RubyBoolean RubyNil.op_and(IRubyObject recv, IRubyObject obj)
          nil_and
static RubyBoolean RubyNil.op_or(IRubyObject recv, IRubyObject obj)
          nil_or
static RubyBoolean RubyNil.op_xor(IRubyObject recv, IRubyObject obj)
          nil_xor
 RubyBoolean RubyObject.respond_to(IRubyObject[] args)
          respond_to?( aSymbol, includePriv=false ) -> true or false Returns true if this object responds to the given method.
 RubyBoolean RubyObject.tainted()
          rb_obj_tainted
 RubyBoolean RubyObject.frozen()
          rb_obj_frozen_p
 RubyBoolean RubyObject.instance_of(IRubyObject type)
          rb_obj_is_instance_of
 RubyBoolean RubyObject.kind_of(IRubyObject type)
          rb_obj_is_kind_of
 RubyBoolean RubyRange.exclude_end_p()
           
 RubyBoolean RubyRange.include_p(IRubyObject obj, Block block)
           
 RubyBoolean RubyRegexp.casefold()
          rb_reg_casefold_p
 RubyBoolean RubyString.empty()
          rb_str_empty
 RubyBoolean RubyString.include(IRubyObject obj)
          rb_str_include
 RubyBoolean RubyStringScanner.bol_p()
           
 RubyBoolean RubyStringScanner.eos_p()
           
 RubyBoolean RubyStringScanner.matched_p()
           
 RubyBoolean RubyStringScanner.rest_p()
           
static RubyBoolean RubyThread.abort_on_exception(IRubyObject recv)
          Returns the status of the global ``abort on exception'' condition.
 RubyBoolean RubyThread.abort_on_exception()
           
 RubyBoolean RubyThread.is_alive()
           
 RubyBoolean RubyThread.has_key(IRubyObject key)
           
 RubyBoolean RubyThread.isStopped()
           
 RubyBoolean RubyTime.gmt()
           
 RubyBoolean RubyTime.isdst()
           
 

Methods in org.jruby with parameters of type RubyBoolean
 void RubyRange.init(IRubyObject aBegin, IRubyObject aEnd, RubyBoolean aIsExclusive)
           
 IRubyObject RubyStringScanner.scan_full(RubyRegexp rx, RubyBoolean adv_ptr, RubyBoolean ret_str)
           
 IRubyObject RubyStringScanner.search_full(RubyRegexp rx, RubyBoolean adv_ptr, RubyBoolean ret_str)
           
static IRubyObject RubyThread.critical_set(IRubyObject receiver, RubyBoolean value)
           
 

Uses of RubyBoolean in org.jruby.javasupport
 

Methods in org.jruby.javasupport that return RubyBoolean
 RubyBoolean JavaAccessibleObject.isAccessible()
           
 RubyBoolean JavaCallable.public_p()
           
 RubyBoolean JavaClass.public_p()
           
 RubyBoolean JavaClass.protected_p()
           
 RubyBoolean JavaClass.private_p()
           
 RubyBoolean JavaClass.final_p()
           
 RubyBoolean JavaClass.interface_p()
           
 RubyBoolean JavaClass.array_p()
           
 RubyBoolean JavaClass.primitive_p()
           
 RubyBoolean JavaClass.assignable_from_p(IRubyObject other)
           
 RubyBoolean JavaField.public_p()
           
 RubyBoolean JavaField.static_p()
           
 RubyBoolean JavaField.final_p()
           
 RubyBoolean JavaMethod.public_p()
           
 RubyBoolean JavaMethod.final_p()
           
 RubyBoolean JavaMethod.static_p()
           
 

Uses of RubyBoolean in org.jruby.libraries
 

Methods in org.jruby.libraries that return RubyBoolean
 RubyBoolean ThreadLibrary.Mutex.locked_p()
           
 RubyBoolean ThreadLibrary.Mutex.try_lock()
           
 RubyBoolean ThreadLibrary.Mutex.unlock()
           
 RubyBoolean ThreadLibrary.Queue.empty_p()
           
 



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