Top Description Inners Constructors Methods
org.jruby.ext.jruby

public Class JRubyLibrary

extends Object
implements Library
Class Inheritance
All Implemented Interfaces
org.jruby.runtime.load.Library
Annotations
@JRubyModule
name:JRuby
Imports
org.jcodings.Encoding, org.jcodings.specific.ASCIIEncoding, .UTF8Encoding, org.jruby.*, org.jruby.anno.JRubyMethod, .JRubyModule, org.jruby.ast.util.ArgsUtil, org.jruby.ir.IRManager, .IRScriptBody, org.jruby.ir.builder.IRBuilder, org.jruby.ir.targets.JVMVisitor, .JVMVisitorMethodContext, org.jruby.javasupport.Java, .JavaUtil, org.jruby.runtime.*, org.jruby.runtime.builtin.IRubyObject, org.jruby.runtime.load.Library, org.jruby.util.ByteList, java.io.ByteArrayInputStream

Native part of require 'jruby', e.g. provides methods for swapping between the normal Ruby reference to an object and the Java-integration-wrapped reference. Parts of JRuby name-space are loaded even without require 'jruby', those live under JRuby::Util.
See Also
JRubyUtilLibrary

Nested and Inner Type Summary

Modifier and TypeClass and Description
public static class

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public static IRubyObject
compile(ThreadContext context, IRubyObject recv, IRubyObject[] args, Block block)

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

private static IRScriptBody
compileIR(ThreadContext context, IRubyObject[] args, Block block)

public static IRubyObject
dereference(ThreadContext context, IRubyObject recv, IRubyObject obj)

Unwrap the given Java-integration-wrapped object, returning the unwrapped object.

public static IRubyObject
identity_hash(ThreadContext context, IRubyObject recv, IRubyObject obj)

Provide the "identity" hash code that System.identityHashCode would produce.

public static RubyBoolean
public void
load(Ruby runtime, boolean wrap)

Implements org.jruby.runtime.load.Library.load.

public static IRubyObject
load_string_ext(ThreadContext context, IRubyObject recv)
Deprecated

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

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

private static ParseResult
parseImpl(ThreadContext context, IRubyObject[] args, Block block)

public static IRubyObject
reference(ThreadContext context, IRubyObject recv, IRubyObject obj)

Wrap the given object as in Java integration and return the wrapper.

public static IRubyObject
reference0(ThreadContext context, IRubyObject recv, IRubyObject obj)

Wrap the given object as in Java integration and return the wrapper.

public static IRubyObject
public static IRubyObject
public static IRubyObject
public static IRubyObject
public static IRubyObject
private static RubyArray<T extends IRubyObject>
subclasses(ThreadContext context, final IRubyObject recv, final RubyClass klass, final boolean recurseAll)

public static IRubyObject
with_current_runtime_as_global(ThreadContext context, IRubyObject recv, Block block)

Run the provided (required) block with the "global runtime" set to the current runtime, for libraries that expect to operate against the global runtime.

Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Constructor Detail

JRubyLibraryback to summary
public JRubyLibrary()

Method Detail

compileback to summary
public static IRubyObject compile(ThreadContext context, IRubyObject recv, IRubyObject[] args, Block block)
Annotations
@JRubyMethod
module:true
name:compile
required:1
optional:3
checkArity:false
compile_irback to summary
public static IRubyObject compile_ir(ThreadContext context, IRubyObject recv, IRubyObject[] args, Block block)
Annotations
@JRubyMethod
module:true
name:compile_ir
required:1
optional:3
checkArity:false
compileIRback to summary
private static IRScriptBody compileIR(ThreadContext context, IRubyObject[] args, Block block)
dereferenceback to summary
public static IRubyObject dereference(ThreadContext context, IRubyObject recv, IRubyObject obj)

Unwrap the given Java-integration-wrapped object, returning the unwrapped object. If the wrapped object is not a Ruby object, an error will raise.

Annotations
@JRubyMethod
module:true
name:dereference, deref
identity_hashback to summary
public static IRubyObject identity_hash(ThreadContext context, IRubyObject recv, IRubyObject obj)

Provide the "identity" hash code that System.identityHashCode would produce. Added here as an extension because calling System.identityHashCode (and other Java-integration-related mechanisms) will cause some core types to coerce to Java types, losing their proper identity.

Annotations
@JRubyMethod
module:true
is_security_restrictedback to summary
public static RubyBoolean is_security_restricted(IRubyObject recv)
Annotations
@JRubyMethod
name:security_restricted?
module:true
loadback to summary
public void load(Ruby runtime, boolean wrap)

Implements org.jruby.runtime.load.Library.load.

load_string_extback to summary
public static IRubyObject load_string_ext(ThreadContext context, IRubyObject recv)

Deprecated

Annotations
@Deprecated
parseback to summary
public static IRubyObject parse(ThreadContext context, IRubyObject recv, IRubyObject[] args, Block block)
Annotations
@JRubyMethod
module:true
name:parse
alias:ast_for
required:1
optional:3
checkArity:false
parse_resultback to summary
public static IRubyObject parse_result(ThreadContext context, IRubyObject recv, IRubyObject[] args, Block block)
Annotations
@JRubyMethod
module:true
name:parse_result
required:1
optional:3
checkArity:false
parseImplback to summary
private static ParseResult parseImpl(ThreadContext context, IRubyObject[] args, Block block)
referenceback to summary
public static IRubyObject reference(ThreadContext context, IRubyObject recv, IRubyObject obj)

Wrap the given object as in Java integration and return the wrapper. This version uses ObjectProxyCache to guarantee the same wrapper is returned as long as it is in use somewhere.

Annotations
@JRubyMethod
module:true
name:reference, ref
reference0back to summary
public static IRubyObject reference0(ThreadContext context, IRubyObject recv, IRubyObject obj)

Wrap the given object as in Java integration and return the wrapper. This version does not use ObjectProxyCache.

Annotations
@JRubyMethod
module:true
runtimeback to summary
public static IRubyObject runtime(ThreadContext context, IRubyObject recv)
Annotations
@JRubyMethod
module:true
set_context_class_loaderback to summary
public static IRubyObject set_context_class_loader(ThreadContext context, IRubyObject recv, IRubyObject[] args)
Annotations
@JRubyMethod
module:true
rest:true
set_security_restrictedback to summary
public static IRubyObject set_security_restricted(IRubyObject recv, IRubyObject arg)
Annotations
@JRubyMethod
name:security_restricted=
module:true
subclassesback to summary
public static IRubyObject subclasses(ThreadContext context, IRubyObject recv, IRubyObject arg)
Annotations
@JRubyMethod
module:true
subclassesback to summary
public static IRubyObject subclasses(ThreadContext context, IRubyObject recv, IRubyObject arg, IRubyObject opts)
Annotations
@JRubyMethod
module:true
subclassesback to summary
private static RubyArray<T extends IRubyObject> subclasses(ThreadContext context, final IRubyObject recv, final RubyClass klass, final boolean recurseAll)
with_current_runtime_as_globalback to summary
public static IRubyObject with_current_runtime_as_global(ThreadContext context, IRubyObject recv, Block block)

Run the provided (required) block with the "global runtime" set to the current runtime, for libraries that expect to operate against the global runtime.

Annotations
@JRubyMethod
module:true
org.jruby.ext.jruby back to summary

public Class JRubyLibrary.JRubyConfig

extends Object
Class Inheritance

JRuby::CONFIG

Constructor Summary

AccessConstructor and Description
public

Method Summary

Modifier and TypeMethod and Description
public static IRubyObject
public static IRubyObject
Inherited from java.lang.Object:
cloneequalsfinalizegetClasshashCodenotifynotifyAlltoStringwaitwaitwait

Constructor Detail

JRubyConfigback to summary
public JRubyConfig()

Method Detail

did_you_mean_disabled_pback to summary
public static IRubyObject did_you_mean_disabled_p(ThreadContext context, IRubyObject self)
Annotations
@JRubyMethod
name:did_you_mean_disabled?
rubygems_disabled_pback to summary
public static IRubyObject rubygems_disabled_p(ThreadContext context, IRubyObject self)
Annotations
@JRubyMethod
name:rubygems_disabled?