Uses of Class
org.jruby.RubyModule
Packages that use RubyModule
Package
Description
-
Uses of RubyModule in org.jruby
Subclasses of RubyModule in org.jrubyModifier and TypeClassDescriptionclass
class
This class is used to provide an intermediate superclass for modules and classes that include other modules.final class
class
This class is used as an intermediate superclass for Module#prepend.class
Fields in org.jruby declared as RubyModuleModifier and TypeFieldDescriptionprotected RubyModule
AbstractRubyMethod.implementationModule
protected RubyModule
RubyModule.methodLocation
Where are the methods of this module/class located? This only happens as a result of prepend (see PrependedModule) where it moves all methods to a PrependedModule which will be beneath the actual module which was prepended.protected final RubyModule
IncludedModule.origin
The module to which this include origins.protected RubyModule
AbstractRubyMethod.originModule
RubyModule.parent
The class/module within whose namespace this class/module resides.protected RubyModule
AbstractRubyMethod.sourceModule
Methods in org.jruby with type parameters of type RubyModuleModifier and TypeMethodDescription<T extends RubyModule>
TSet the base name of the class.<T extends RubyModule>
TRubyModule.classIndex
(ClassIndex classIndex) Sets the ClassIndex for this type<T extends RubyModule>
TRubyModule.defineAlias
(ThreadContext context, String name, String oldName) Define an alias on this module/class.<T extends RubyModule>
TRubyModule.defineConstant
(ThreadContext context, String name, IRubyObject value) Define a constant when you are defining your Ruby class/module.<T extends RubyModule>
TRubyModule.defineConstant
(ThreadContext context, String name, IRubyObject value, boolean hidden) Define a constant when you are defining your Ruby class/module.<T extends RubyModule>
TRubyModule.defineConstants
(ThreadContext context, Class constantSource) Define constant for your module/class with the supplied Class which contains @JRubyMethod annotations.<C extends Enum<C> & jnr.constants.Constant,
T extends RubyModule>
TRubyModule.defineConstantsFrom
(ThreadContext context, Class<C> enumClass) Define all constants from the given jnr-constants enum which are defined on the current platform.<T extends RubyModule>
TRubyModule.defineMethods
(ThreadContext context, Class... methodSources) Define methods for your module/class with the supplied Class which contains @JRubyMethod annotations.<T extends RubyModule>
TRubyModule.include
(ThreadContext context, RubyModule module) In Defining this type include a module.<T extends RubyModule>
TRubyModule.kindOf
(RubyModule.KindOf kindOf) Set the method for determining whether an Object is a kind of the supplied type.<T extends RubyModule>
TRubyModule.superClass
(RubyClass superClass) Set this module/class super class.<T extends RubyModule>
TProvide itself to a lambda then return itself.<T extends RubyModule>
TRubyModule.undefMethods
(ThreadContext context, String... names) Undefine a method from this type.Methods in org.jruby that return RubyModuleModifier and TypeMethodDescriptionRubyModule.alias_method
(ThreadContext context, IRubyObject newId, IRubyObject oldId) Old version ofaliasMethod(ThreadContext, IRubyObject, IRubyObject)
that returns this module.RubyModule.append_features
(IRubyObject include) Deprecated.RubyModule.append_features
(ThreadContext context, IRubyObject include) rb_mod_append_featuresstatic RubyModule
RubyComparable.createComparable
(ThreadContext context) static RubyModule
RubyEnumerable.createEnumerableModule
(ThreadContext context) static RubyModule
RubyFileTest.createFileTestModule
(ThreadContext context) static RubyModule
RubyGC.createGCModule
(ThreadContext context) static RubyModule
RubyMarshal.createMarshalModule
(ThreadContext context) static RubyModule
RubyMath.createMathModule
(ThreadContext context) Create the Math module and add it to the Ruby runtime.static RubyModule
RubyObjectSpace.createObjectSpaceModule
(ThreadContext context, RubyClass Object) Create the ObjectSpace module and add it to the Ruby runtime.static RubyModule
RubyProcess.createProcessModule
(ThreadContext context, RubyClass Object, RubyClass Struct) Ruby.defineModule
(String name) Deprecated.Ruby.defineModuleBootstrap
(String name) This is only for defining kernel.Ruby.defineModuleUnder
(String name, RubyModule parent) Deprecated.Ruby.defineModuleUnder
(ThreadContext context, String name, RubyModule parent) Define a new module with the given name under the given module or class namespace.RubyModule.defineModuleUnder
(String name) Deprecated.RubyModule.defineModuleUnder
(ThreadContext context, String name) Define a module under this module.RubyModule.defineOrGetModuleUnder
(String name) Deprecated.RubyModule.defineOrGetModuleUnder
(String name, String file, int line) Deprecated.RubyModule.defineOrGetModuleUnder
(ThreadContext context, String name, String file, int line) RubyModule.findImplementer
(RubyModule clazz) Find the given class in this hierarchy, considering modules along the way.static RubyModule
RubyKernel.finishKernelModule
(ThreadContext context, RubyModule Kernel, RubyInstanceConfig config) Ruby.getClassFromPath
(String path) Ruby.getClassFromPath
(String path, RubyClass undefinedExceptionClass, boolean flexibleSearch) Find module from a string (e.g.Ruby.getComparable()
DelegatedModule.getDelegate()
IncludedModuleWrapper.getDelegate()
PrependedModule.getDelegate()
RubyModule.getDelegate()
Ruby.getEnumerable()
Ruby.getErrno()
Ruby.getEtc()
Deprecated.Ruby.getFileTest()
Ruby.getGC()
protected RubyModule
RubyBasicObject.getInstanceEvalClass()
Deprecated.protected RubyModule
RubyBasicObject.getInstanceEvalClass
(ThreadContext context) Ruby.getKernel()
Ruby.getMarshal()
Ruby.getMath()
RubyModule.getMethodLocation()
Deprecated.Deprecated.RubyModule.getModule
(ThreadContext context, String name) Finds a module that is within the current module (or class).IncludedModule.getNonIncludedClass()
Deprecated.PrependedModule.getNonIncludedClass()
Deprecated.RubyModule.getNonIncludedClass()
Deprecated.Ruby.getObjectSpaceModule()
Ruby.getOrCreateModule
(String id) Deprecated.IncludedModule.getOrigin()
PrependedModule.getOrigin()
RubyModule.getOrigin()
In an included or prepended module what is the ACTUAL module it represents?RubyModule.getParent()
Ruby.getPrecision()
Ruby.getProcess()
Ruby.getProcGID()
Ruby.getProcSysModule()
Ruby.getProcUID()
RubyClass.getRealModule()
Equivalent toRubyClass.getRealClass()
.RubyModule.getRealModule()
Get the "real" module, either the current one or the nearest ancestor that is not a singleton or include wrapper.Ruby.getWarning()
RubyModule.include
(IRubyObject[] modules) Deprecated.RubyModule.include
(ThreadContext context, IRubyObject module) RubyModule.include
(ThreadContext context, IRubyObject[] modules) rb_mod_includestatic RubyModule
Deprecated.static RubyModule
RubyModule.newModule
(Ruby runtime, String name, RubyModule parent, boolean setParent) Deprecated.static RubyModule
RubyModule.newModule
(Ruby runtime, String name, RubyModule parent, boolean setParent, String file, int line) Deprecated.static RubyModule
RubyModule.newModule
(ThreadContext context, String name, RubyModule parent, boolean setParent, String file, int line) rb_module_new/rb_define_module_id/rb_name_class/rb_set_class_path This is used by IR to define a new module.static RubyModule
RubyModule.newModuleBootstrap
(Ruby runtime, String name, RubyModule parent) RubyModule.prepend_features
(IRubyObject include) Deprecated.RubyModule.prepend_features
(ThreadContext context, IRubyObject include) rb_mod_prepend_featuresRubyModule.private_class_method
(IRubyObject[] args) Deprecated.RubyModule.private_class_method
(ThreadContext context, IRubyObject[] args) RubyModule.public_class_method
(IRubyObject[] args) Deprecated.RubyModule.public_class_method
(ThreadContext context, IRubyObject[] args) RubyModule.remove_method
(ThreadContext context, IRubyObject[] args) protected RubyModule
RubyModule.searchAncestor
(RubyModule c) RubyModule.undef_method
(ThreadContext context, IRubyObject[] args) static RubyModule
RubyModule.unmarshalFrom
(UnmarshalStream input) Deprecated, for removal: This API element is subject to removal in a future version.static RubyModule
RubyModule.unmarshalFrom
(ThreadContext context, RubyInputStream in, MarshalLoader input) Methods in org.jruby that return types with arguments of type RubyModuleModifier and TypeMethodDescriptionRuby.getJavaExtensionDefinitions()
RubyModule.getRefinements()
RubyModule.getRefinements()
RubyModule.getRefinementsForWrite()
RubyModule.getRefinementsForWrite()
static Map
<RubyModule, IncludedModule> RubyModule.newActivatedRefinementsMap()
static Map
<RubyModule, RubyModule> RubyModule.newRefinementsMap()
static Map
<RubyModule, RubyModule> RubyModule.newRefinementsMap()
static Map
<RubyModule, RubyModule> RubyModule.newRefinementsMap
(Map<RubyModule, RubyModule> refinements) static Map
<RubyModule, RubyModule> RubyModule.newRefinementsMap
(Map<RubyModule, RubyModule> refinements) Methods in org.jruby with parameters of type RubyModuleModifier and TypeMethodDescriptionvoid
Ruby.addModule
(RubyModule module) A collection of all natural Module instances in the system.protected CacheEntry
RubyModule.addToCache
(String id, DynamicMethod method, RubyModule sourceModule, int token) RubyKernel.MethodMissingMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) RubyModule.RespondToMissingMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) final IRubyObject
RubyProc.call
(ThreadContext context, IRubyObject[] args, IRubyObject self, RubyModule sourceModule, Block passedBlock) RubyStruct.Accessor.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) RubyStruct.Accessor.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) RubyStruct.Mutator.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg) RubyStruct.Mutator.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) protected void
RubyModule.checkForCyclicPrepend
(ThreadContext context, RubyModule m) void
RubyModule.checkValidBindTargetFrom
(ThreadContext context, RubyModule originModule, boolean fromBind) protected final IRubyObject
RubyModule.cloneMethods
(RubyModule clone) Deprecated.protected final IRubyObject
RubyModule.cloneMethods
(ThreadContext context, RubyModule clone) static RubyClass
RubyArithmeticSequence.createArithmeticSequenceClass
(ThreadContext context, RubyClass Enumerator, RubyModule Enumerable) static RubyClass
RubyArray.createArrayClass
(ThreadContext context, RubyClass Object, RubyModule Enumerable) static RubyClass
RubyChain.createChainClass
(ThreadContext context, RubyClass Object, RubyClass Enumerator, RubyModule Enumerable) static void
RubyClassPathVariable.createClassPathVariable
(ThreadContext context, RubyModule Enumerable, RubyClass Object) static RubyClass
RubyDir.createDirClass
(ThreadContext context, RubyClass Object, RubyModule Enumerable) static RubyClass
RubyFileStat.createFileStatClass
(ThreadContext context, RubyClass Object, RubyClass File, RubyModule Comparable) static RubyClass
RubyGenerator.createGeneratorClass
(ThreadContext context, RubyClass Object, RubyClass Enumerator, RubyModule Enumerable) static RubyClass
RubyHash.createHashClass
(ThreadContext context, RubyClass Object, RubyModule Enumerable) static RubyClass
RubyIOBuffer.createIOBufferClass
(ThreadContext context, RubyClass Object, RubyModule Comparable, RubyClass IO) static RubyClass
RubyIO.createIOClass
(ThreadContext context, RubyClass Object, RubyModule Enumerable) static RubyClass
RubyNumeric.createNumericClass
(ThreadContext context, RubyClass Object, RubyModule Comparable) static RubyClass
RubyProducer.createProducerClass
(ThreadContext context, RubyClass Object, RubyClass Enumerator, RubyModule Enumerable) static RubyClass
RubyRange.createRangeClass
(ThreadContext context, RubyClass Object, RubyModule Enumerable) static RubyClass
RubyString.createStringClass
(ThreadContext context, RubyClass Object, RubyModule Comparable) static RubyClass
RubyStruct.createStructClass
(ThreadContext context, RubyClass Object, RubyModule Enumerable) static RubyClass
RubySymbol.createSymbolClass
(ThreadContext context, RubyClass Object, RubyModule Comparable) static RubyClass
RubyTime.createTimeClass
(ThreadContext context, RubyClass Object, RubyModule Comparable) Ruby.defineClassUnder
(String name, RubyClass superClass, ObjectAllocator allocator, RubyModule parent) Deprecated.Ruby.defineClassUnder
(String id, RubyClass superClass, ObjectAllocator allocator, RubyModule parent, CallSite[] callSites) Deprecated.Ruby.defineClassUnder
(ThreadContext context, String id, RubyClass superClass, ObjectAllocator allocator, RubyModule parent, CallSite[] callSites) A variation of defineClassUnder that allows passing in an array of supplementary call sites to improve dynamic invocation.static RubyClass
RubyEnumerator.defineEnumerator
(ThreadContext context, RubyClass Object, RubyModule Enumerable) Ruby.defineModuleUnder
(String name, RubyModule parent) Deprecated.Ruby.defineModuleUnder
(ThreadContext context, String name, RubyModule parent) Define a new module with the given name under the given module or class namespace.RubyBasicObject.evalUnder
(ThreadContext context, RubyModule under, RubyString src, String file, int line, EvalType evalType) RubyModule.findImplementer
(RubyModule clazz) Find the given class in this hierarchy, considering modules along the way.static RubyModule
RubyKernel.finishKernelModule
(ThreadContext context, RubyModule Kernel, RubyInstanceConfig config) boolean
RubyModule.hasAncestor
(RubyModule type) boolean
RubyModule.hasModuleInHierarchy
(RubyModule type) boolean
RubyModule.hasModuleInPrepends
(RubyModule type) <T extends RubyModule>
TRubyModule.include
(ThreadContext context, RubyModule module) In Defining this type include a module.static void
RubyArgsFile.initArgsFile
(ThreadContext context, RubyModule Enumerable, GlobalVariables globals) boolean
RubyModule.JavaClassKindOf.isKindOf
(IRubyObject obj, RubyModule type) boolean
RubyModule.KindOf.isKindOf
(IRubyObject obj, RubyModule type) boolean
RubyObjectAdapter.isKindOf
(IRubyObject value, RubyModule rubyModule) boolean
RubyModule.isKindOfModule
(RubyModule type) protected boolean
IncludedModuleWrapper.isSame
(RubyModule module) protected boolean
RubyModule.isSame
(RubyModule module) protected boolean
RubyModule.isSameOrigin
(RubyModule other) <C extends Enum<C> & jnr.constants.Constant>
voidRuby.loadConstantSet
(RubyModule module, Class<C> enumClass) Deprecated.UsedefineConstantsFrom(ThreadContext, Class)
instead.void
Ruby.loadConstantSet
(RubyModule module, String constantSetName) Deprecated.static void
RubyModule.marshalTo
(RubyModule module, MarshalStream output) Deprecated, for removal: This API element is subject to removal in a future version.static void
RubyModule.marshalTo
(ThreadContext context, RubyOutputStream out, RubyModule module, MarshalDumper output) abstract CacheEntry
RubyModule.CacheEntryFactory.newCacheEntry
(String id, DynamicMethod method, RubyModule sourceModule, int token) RubyModule.ProfilingCacheEntryFactory.newCacheEntry
(String id, DynamicMethod method, RubyModule sourceModule, int token) RubyModule.SynchronizedCacheEntryFactory.newCacheEntry
(String id, DynamicMethod method, RubyModule sourceModule, int token) static RubyClass
RubyClass.newClass
(Ruby runtime, RubyClass superClass, String name, ObjectAllocator allocator, RubyModule parent, boolean setParent) Deprecated.static RubyClass
RubyClass.newClass
(Ruby runtime, RubyClass superClass, String name, ObjectAllocator allocator, RubyModule parent, boolean setParent, String file, int line) Deprecated.static RubyClass
RubyClass.newClass
(Ruby runtime, RubyClass superClass, String name, ObjectAllocator allocator, RubyModule parent, boolean setParent, CallSite[] extraCallSites) Deprecated.static RubyClass
RubyClass.newClass
(ThreadContext context, RubyClass superClass, String name, ObjectAllocator allocator, RubyModule parent, boolean setParent, String file, int line) static RubyClass
RubyClass.newClass
(ThreadContext context, RubyClass superClass, String name, ObjectAllocator allocator, RubyModule parent, boolean setParent, CallSite[] extraCallSites) A variation on newClass that allows passing in an array of supplementary call sites to improve dynamic invocation performance.Ruby.newFrozenError
(RubyModule type) Deprecated.static RubyMethod
RubyMethod.newMethod
(RubyModule implementationModule, String methodName, RubyModule originModule, String originName, CacheEntry entry, IRubyObject receiver) static RubyModule
RubyModule.newModule
(Ruby runtime, String name, RubyModule parent, boolean setParent) Deprecated.static RubyModule
RubyModule.newModule
(Ruby runtime, String name, RubyModule parent, boolean setParent, String file, int line) Deprecated.static RubyModule
RubyModule.newModule
(ThreadContext context, String name, RubyModule parent, boolean setParent, String file, int line) rb_module_new/rb_define_module_id/rb_name_class/rb_set_class_path This is used by IR to define a new module.static RubyModule
RubyModule.newModuleBootstrap
(Ruby runtime, String name, RubyModule parent) Ruby.newTypeError
(IRubyObject receivedObject, RubyModule expectedType) Deprecated.static RubyUnboundMethod
RubyUnboundMethod.newUnboundMethod
(RubyModule implementationModule, String methodName, RubyModule originModule, String originName, CacheEntry entry) void
RubyModule.prependModule
(RubyModule module) Deprecated.void
RubyModule.prependModule
(ThreadContext context, RubyModule module) Prepend a new module to this module or class.RubyModule.resolveRefinedMethod
(RubyModule overlay, CacheEntry entry, String id, boolean cacheUndef) protected RubyModule
RubyModule.searchAncestor
(RubyModule c) void
Ruby.setEtc
(RubyModule etcModule) void
RubyModule.setMethodLocation
(RubyModule module) void
RubyModule.setParent
(RubyModule parent) RubyBasicObject.specificEval
(ThreadContext context, RubyModule mod, Block block, EvalType evalType) specific_eval Evaluates the block or string inside of the context of this object, using the supplied arguments.RubyBasicObject.specificEval
(ThreadContext context, RubyModule mod, IRubyObject arg, Block block, EvalType evalType) specific_eval Evaluates the block or string inside of the context of this object, using the supplied arguments.RubyBasicObject.specificEval
(ThreadContext context, RubyModule mod, IRubyObject arg0, IRubyObject arg1, Block block, EvalType evalType) specific_eval Evaluates the block or string inside of the context of this object, using the supplied arguments.RubyBasicObject.specificEval
(ThreadContext context, RubyModule mod, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block, EvalType evalType) specific_eval Evaluates the block or string inside of the context of this object, using the supplied arguments.RubyObject.specificEval
(ThreadContext context, RubyModule mod, IRubyObject[] args, Block block, EvalType evalType) Deprecated.protected IRubyObject
AbstractRubyMethod.super_method
(ThreadContext context, IRubyObject receiver, RubyModule superClass) void
RubyModule.syncClassVariables
(RubyModule other) void
RubyModule.syncConstants
(RubyModule other) static void
RubyModule.usingModule
(ThreadContext context, RubyModule cref, IRubyObject refinedModule) protected IRubyObject
RubyBasicObject.yieldUnder
(ThreadContext context, RubyModule under, Block block, EvalType evalType) Will yield to the specific block changing the self to be the current object instead of the self that is part of the frame saved in the block frame.protected IRubyObject
RubyBasicObject.yieldUnder
(ThreadContext context, RubyModule under, IRubyObject[] args, Block block, EvalType evalType) Will yield to the specific block changing the self to be the current object instead of the self that is part of the frame saved in the block frame.Method parameters in org.jruby with type arguments of type RubyModuleModifier and TypeMethodDescriptionvoid
Ruby.eachModule
(Consumer<RubyModule> func) Walk all natural Module instances in the system.static Map
<RubyModule, RubyModule> RubyModule.newRefinementsMap
(Map<RubyModule, RubyModule> refinements) static Map
<RubyModule, RubyModule> RubyModule.newRefinementsMap
(Map<RubyModule, RubyModule> refinements) void
RubyModule.setRefinements
(Map<RubyModule, RubyModule> refinements) void
RubyModule.setRefinements
(Map<RubyModule, RubyModule> refinements) Constructors in org.jruby with parameters of type RubyModuleModifierConstructorDescriptionIncludedModule
(Ruby runtime, RubyClass superClass, RubyModule origin) IncludedModuleWrapper
(Ruby runtime, RubyClass superClass, RubyModule origin) IncludedModuleWrapper
(Ruby runtime, RubyClass superClass, RubyModule origin, RubyModule methodsHolder) PrependedModule
(Ruby runtime, RubyClass superClass, RubyModule prependedClass) RespondToMissingMethod
(RubyModule implClass, Visibility visibility, String methodName) -
Uses of RubyModule in org.jruby.anno
Methods in org.jruby.anno with parameters of type RubyModuleModifier and TypeMethodDescriptionvoid
TypePopulator.DefaultTypePopulator.populate
(RubyModule clsmod, Class clazz) abstract void
TypePopulator.populate
(RubyModule clsmod, Class clazz) void
TypePopulator.populate
(ThreadContext context, RubyModule cls, Class clazz) void
TypePopulator.ReflectiveTypePopulator.populate
(RubyModule target, Class clazz) Deprecated.void
TypePopulator.ReflectiveTypePopulator.populate
(ThreadContext context, RubyModule target, Class clazz) static DynamicMethod
TypePopulator.populateModuleMethod
(RubyModule cls, DynamicMethod javaMethod) Deprecated.static DynamicMethod
TypePopulator.populateModuleMethod
(RubyModule cls, RubyClass singletonClass, DynamicMethod javaMethod) -
Uses of RubyModule in org.jruby.api
Methods in org.jruby.api that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
Convert.castAsModule
(ThreadContext context, IRubyObject newValue) Cast the given value to a RubyModule with most basic typeError thrown if the value is not a RubyModule.static RubyModule
Convert.castAsModule
(ThreadContext context, IRubyObject newValue, String message) Cast the given value to a RubyModule with most basic typeError thrown if the value is not a RubyModule.static RubyModule
Access.comparableModule
(ThreadContext context) Retrieve the instance of the module Comparable.static RubyModule
Define.defineModule
(ThreadContext context) There are times when an anonymous module is needed.static RubyModule
Define.defineModule
(ThreadContext context, String name) Define a new module under the Object namespace.static RubyModule
Access.enumerableModule
(ThreadContext context) Retrieve the instance of the module Enumerable.static RubyModule
Access.errnoModule
(ThreadContext context) Retrieve the instance of the module Errno.static RubyModule
Access.fileTestModule
(ThreadContext context) Retrieve the instance of the module FileTest.static RubyModule
Access.getModule
(ThreadContext context, String name) Retrieve the instance of the module by namestatic RubyModule
Access.kernelModule
(ThreadContext context) Retrieve the instance of the module Kernel.static RubyModule
Access.processModule
(ThreadContext context) Retrieve the instance of the module ProcessMethods in org.jruby.api with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic String
Error.createTypeErrorMessage
(ThreadContext context, IRubyObject object, RubyModule expectedType) Create a properly formatted error message for a typical TypeError.static TypeError
Error.typeError
(ThreadContext context, IRubyObject object, RubyModule expectedType) Create a TypeError with the given message. -
Uses of RubyModule in org.jruby.ast.executable
Methods in org.jruby.ast.executable with parameters of type RubyModuleModifier and TypeMethodDescriptionfinal IRubyObject
AbstractScript.getConstantFrom
(RubyModule target, ThreadContext context, String name, int i) final IRubyObject
RuntimeCache.getConstantFrom
(RubyModule target, ThreadContext context, String name, int index) final IRubyObject
AbstractScript.getConstantFrom0
(RubyModule target, ThreadContext context, String name) final IRubyObject
AbstractScript.getConstantFrom1
(RubyModule target, ThreadContext context, String name) final IRubyObject
AbstractScript.getConstantFrom2
(RubyModule target, ThreadContext context, String name) final IRubyObject
AbstractScript.getConstantFrom3
(RubyModule target, ThreadContext context, String name) final IRubyObject
AbstractScript.getConstantFrom4
(RubyModule target, ThreadContext context, String name) final IRubyObject
AbstractScript.getConstantFrom5
(RubyModule target, ThreadContext context, String name) final IRubyObject
AbstractScript.getConstantFrom6
(RubyModule target, ThreadContext context, String name) final IRubyObject
AbstractScript.getConstantFrom7
(RubyModule target, ThreadContext context, String name) final IRubyObject
AbstractScript.getConstantFrom8
(RubyModule target, ThreadContext context, String name) final IRubyObject
AbstractScript.getConstantFrom9
(RubyModule target, ThreadContext context, String name) RuntimeCache.getValueFrom
(RubyModule target, ThreadContext context, String name, int index) RuntimeCache.reCacheFrom
(RubyModule target, ThreadContext context, String name, int index) -
Uses of RubyModule in org.jruby.common
Methods in org.jruby.common that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
RubyWarnings.createWarningModule
(ThreadContext context) -
Uses of RubyModule in org.jruby.compiler
Methods in org.jruby.compiler that return RubyModuleMethods in org.jruby.compiler with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic String
Compilable.resolveFullName
(ThreadContext context, RubyModule implementationClass) Resolve the fully qualified name. -
Uses of RubyModule in org.jruby.embed.internal
Methods in org.jruby.embed.internal with parameters of type RubyModuleModifier and TypeMethodDescriptionboolean
EmbedRubyObjectAdapterImpl.isKindOf
(IRubyObject value, RubyModule rubyModule) -
Uses of RubyModule in org.jruby.ext.etc
Methods in org.jruby.ext.etc that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
RubyEtc.createEtcModule
(ThreadContext context) -
Uses of RubyModule in org.jruby.ext.ffi
Fields in org.jruby.ext.ffi declared as RubyModuleMethods in org.jruby.ext.ffi that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
DataConverter.createDataConverterModule
(ThreadContext context, RubyModule FFI) Methods in org.jruby.ext.ffi with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic RubyClass
AbstractInvoker.createAbstractInvokerClass
(ThreadContext context, RubyModule FFI, RubyClass Pointer) static RubyClass
AbstractMemory.createAbstractMemoryClass
(ThreadContext context, RubyModule FFI, RubyClass Object) static RubyClass
AutoPointer.createAutoPointerClass
(ThreadContext context, RubyModule FFI, RubyClass Pointer) static RubyClass
Buffer.createBufferClass
(ThreadContext context, RubyModule FFI, RubyClass AbstractMemory) static RubyClass
CallbackInfo.createCallbackInfoClass
(ThreadContext context, RubyModule module, RubyClass Type) static RubyModule
DataConverter.createDataConverterModule
(ThreadContext context, RubyModule FFI) protected abstract DynamicMethod
AbstractInvoker.createDynamicMethod
(RubyModule module) Create a methodstatic RubyClass
Enums.createEnumsClass
(ThreadContext context, RubyModule FFI, RubyClass Object, RubyModule DataConverter) static void
IOModule.createIOModule
(ThreadContext context, RubyModule FFI) static RubyClass
MemoryPointer.createMemoryPointerClass
(ThreadContext context, RubyModule FFI, RubyClass Pointer) static void
Platform.createPlatformModule
(ThreadContext context, RubyModule FFI) static RubyClass
Pointer.createPointerClass
(ThreadContext context, RubyModule FFI, RubyClass AbstractMemory) static RubyClass
StructByValue.createStructByValueClass
(ThreadContext context, RubyModule FFI, RubyClass Type) static RubyClass
Struct.createStructClass
(ThreadContext context, RubyModule FFI) Registers the StructLayout class in the JRuby runtime.static RubyClass
StructLayout.createStructLayoutClass
(ThreadContext context, RubyModule FFI, RubyClass Object, RubyModule Enumerable, RubyClass Type, RubyClass Struct) static RubyClass
Type.createTypeClass
(ThreadContext context, RubyModule FFI, RubyClass Object) void
Factory.init
(Ruby runtime, RubyModule FFI) Registers FFI ruby classes/modulesvoid
NoImplFactory.init
(Ruby runtime, RubyModule ffi) Constructors in org.jruby.ext.ffi with parameters of type RubyModule -
Uses of RubyModule in org.jruby.ext.ffi.io
Methods in org.jruby.ext.ffi.io with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic RubyClass
FileDescriptorIO.createFileDescriptorIOClass
(ThreadContext context, RubyModule FFI, RubyClass IO) -
Uses of RubyModule in org.jruby.ext.ffi.jffi
Methods in org.jruby.ext.ffi.jffi with parameters of type RubyModuleModifier and TypeMethodDescriptionDefaultMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) DefaultMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) JITNativeInvoker.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name) JITNativeInvoker.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1) final IRubyObject
JITNativeInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JITNativeInvoker.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2) JITNativeInvoker.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3) JITNativeInvoker.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, IRubyObject arg4) JITNativeInvoker.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, IRubyObject arg4, IRubyObject arg5) JITNativeInvoker.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, IRubyObject arg4, IRubyObject arg5, IRubyObject arg6) NativeInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) static RubyClass
CallbackManager.createCallbackClass
(ThreadContext context, RubyModule FFI) Creates a Callback class for a ruby runtimestatic RubyClass
DynamicLibrary.createDynamicLibraryClass
(ThreadContext context, RubyModule FFI, RubyClass Object) Function.createDynamicMethod
(RubyModule module) JFFIInvoker.createDynamicMethod
(RubyModule module) static final DynamicMethod
MethodFactory.createDynamicMethod
(Ruby runtime, RubyModule module, com.kenai.jffi.Function function, Type returnType, Type[] parameterTypes, com.kenai.jffi.CallingConvention convention, IRubyObject enums, boolean ignoreErrno) static RubyClass
Function.createFunctionClass
(ThreadContext context, RubyModule FFI) static RubyClass
JFFIInvoker.createInvokerClass
(ThreadContext context, RubyModule FFI) static RubyClass
VariadicInvoker.createVariadicInvokerClass
(ThreadContext context, RubyModule FFI, RubyClass Object) void
Factory.init
(Ruby runtime, RubyModule FFI) Constructors in org.jruby.ext.ffi.jffi with parameters of type RubyModuleModifierConstructorDescriptionDefaultMethod
(RubyModule implementationClass, com.kenai.jffi.Function function, org.jruby.ext.ffi.jffi.Signature signature, NativeInvoker defaultInvoker) JITNativeInvoker
(RubyModule implementationClass, com.kenai.jffi.Function function, org.jruby.ext.ffi.jffi.Signature signature) NativeInvoker
(RubyModule implementationClass, com.kenai.jffi.Function function, org.jruby.ext.ffi.jffi.Signature signature) -
Uses of RubyModule in org.jruby.ext.syslog
Methods in org.jruby.ext.syslog that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
RubySyslog.createSyslog
(ThreadContext context) -
Uses of RubyModule in org.jruby.ext.zlib
Methods in org.jruby.ext.zlib that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
RubyZlib.createZlibModule
(ThreadContext context) Create the Zlib module and add it to the Ruby runtime. -
Uses of RubyModule in org.jruby.gen
Methods in org.jruby.gen with parameters of type RubyModuleModifier and TypeMethodDescriptionvoid
org$jruby$AbstractRubyMethod$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$AbstractRubyMethod$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$common$RubyWarnings$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$common$RubyWarnings$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$bigdecimal$RubyBigDecimal$BigDecimalKernelMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$bigdecimal$RubyBigDecimal$BigDecimalKernelMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$bigdecimal$RubyBigDecimal$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$bigdecimal$RubyBigDecimal$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$coverage$CoverageModule$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$coverage$CoverageModule$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$date$RubyDate$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$date$RubyDate$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$date$RubyDateTime$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$date$RubyDateTime$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$date$TimeExt$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$date$TimeExt$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$digest$RubyDigest$DigestBase$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$digest$RubyDigest$DigestBase$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$digest$RubyDigest$DigestClass$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$digest$RubyDigest$DigestClass$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$digest$RubyDigest$DigestInstance$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$digest$RubyDigest$DigestInstance$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$digest$RubyDigest$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$digest$RubyDigest$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$etc$RubyEtc$IOExt$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$etc$RubyEtc$IOExt$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$etc$RubyEtc$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$etc$RubyEtc$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$AbstractInvoker$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$AbstractInvoker$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$AbstractMemory$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$AbstractMemory$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$Buffer$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$Buffer$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$CallbackInfo$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$CallbackInfo$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$io$FileDescriptorIO$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$io$FileDescriptorIO$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$IOModule$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$IOModule$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$jffi$DynamicLibrary$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$jffi$DynamicLibrary$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$jffi$DynamicLibrary$Symbol$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$jffi$DynamicLibrary$Symbol$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$jffi$Factory$LastError$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$jffi$Factory$LastError$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$jffi$Factory$WinapiLastError$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$jffi$Factory$WinapiLastError$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$jffi$Function$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$jffi$Function$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$jffi$JFFIInvoker$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$jffi$JFFIInvoker$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$jffi$VariadicInvoker$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$jffi$VariadicInvoker$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$MappedType$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$MappedType$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$MemoryPointer$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$MemoryPointer$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$Platform$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$Platform$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$Pointer$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$Pointer$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$Struct$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$Struct$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$StructByValue$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$StructByValue$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$StructLayout$ArrayField$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$StructLayout$ArrayField$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$StructLayout$ArrayProxy$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$StructLayout$ArrayProxy$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$StructLayout$CharArrayProxy$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$StructLayout$CharArrayProxy$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$StructLayout$Field$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$StructLayout$Field$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$StructLayout$FunctionField$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$StructLayout$FunctionField$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$StructLayout$InnerStructField$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$StructLayout$InnerStructField$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$StructLayout$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$StructLayout$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$Type$Array$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$Type$Array$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$Type$Builtin$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$Type$Builtin$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ffi$Type$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ffi$Type$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$fiber$ThreadFiber$FiberSchedulerSupport$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$fiber$ThreadFiber$FiberSchedulerSupport$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$fiber$ThreadFiber$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$fiber$ThreadFiber$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$io$nonblock$IONonBlock$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$io$nonblock$IONonBlock$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$jruby$CoreExt$String$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$jruby$CoreExt$String$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$jruby$JRubyExecutionContextLocal$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$jruby$JRubyExecutionContextLocal$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$jruby$JRubyFiberLocal$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$jruby$JRubyFiberLocal$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$jruby$JRubyLibrary$JRubyConfig$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$jruby$JRubyLibrary$JRubyConfig$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$jruby$JRubyLibrary$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$jruby$JRubyLibrary$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$jruby$JRubyObjectInputStream$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$jruby$JRubyObjectInputStream$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$jruby$JRubyUtilLibrary$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$jruby$JRubyUtilLibrary$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$monitor$Monitor$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$monitor$Monitor$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$pathname$RubyPathname$PathnameKernelMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$pathname$RubyPathname$PathnameKernelMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$pathname$RubyPathname$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$pathname$RubyPathname$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$ripper$RubyRipper$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$ripper$RubyRipper$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$set$EnumerableExt$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$set$EnumerableExt$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$set$RubySet$DivideTSortHash$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$set$RubySet$DivideTSortHash$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$set$RubySet$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$set$RubySet$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$set$RubySortedSet$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$set$RubySortedSet$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$Addrinfo$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$Addrinfo$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$Ifaddr$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$Ifaddr$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$Option$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$Option$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$RubyBasicSocket$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$RubyBasicSocket$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$RubyIPSocket$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$RubyIPSocket$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$RubyServerSocket$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$RubyServerSocket$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$RubySocket$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$RubySocket$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$RubyTCPServer$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$RubyTCPServer$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$RubyTCPSocket$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$RubyTCPSocket$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$RubyUDPSocket$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$RubyUDPSocket$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$RubyUNIXServer$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$RubyUNIXServer$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$socket$RubyUNIXSocket$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$socket$RubyUNIXSocket$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$thread$ConditionVariable$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$thread$ConditionVariable$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$thread$Mutex$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$thread$Mutex$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$thread$Queue$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$thread$Queue$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$thread$SizedQueue$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$thread$SizedQueue$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$timeout$Timeout$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$timeout$Timeout$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$tracepoint$TracePoint$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$tracepoint$TracePoint$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$zlib$JZlibDeflate$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$zlib$JZlibDeflate$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$zlib$JZlibInflate$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$zlib$JZlibInflate$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$zlib$JZlibRubyGzipReader$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$zlib$JZlibRubyGzipReader$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$zlib$JZlibRubyGzipWriter$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$zlib$JZlibRubyGzipWriter$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$zlib$RubyGzipFile$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$zlib$RubyGzipFile$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$zlib$RubyZlib$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$zlib$RubyZlib$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$ext$zlib$ZStream$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$ext$zlib$ZStream$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$addons$ArrayJavaAddons$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$addons$ArrayJavaAddons$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$addons$ClassJavaAddons$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$addons$ClassJavaAddons$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$addons$IOJavaAddons$AnyIO$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$addons$IOJavaAddons$AnyIO$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$addons$IOJavaAddons$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$addons$IOJavaAddons$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$addons$KernelJavaAddons$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$addons$KernelJavaAddons$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$addons$StringJavaAddons$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$addons$StringJavaAddons$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$proxies$ArrayJavaProxy$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$proxies$ArrayJavaProxy$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$proxies$ArrayJavaProxyCreator$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$proxies$ArrayJavaProxyCreator$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$proxies$InterfaceJavaProxy$JavaInterfaceExtender$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$proxies$InterfaceJavaProxy$JavaInterfaceExtender$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$proxies$JavaInterfaceTemplate$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$proxies$JavaInterfaceTemplate$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$proxies$JavaProxy$ClassMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$proxies$JavaProxy$ClassMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$proxies$JavaProxy$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$proxies$JavaProxy$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$java$proxies$MapJavaProxy$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$java$proxies$MapJavaProxy$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLang$Character$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLang$Character$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLang$CharSequence$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLang$CharSequence$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLang$Class$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLang$Class$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLang$ClassLoader$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLang$ClassLoader$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLang$Comparable$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLang$Comparable$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLang$Iterable$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLang$Iterable$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLang$Number$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLang$Number$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLang$Runnable$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLang$Runnable$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLang$String$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLang$String$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLang$Throwable$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLang$Throwable$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLangReflect$AccessibleObject$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLangReflect$AccessibleObject$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLangReflect$Constructor$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLangReflect$Constructor$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLangReflect$Field$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLangReflect$Field$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaLangReflect$Method$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaLangReflect$Method$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaMath$BigDecimal$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaMath$BigDecimal$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaNio$Buffer$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaNio$Buffer$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaTime$Instant$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaTime$Instant$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaTime$LocalDateTime$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaTime$LocalDateTime$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaTime$OffsetDateTime$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaTime$OffsetDateTime$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaTime$ZonedDateTime$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaTime$ZonedDateTime$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaUtil$Collection$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaUtil$Collection$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaUtil$Enumeration$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaUtil$Enumeration$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaUtil$Iterator$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaUtil$Iterator$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaUtil$List$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaUtil$List$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaUtilRegex$Matcher$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaUtilRegex$Matcher$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$JavaUtilRegex$Pattern$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$JavaUtilRegex$Pattern$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$ext$Module$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$ext$Module$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$Java$ByteArrayProxyMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$Java$ByteArrayProxyMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$Java$NewStyleExtensionInherited$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$Java$NewStyleExtensionInherited$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$Java$OldStyleExtensionInherited$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$Java$OldStyleExtensionInherited$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$Java$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$Java$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$JavaArrayUtilities$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$JavaArrayUtilities$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$JavaClass$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$JavaClass$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$JavaField$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$JavaField$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$JavaObject$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$JavaObject$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$JavaPackage$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$JavaPackage$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$JavaProxyMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$JavaProxyMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$JavaUtilities$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$JavaUtilities$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$proxy$JavaProxyClass$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$proxy$JavaProxyClass$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$proxy$JavaProxyClass$ProxyMethodImpl$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$proxy$JavaProxyClass$ProxyMethodImpl$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$proxy$JavaProxyConstructor$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$proxy$JavaProxyConstructor$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$javasupport$proxy$JavaProxyReflectionObject$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$javasupport$proxy$JavaProxyReflectionObject$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$NativeException$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$NativeException$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyArgsFile$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyArgsFile$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyArithmeticSequence$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyArithmeticSequence$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyArray$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyArray$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyBasicObject$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyBasicObject$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyBignum$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyBignum$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyBinding$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyBinding$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyBoolean$False$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyBoolean$False$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyBoolean$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyBoolean$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyBoolean$True$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyBoolean$True$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyChain$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyChain$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyClass$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyClass$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyClassPathVariable$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyClassPathVariable$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyComparable$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyComparable$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyComplex$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyComplex$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyConverter$EncodingErrorMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyConverter$EncodingErrorMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyConverter$InvalidByteSequenceErrorMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyConverter$InvalidByteSequenceErrorMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyConverter$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyConverter$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyConverter$UndefinedConversionErrorMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyConverter$UndefinedConversionErrorMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyData$DataMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyData$DataMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyData$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyData$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyDir$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyDir$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyEncoding$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyEncoding$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyEnumerable$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyEnumerable$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyEnumerator$FeedValue$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyEnumerator$FeedValue$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyEnumerator$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyEnumerator$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyException$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyException$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyFile$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyFile$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyFileStat$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyFileStat$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyFileTest$FileTestFileMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyFileTest$FileTestFileMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyFileTest$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyFileTest$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyFloat$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyFloat$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyFrozenError$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyFrozenError$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyGC$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyGC$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyGenerator$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyGenerator$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyGlobal$CaseInsensitiveStringOnlyRubyHash$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyGlobal$CaseInsensitiveStringOnlyRubyHash$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyHash$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyHash$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyInteger$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyInteger$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyInterrupt$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyInterrupt$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyIO$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyIO$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyIOBuffer$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyIOBuffer$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyKernel$LoopMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyKernel$LoopMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyKernel$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyKernel$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyKeyError$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyKeyError$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyLocalJumpError$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyLocalJumpError$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyMarshal$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyMarshal$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyMatchData$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyMatchData$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyMath$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyMath$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyMethod$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyMethod$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyModule$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyModule$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyModule$RefinementMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyModule$RefinementMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyNameError$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyNameError$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyNameError$RubyNameErrorMessage$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyNameError$RubyNameErrorMessage$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyNil$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyNil$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyNoMatchingPatternKeyError$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyNoMatchingPatternKeyError$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyNoMethodError$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyNoMethodError$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyNumeric$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyNumeric$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyObjectSpace$AbstractWeakMap$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyObjectSpace$AbstractWeakMap$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyObjectSpace$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyObjectSpace$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyObjectSpace$WeakKeyMap$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyObjectSpace$WeakKeyMap$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyProc$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyProc$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyProcess$GroupID$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyProcess$GroupID$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyProcess$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyProcess$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyProcess$RubyStatus$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyProcess$RubyStatus$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyProcess$Sys$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyProcess$Sys$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyProcess$UserID$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyProcess$UserID$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyProducer$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyProducer$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyRandom$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyRandom$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyRandom$RandomFormatter$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyRandom$RandomFormatter$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyRandomBase$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyRandomBase$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyRange$BSearch$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyRange$BSearch$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyRange$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyRange$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyRational$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyRational$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyRegexp$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyRegexp$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubySignal$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubySignal$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubySignalException$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubySignalException$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyStopIteration$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyStopIteration$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyString$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyString$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyStruct$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyStruct$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyStruct$StructMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyStruct$StructMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubySymbol$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubySymbol$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubySystemCallError$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubySystemCallError$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubySystemExit$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubySystemExit$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyThread$Backtrace$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyThread$Backtrace$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyThread$Location$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyThread$Location$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyThread$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyThread$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyThreadGroup$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyThreadGroup$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyTime$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyTime$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyUnboundMethod$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyUnboundMethod$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyUncaughtThrowError$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyUncaughtThrowError$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$RubyYielder$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$RubyYielder$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) void
org$jruby$runtime$load$LoadService$LoadPathMethods$POPULATOR.populate
(RubyModule cls, Class clazz) Deprecated.void
org$jruby$runtime$load$LoadService$LoadPathMethods$POPULATOR.populate
(ThreadContext context, RubyModule cls, Class clazz) -
Uses of RubyModule in org.jruby.internal.runtime
Methods in org.jruby.internal.runtime with parameters of type RubyModuleModifier and TypeMethodDescriptionabstract SplitSuperState
AbstractIRMethod.startSplitSuperCall
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) Constructors in org.jruby.internal.runtime with parameters of type RubyModuleModifierConstructorDescriptionAbstractIRMethod
(IRScope method, Visibility visibility, RubyModule implementationClass) AbstractIRMethod
(StaticScope scope, String id, int line, Visibility visibility, RubyModule implementationClass) -
Uses of RubyModule in org.jruby.internal.runtime.methods
Fields in org.jruby.internal.runtime.methods declared as RubyModuleModifier and TypeFieldDescriptionprotected RubyModule
DynamicMethod.definedClass
The module or class that originally defined this method.protected RubyModule
DynamicMethod.implementationClass
The Ruby module or class from which this method should `super`.protected RubyModule
DynamicMethod.protectedClass
The "protected class" used for calculating protected access.Methods in org.jruby.internal.runtime.methods that return RubyModuleModifier and TypeMethodDescriptionprotected static RubyModule
DynamicMethod.calculateProtectedClass
(RubyModule cls) Calculate, based on given RubyModule, which class in its hierarchy should be used to determine protected access.DynamicMethod.getDefinedClass()
Get the original owner of this method/PartialDelegatingMethod.getDefinedClass()
DelegatingDynamicMethod.getImplementationClass()
DynamicMethod.getImplementationClass()
Retrieve the class or module on which this method is implemented, used for 'super' logic among others.protected RubyModule
DelegatingDynamicMethod.getProtectedClass()
protected RubyModule
DynamicMethod.getProtectedClass()
Retrieve the pre-calculated "protected class" used for access checks.Methods in org.jruby.internal.runtime.methods with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic Supplier
<MethodHandle> InvokeDynamicMethodFactory.adaptHandle
(MethodHandle method, Ruby runtime, int actualRequired, int required, int optional, boolean rest, String rubyName, Class declaringClass, boolean isStatic, boolean hasContext, boolean hasBlock, boolean frame, RubyModule implementationClass) protected static RubyModule
DynamicMethod.calculateProtectedClass
(RubyModule cls) Calculate, based on given RubyModule, which class in its hierarchy should be used to determine protected access.AliasMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String unused) AliasMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String unused, Block block) AliasMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String unused, IRubyObject arg) AliasMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String unused, IRubyObject[] args) AliasMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String unused, IRubyObject[] args, Block block) AliasMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String unused, IRubyObject arg1, Block block) AliasMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String unused, IRubyObject arg1, IRubyObject arg2) AliasMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String unused, IRubyObject arg1, IRubyObject arg2, Block block) AliasMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String unused, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3) AliasMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String unused, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, Block block) AttrReaderMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) AttrWriterMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg1) CompiledIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) CompiledIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) CompiledIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) CompiledIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) CompiledIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) CompiledIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) CompiledIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) CompiledIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) CompiledIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) CompiledIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) CompiledIRNoProtocolMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) CompiledIRNoProtocolMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) CompiledIRNoProtocolMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) CompiledIRNoProtocolMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) CompiledIRNoProtocolMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) DefineMethodMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) DefineMethodMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) DefineMethodMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) DefineMethodMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) DefineMethodMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) DelegatingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name) DelegatingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, Block block) DelegatingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg) DelegatingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args) DelegatingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) DelegatingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, Block block) DelegatingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2) DelegatingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, Block block) DelegatingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3) DelegatingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, Block block) DynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name) DynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, Block block) DynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg0) DynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) A default implementation of n-arity, non-block 'call' method, which simply calls the n-arity, block-receiving version with the arg list and Block.NULL_BLOCK.abstract IRubyObject
DynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) The minimum 'call' method required for a dynamic method handle.DynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg0, Block block) DynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg0, IRubyObject arg1) DynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) DynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) DynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) HandleMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) HandleMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) HandleMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) HandleMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) HandleMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) InterpretedIRBodyMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) InterpretedIRBodyMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) InterpretedIRBodyMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) InterpretedIRBodyMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) InterpretedIRBodyMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) InterpretedIRBodyMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) InterpretedIRBodyMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) InterpretedIRBodyMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) InterpretedIRBodyMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) InterpretedIRBodyMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) InterpretedIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) InterpretedIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) InterpretedIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) InterpretedIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) InterpretedIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) InterpretedIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) InterpretedIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) InterpretedIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) InterpretedIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) InterpretedIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) JavaMethod.JavaMethodN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) abstract IRubyObject
JavaMethod.JavaMethodN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) final IRubyObject
JavaMethod.JavaMethodN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) JavaMethod.JavaMethodN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) JavaMethod.JavaMethodN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) JavaMethod.JavaMethodN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) final IRubyObject
JavaMethod.JavaMethodOne.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JavaMethod.JavaMethodOneBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) abstract IRubyObject
JavaMethod.JavaMethodOneOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) final IRubyObject
JavaMethod.JavaMethodOneOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) final IRubyObject
JavaMethod.JavaMethodOneOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) abstract IRubyObject
JavaMethod.JavaMethodOneOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg, Block block) final IRubyObject
JavaMethod.JavaMethodOneOrTwo.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JavaMethod.JavaMethodOneOrTwoBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) abstract IRubyObject
JavaMethod.JavaMethodOneOrTwoOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) final IRubyObject
JavaMethod.JavaMethodOneOrTwoOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) final IRubyObject
JavaMethod.JavaMethodOneOrTwoOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) abstract IRubyObject
JavaMethod.JavaMethodOneOrTwoOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) final IRubyObject
JavaMethod.JavaMethodOneOrTwoOrThree.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JavaMethod.JavaMethodOneOrTwoOrThreeBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) abstract IRubyObject
JavaMethod.JavaMethodOneOrTwoOrThreeOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) final IRubyObject
JavaMethod.JavaMethodOneOrTwoOrThreeOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) final IRubyObject
JavaMethod.JavaMethodOneOrTwoOrThreeOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) abstract IRubyObject
JavaMethod.JavaMethodOneOrTwoOrThreeOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) final IRubyObject
JavaMethod.JavaMethodThree.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JavaMethod.JavaMethodThreeBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) abstract IRubyObject
JavaMethod.JavaMethodThreeOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) final IRubyObject
JavaMethod.JavaMethodThreeOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) final IRubyObject
JavaMethod.JavaMethodThreeOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) abstract IRubyObject
JavaMethod.JavaMethodThreeOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, Block block) final IRubyObject
JavaMethod.JavaMethodTwo.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JavaMethod.JavaMethodTwoBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) abstract IRubyObject
JavaMethod.JavaMethodTwoOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) final IRubyObject
JavaMethod.JavaMethodTwoOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) final IRubyObject
JavaMethod.JavaMethodTwoOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) abstract IRubyObject
JavaMethod.JavaMethodTwoOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) final IRubyObject
JavaMethod.JavaMethodTwoOrThree.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JavaMethod.JavaMethodTwoOrThreeBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) abstract IRubyObject
JavaMethod.JavaMethodTwoOrThreeOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) final IRubyObject
JavaMethod.JavaMethodTwoOrThreeOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) final IRubyObject
JavaMethod.JavaMethodTwoOrThreeOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) abstract IRubyObject
JavaMethod.JavaMethodTwoOrThreeOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, Block block) final IRubyObject
JavaMethod.JavaMethodZero.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JavaMethod.JavaMethodZeroBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) abstract IRubyObject
JavaMethod.JavaMethodZeroOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) final IRubyObject
JavaMethod.JavaMethodZeroOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) final IRubyObject
JavaMethod.JavaMethodZeroOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) abstract IRubyObject
JavaMethod.JavaMethodZeroOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) final IRubyObject
JavaMethod.JavaMethodZeroOrOne.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JavaMethod.JavaMethodZeroOrOneBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) abstract IRubyObject
JavaMethod.JavaMethodZeroOrOneOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg) final IRubyObject
JavaMethod.JavaMethodZeroOrOneOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) final IRubyObject
JavaMethod.JavaMethodZeroOrOneOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) abstract IRubyObject
JavaMethod.JavaMethodZeroOrOneOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg, Block block) final IRubyObject
JavaMethod.JavaMethodZeroOrOneOrTwo.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JavaMethod.JavaMethodZeroOrOneOrTwoBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) abstract IRubyObject
JavaMethod.JavaMethodZeroOrOneOrTwoOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) final IRubyObject
JavaMethod.JavaMethodZeroOrOneOrTwoOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) final IRubyObject
JavaMethod.JavaMethodZeroOrOneOrTwoOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) abstract IRubyObject
JavaMethod.JavaMethodZeroOrOneOrTwoOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) final IRubyObject
JavaMethod.JavaMethodZeroOrOneOrTwoOrThree.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) JavaMethod.JavaMethodZeroOrOneOrTwoOrThreeBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) abstract IRubyObject
JavaMethod.JavaMethodZeroOrOneOrTwoOrThreeOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) final IRubyObject
JavaMethod.JavaMethodZeroOrOneOrTwoOrThreeOrN.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) final IRubyObject
JavaMethod.JavaMethodZeroOrOneOrTwoOrThreeOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) abstract IRubyObject
JavaMethod.JavaMethodZeroOrOneOrTwoOrThreeOrNBlock.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) MethodMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) MixedModeIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) MixedModeIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) MixedModeIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) MixedModeIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) MixedModeIRMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) NullMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) The one implementation of call, which throws an exception because NullMethod can't be invoked.PartialDelegatingMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name) PartialDelegatingMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, Block block) PartialDelegatingMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg) PartialDelegatingMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args) PartialDelegatingMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) PartialDelegatingMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, Block block) PartialDelegatingMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2) PartialDelegatingMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, Block block) PartialDelegatingMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3) PartialDelegatingMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, Block block) ProcMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) ProfilingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) ProfilingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) ProfilingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) ProfilingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) ProfilingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) ProfilingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) ProfilingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) ProfilingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) ProfilingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) ProfilingDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) RefinedMarker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) RefinedWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) SynchronizedDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) SynchronizedDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) SynchronizedDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) SynchronizedDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) SynchronizedDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) SynchronizedDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) SynchronizedDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) SynchronizedDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) SynchronizedDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) SynchronizedDynamicMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) UndefinedMethod.call
(ThreadContext context, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) The one implementation of call, which throws an exception because UndefinedMethod can't be invoked.protected IRubyObject
InterpretedIRBodyMethod.callInternal
(ThreadContext context, RubyModule clazz) boolean
DynamicMethod.callRespondTo
(ThreadContext context, IRubyObject self, String respondToMethodName, RubyModule klazz, RubySymbol name) InvocationMethodFactory.constructJavaMethod
(RubyModule implementationClass, JavaMethodDescriptor desc, String name, Class c) static MethodHandle
InvokeDynamicMethodFactory.finishAdapting
(com.headius.invokebinder.SmartBinder binder, RubyModule implementationClass, String rubyName, MethodHandle method, Class declaringClass, Ruby runtime, boolean isStatic, boolean frame) InvocationMethodFactory.getAnnotatedMethod
(RubyModule implementationClass, List<JavaMethodDescriptor> descs, String name) Use code generation to provide a method handle based on an annotated Java method.InvocationMethodFactory.getAnnotatedMethod
(RubyModule implementationClass, JavaMethodDescriptor desc, String name) Use code generation to provide a method handle based on an annotated Java method.InvokeDynamicMethodFactory.getAnnotatedMethod
(RubyModule implementationClass, List<JavaMethodDescriptor> descs, String name) InvokeDynamicMethodFactory.getAnnotatedMethod
(RubyModule implementationClass, JavaMethodDescriptor desc, String name) Use code generation to provide a method handle based on an annotated Java method.protected void
DynamicMethod.init
(RubyModule implementationClass, Visibility visibility) protected void
DynamicMethod.init
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.boolean
DelegatingDynamicMethod.isImplementedBy
(RubyModule other) boolean
DynamicMethod.isImplementedBy
(RubyModule other) protected void
CompiledIRNoProtocolMethod.pre
(ThreadContext context, StaticScope staticScope, RubyModule implementationClass, IRubyObject self, String name, Block block) protected void
MixedModeIRMethod.pre
(InterpreterContext ic, ThreadContext context, IRubyObject self, String name, Block block, RubyModule implClass) protected final void
JavaMethod.preFrameAndDummyScope
(ThreadContext context, IRubyObject self, RubyModule frameClass, String name, Block block) protected final void
JavaMethod.preFrameAndScope
(ThreadContext context, IRubyObject self, RubyModule frameClass, String name, Block block) protected final void
JavaMethod.preFrameOnly
(ThreadContext context, IRubyObject self, RubyModule frameClass, String name, Block block) protected void
CompiledIRMethod.preSplit
(InterpreterContext ic, ThreadContext context, IRubyObject self, String name, Block block, RubyModule implClass, DynamicScope scope) protected void
CompiledIRNoProtocolMethod.preSplit
(InterpreterContext ic, ThreadContext context, IRubyObject self, String name, Block block, RubyModule implClass, DynamicScope scope) protected void
InterpretedIRMethod.preSplit
(InterpreterContext ic, ThreadContext context, IRubyObject self, String name, Block block, RubyModule implClass, DynamicScope scope) protected void
MixedModeIRMethod.preSplit
(InterpreterContext ic, ThreadContext context, IRubyObject self, String name, Block block, RubyModule implClass, DynamicScope scope) void
DynamicMethod.setDefinedClass
(RubyModule definedClass) Set the defining class for this method, as when restructuring hierarchy for prepend.void
UndefinedMethod.setDefinedClass
(RubyModule definedClass) void
DelegatingDynamicMethod.setImplementationClass
(RubyModule implClass) void
DynamicMethod.setImplementationClass
(RubyModule implClass) Set the class on which this method is implemented, used for 'super' logic, among others.void
NullMethod.setImplementationClass
(RubyModule implClass) Dummy override of setImplementationClass that does nothing.void
UndefinedMethod.setImplementationClass
(RubyModule implClass) Dummy override of setImplementationClass that does nothing.SplitSuperState
<org.jruby.internal.runtime.methods.MethodSplitState> CompiledIRMethod.startSplitSuperCall
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) SplitSuperState
<org.jruby.internal.runtime.methods.MethodSplitState> CompiledIRNoProtocolMethod.startSplitSuperCall
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) SplitSuperState
<org.jruby.internal.runtime.methods.MethodSplitState> InterpretedIRMethod.startSplitSuperCall
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) SplitSuperState
<org.jruby.internal.runtime.methods.MethodSplitState> MixedModeIRMethod.startSplitSuperCall
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) Constructors in org.jruby.internal.runtime.methods with parameters of type RubyModuleModifierConstructorDescriptionAliasMethod
(RubyModule implementationClass, CacheEntry entry, String newName, String oldName) For some java native methods it is convenient to pass in a String instead of a ByteList.AttrReaderMethod
(RubyModule implementationClass, Visibility visibility, String variableName) AttrReaderMethod
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfiguration, String variableName) Deprecated.AttrReaderMethod
(RubyModule implementationClass, Visibility visibility, VariableAccessor accessor) AttrWriterMethod
(RubyModule implementationClass, Visibility visibility, String variableName) AttrWriterMethod
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfiguration, String variableName) Deprecated.CompiledIRMethod
(MethodHandle variable, MethodHandle specific, int specificArity, String id, int line, StaticScope scope, Visibility visibility, RubyModule implementationClass, String encodedArgumentDescriptors, boolean receivesKeywordArgs, boolean needsToFindImplementer) CompiledIRMethod
(MethodHandle variable, MethodHandle specific, int specificArity, IRScope method, Visibility visibility, RubyModule implementationClass, String encodedArgumentDescriptors) CompiledIRMethod
(MethodHandle variable, String id, int line, StaticScope scope, Visibility visibility, RubyModule implementationClass) CompiledIRMethod
(MethodHandle variable, String id, int line, StaticScope scope, Visibility visibility, RubyModule implementationClass, String encodedArgumentDescriptors, boolean recievesKeywordArgs, boolean needsToFindImplementer) CompiledIRMethod
(MethodHandle variable, IRScope method, Visibility visibility, RubyModule implementationClass, String encodedArgumentDescriptors) CompiledIRNoProtocolMethod
(MethodHandle handle, StaticScope scope, String file, int line, RubyModule implementationClass, boolean needsDynamicScope) DefineMethodMethod
(IRScope method, Visibility visibility, RubyModule implementationClass, Block capturedBlock) protected
DynamicMethod
(RubyModule implementationClass, Visibility visibility) Deprecated.protected
DynamicMethod
(RubyModule implementationClass, Visibility visibility, String name) Base constructor for dynamic method handles with names.protected
DynamicMethod
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.protected
DynamicMethod
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, String name) Deprecated.HandleMethod
(RubyModule implementationClass, Visibility visibility, String name, long encodedSignature, boolean builtin, boolean notImplemented, String parameterDesc, int min, int max, Supplier<MethodHandle> maker0, Supplier<MethodHandle> maker1, Supplier<MethodHandle> maker2, Supplier<MethodHandle> maker3, Supplier<MethodHandle> maker4) InterpretedIRBodyMethod
(IRScope method, RubyModule implementationClass) InterpretedIRMethod
(IRScope method, Visibility visibility, RubyModule implementationClass) JavaMethod
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethod
(RubyModule implementationClass, Visibility visibility, String name) JavaMethod
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethod
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, String name) Deprecated.JavaMethodN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, String name) Deprecated.JavaMethodNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, String name) Deprecated.JavaMethodOne
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOne
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOne
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOne
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, String name) Deprecated.JavaMethodOneBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOneOrN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneOrN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOneOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, String name) Deprecated.JavaMethodOneOrNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneOrNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneOrNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOneOrTwo
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneOrTwo
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneOrTwo
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOneOrTwoBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneOrTwoBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneOrTwoBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOneOrTwoOrN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneOrTwoOrN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneOrTwoOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOneOrTwoOrNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneOrTwoOrNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneOrTwoOrNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOneOrTwoOrThree
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneOrTwoOrThree
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneOrTwoOrThree
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOneOrTwoOrThreeBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneOrTwoOrThreeBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneOrTwoOrThreeBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOneOrTwoOrThreeOrN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneOrTwoOrThreeOrN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneOrTwoOrThreeOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodOneOrTwoOrThreeOrNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodOneOrTwoOrThreeOrNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodOneOrTwoOrThreeOrNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodThree
(RubyModule implementationClass, Visibility visibility) JavaMethodThree
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodThree
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodThreeBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodThreeBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodThreeBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodThreeOrN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodThreeOrN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodThreeOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodThreeOrNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodThreeOrNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodThreeOrNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodTwo
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodTwo
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodTwo
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodTwoBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodTwoBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodTwoBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodTwoOrN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodTwoOrN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodTwoOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodTwoOrNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodTwoOrNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodTwoOrNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodTwoOrThree
(RubyModule implementationClass, Visibility visibility) JavaMethodTwoOrThree
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodTwoOrThree
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodTwoOrThreeBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodTwoOrThreeBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodTwoOrThreeBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodTwoOrThreeOrN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodTwoOrThreeOrN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodTwoOrThreeOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodTwoOrThreeOrNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodTwoOrThreeOrNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodTwoOrThreeOrNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZero
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZero
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZero
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZero
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, String name) Deprecated.JavaMethodZeroBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig, String name) Deprecated.JavaMethodZeroOrNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOne
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOne
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOne
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneOrN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneOrN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneOrNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneOrNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneOrNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneOrTwo
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneOrTwo
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneOrTwo
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneOrTwoBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneOrTwoBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneOrTwoBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneOrTwoOrN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneOrTwoOrN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneOrTwoOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneOrTwoOrNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneOrTwoOrNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneOrTwoOrNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneOrTwoOrThree
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneOrTwoOrThree
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneOrTwoOrThree
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneOrTwoOrThreeBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneOrTwoOrThreeBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneOrTwoOrThreeBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneOrTwoOrThreeOrN
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneOrTwoOrThreeOrN
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneOrTwoOrThreeOrN
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.JavaMethodZeroOrOneOrTwoOrThreeOrNBlock
(RubyModule implementationClass, Visibility visibility) Deprecated.JavaMethodZeroOrOneOrTwoOrThreeOrNBlock
(RubyModule implementationClass, Visibility visibility, String name) JavaMethodZeroOrOneOrTwoOrThreeOrNBlock
(RubyModule implementationClass, Visibility visibility, CallConfiguration callConfig) Deprecated.MethodMethod
(RubyModule implementationClass, RubyUnboundMethod method, Visibility visibility) MixedModeIRMethod
(IRScope method, Visibility visibility, RubyModule implementationClass) PartialDelegatingMethod
(RubyModule implementationClass, CacheEntry entry, Visibility visibility) Constructor for PartialDelegatingMethod.ProcMethod
(RubyModule implementationClass, RubyProc proc, Visibility visibility, String name) Constructor for ProcMethod.RefinedMarker
(RubyModule implementationClass, Visibility visibility, String name) RefinedWrapper
(RubyModule implementationClass, Visibility visibility, String name, DynamicMethod wrapped) -
Uses of RubyModule in org.jruby.ir
Methods in org.jruby.ir with parameters of type RubyModuleModifier and TypeMethodDescriptionvoid
IRScope.inlineMethod
(IRMethod methodToInline, RubyModule metaclass, long callsiteId, int classToken, boolean cloneHost) void
IRScope.inlineMethodCompiled
(IRMethod methodToInline, RubyModule implClass, long callsiteId, int classToken, boolean cloneHost) void
IRScope.inlineMethodJIT
(IRMethod methodToInline, RubyModule implClass, long callsiteId, int classToken, boolean cloneHost) -
Uses of RubyModule in org.jruby.ir.instructions
Methods in org.jruby.ir.instructions that return RubyModuleConstructors in org.jruby.ir.instructions with parameters of type RubyModuleModifierConstructorDescriptionModuleVersionGuardInstr
(RubyModule module, int expectedVersion, Operand candidateObj, Label failurePathLabel) -
Uses of RubyModule in org.jruby.ir.interpreter
Methods in org.jruby.ir.interpreter with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic IRubyObject
Interpreter.evalSimple
(ThreadContext context, RubyModule under, IRubyObject self, RubyString src, String file, int lineNumber, EvalType evalType) Evaluate the given string.ExitableInterpreterEngine.interpret
(ThreadContext context, Block block, IRubyObject self, ExitableInterpreterContext interpreterContext, ExitableInterpreterEngineState state, RubyModule implClass, String name, IRubyObject[] args, Block blockArg) InterpreterEngine.interpret
(ThreadContext context, Block block, IRubyObject self, InterpreterContext interpreterContext, RubyModule implClass, String name, Block blockArg) InterpreterEngine.interpret
(ThreadContext context, Block block, IRubyObject self, InterpreterContext interpreterContext, RubyModule implClass, String name, IRubyObject[] args, Block blockArg) InterpreterEngine.interpret
(ThreadContext context, Block block, IRubyObject self, InterpreterContext interpreterContext, RubyModule implClass, String name, IRubyObject arg1, Block blockArg) InterpreterEngine.interpret
(ThreadContext context, Block block, IRubyObject self, InterpreterContext interpreterContext, RubyModule implClass, String name, IRubyObject arg1, IRubyObject arg2, Block blockArg) InterpreterEngine.interpret
(ThreadContext context, Block block, IRubyObject self, InterpreterContext interpreterContext, RubyModule implClass, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, Block blockArg) InterpreterEngine.interpret
(ThreadContext context, Block block, IRubyObject self, InterpreterContext interpreterContext, RubyModule implClass, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, IRubyObject arg4, Block blockArg) StartupInterpreterEngine.interpret
(ThreadContext context, Block block, IRubyObject self, InterpreterContext interpreterContext, RubyModule implClass, String name, IRubyObject[] args, Block blockArg) static IRubyObject
Interpreter.INTERPRET_CLASS
(ThreadContext context, IRScope body, RubyModule clazz, String name) static IRubyObject
Interpreter.INTERPRET_EVAL
(ThreadContext context, IRubyObject self, InterpreterContext ic, RubyModule clazz, IRubyObject[] args, String name, Block blockArg) static IRubyObject
Interpreter.INTERPRET_METACLASS
(ThreadContext context, IRScope body, RubyModule clazz, String name, Visibility visibility) static IRubyObject
Interpreter.INTERPRET_METHOD
(ThreadContext context, IRScope body, RubyModule implClass, IRubyObject self, String name, Block block) static IRubyObject
Interpreter.INTERPRET_METHOD
(ThreadContext context, IRScope body, RubyModule implClass, IRubyObject self, String name, IRubyObject[] args, Block block) static IRubyObject
Interpreter.INTERPRET_METHOD
(ThreadContext context, IRScope body, RubyModule implClass, IRubyObject self, String name, IRubyObject arg0, Block block) static IRubyObject
Interpreter.INTERPRET_METHOD
(ThreadContext context, IRScope body, RubyModule implClass, IRubyObject self, String name, IRubyObject arg0, IRubyObject arg1, Block block) static IRubyObject
Interpreter.INTERPRET_METHOD
(ThreadContext context, IRScope body, RubyModule implClass, IRubyObject self, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) static IRubyObject
Interpreter.INTERPRET_MODULE
(ThreadContext context, IRScope body, RubyModule clazz, String name) static IRubyObject
Interpreter.INTERPRET_ROOT
(ThreadContext context, IRubyObject self, InterpreterContext ic, RubyModule clazz, String name) static void
Interpreter.preFrameScope
(InterpreterContext ic, ThreadContext context, IRubyObject self, String name, Block block, RubyModule implClass, DynamicScope parentScope, Visibility visibility) protected static void
InterpreterEngine.processBookKeepingOp
(ThreadContext context, Block block, Instr instr, Operation operation, String name, IRubyObject[] args, IRubyObject self, Block blockArg, RubyModule implClass, DynamicScope currDynScope, Object[] temp, StaticScope currScope) -
Uses of RubyModule in org.jruby.ir.runtime
Methods in org.jruby.ir.runtime that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
IRRuntimeHelpers.findInstanceMethodContainer
(ThreadContext context, DynamicScope currDynScope, IRubyObject self) static RubyModule
IRRuntimeHelpers.getCurrentClassBase
(ThreadContext context, IRubyObject self) Find the base class or "cbase" used for various class-level operations.static RubyModule
IRRuntimeHelpers.getModuleFromScope
(ThreadContext context, StaticScope scope, IRubyObject arg) static RubyModule
IRRuntimeHelpers.newRubyClassFromIR
(ThreadContext context, String id, StaticScope scope, Object superClass, Object container, boolean maybeRefined) static RubyModule
IRRuntimeHelpers.newRubyModuleFromIR
(ThreadContext context, String id, StaticScope scope, Object rubyContainer, boolean maybeRefined) Methods in org.jruby.ir.runtime with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic IRubyObject
IRRuntimeHelpers.classSuper
(ThreadContext context, IRubyObject self, String id, RubyModule definingModule, IRubyObject[] args, Block block) static IRubyObject
IRRuntimeHelpers.classSuperIter
(ThreadContext context, IRubyObject self, String id, RubyModule definingModule, IRubyObject[] args, Block block) static IRubyObject
IRRuntimeHelpers.classSuperIterSplatArgs
(ThreadContext context, IRubyObject self, String methodName, RubyModule definingModule, IRubyObject[] args, Block block, boolean[] splatMap) static IRubyObject
IRRuntimeHelpers.classSuperSplatArgs
(ThreadContext context, IRubyObject self, String methodName, RubyModule definingModule, IRubyObject[] args, Block block, boolean[] splatMap) static IRubyObject
IRRuntimeHelpers.getClassVariable
(ThreadContext context, RubyModule module, String id) static IRubyObject
IRRuntimeHelpers.instanceSuper
(ThreadContext context, IRubyObject self, String id, RubyModule definingModule, IRubyObject[] args, Block block) static IRubyObject
IRRuntimeHelpers.instanceSuperIter
(ThreadContext context, IRubyObject self, String id, RubyModule definingModule, IRubyObject[] args, Block block) static IRubyObject
IRRuntimeHelpers.instanceSuperIterSplatArgs
(ThreadContext context, IRubyObject self, String methodName, RubyModule definingModule, IRubyObject[] args, Block block, boolean[] splatMap) static IRubyObject
IRRuntimeHelpers.instanceSuperSplatArgs
(ThreadContext context, IRubyObject self, String methodName, RubyModule definingModule, IRubyObject[] args, Block block, boolean[] splatMap) static IRubyObject
IRRuntimeHelpers.isDefinedClassVar
(ThreadContext context, RubyModule receiver, String name, IRubyObject definedMessage) static IRubyObject
IRRuntimeHelpers.isDefinedSuper
(ThreadContext context, IRubyObject receiver, String frameName, RubyModule frameClass, IRubyObject definedMessage) static void
IRRuntimeHelpers.putClassVariable
(ThreadContext context, IRubyObject self, RubyModule module, String id, IRubyObject value) -
Uses of RubyModule in org.jruby.ir.targets.indy
Methods in org.jruby.ir.targets.indy with parameters of type RubyModuleModifier and TypeMethodDescriptionprotected com.headius.invokebinder.SmartHandle
ArrayDerefInvokeSite.testTarget
(IRubyObject self, RubyModule testClass) protected com.headius.invokebinder.SmartHandle
InvokeSite.testTarget
(IRubyObject self, RubyModule testClass) protected MethodHandle
InvokeSite.updateInvocationTarget
(MethodHandle target, IRubyObject self, RubyModule testClass, DynamicMethod method, SwitchPoint switchPoint) Update the given call site using the new target, wrapping with appropriate bind and argument-juggling logic. -
Uses of RubyModule in org.jruby.ir.transformations.inlining
Methods in org.jruby.ir.transformations.inlining with parameters of type RubyModuleModifier and TypeMethodDescriptionCFGInliner.inlineMethod
(IRScope scopeToInline, RubyModule implClass, int classToken, BasicBlock callBB, CallBase call, boolean cloneHost) -
Uses of RubyModule in org.jruby.java.invokers
Methods in org.jruby.java.invokers with parameters of type RubyModuleModifier and TypeMethodDescriptionConstructorInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) ConstructorInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) ConstructorInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) ConstructorInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) ConstructorInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) ConstructorInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) ConstructorInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) ConstructorInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) ConstructorInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) ConstructorInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) final IRubyObject
InstanceFieldGetter.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) final IRubyObject
InstanceFieldSetter.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg) InstanceMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) InstanceMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) InstanceMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) InstanceMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) InstanceMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) InstanceMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) InstanceMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) InstanceMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) InstanceMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) InstanceMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) SingletonMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) SingletonMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) SingletonMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) SingletonMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) SingletonMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) SingletonMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) SingletonMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) SingletonMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) SingletonMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) SingletonMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) final IRubyObject
StaticFieldGetter.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) final IRubyObject
StaticFieldSetter.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg) StaticMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) StaticMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) StaticMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) StaticMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) StaticMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) StaticMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) StaticMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) StaticMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) StaticMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) StaticMethodInvoker.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) Constructors in org.jruby.java.invokers with parameters of type RubyModuleModifierConstructorDescriptionConstructorInvoker
(RubyModule host, Supplier<Constructor[]> ctors, String name) protected
FieldMethodOne
(RubyModule host, Field field, String name) protected
FieldMethodZero
(RubyModule host, Field field, String name) InstanceFieldGetter
(String name, RubyModule host, Field field) InstanceFieldSetter
(String name, RubyModule host, Field field) InstanceMethodInvoker
(RubyModule host, Supplier<Method[]> methods, String name) StaticFieldGetter
(String name, RubyModule host, Field field) StaticFieldSetter
(String name, RubyModule host, Field field) StaticMethodInvoker
(RubyModule host, Supplier<Method[]> methods, String name) -
Uses of RubyModule in org.jruby.java.proxies
Methods in org.jruby.java.proxies that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
JavaInterfaceTemplate.createJavaInterfaceTemplateModule
(ThreadContext context) Methods in org.jruby.java.proxies with parameters of type RubyModuleModifier and TypeMethodDescriptionConcreteJavaProxy.NewMethodReified.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block blk) ConcreteJavaProxy.StaticJCreateMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) static RubyClass
ArrayJavaProxy.createArrayJavaProxy
(ThreadContext context, RubyClass JavaProxy, RubyModule Enumerable) static RubyClass
JavaProxy.createJavaProxy
(ThreadContext context, RubyClass Object, RubyModule JavaProxyMethods) static IRubyObject
JavaProxy.getJavaClass
(RubyModule target) static void
JavaProxy.installField
(ThreadContext context, String asName, Field field, RubyModule target) -
Uses of RubyModule in org.jruby.java.util
Methods in org.jruby.java.util with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic boolean
ClassUtils.isJavaClassProxyType
(RubyModule clazz) -
Uses of RubyModule in org.jruby.javasupport
Subclasses of RubyModule in org.jruby.javasupportModifier and TypeClassDescriptionclass
A "thin" Java package wrapper (for the runtime to see them as Ruby objects).Methods in org.jruby.javasupport that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
JavaArrayUtilities.createJavaArrayUtilitiesModule
(ThreadContext context) static RubyModule
Java.createJavaModule
(ThreadContext context) static RubyModule
JavaProxyMethods.createJavaProxyMethods
(ThreadContext context) static RubyModule
Java.get_interface_module
(Ruby runtime, IRubyObject java_class) Deprecated.static RubyModule
Java.get_interface_module
(ThreadContext context, IRubyObject java_class) static RubyModule
Java.get_package_module
(IRubyObject self, IRubyObject name) Deprecated.static RubyModule
Java.get_package_module
(ThreadContext context, IRubyObject self, IRubyObject name) static RubyModule
Java.get_proxy_class
(IRubyObject self, IRubyObject java_class) Deprecated.static RubyModule
Java.get_proxy_class
(ThreadContext context, IRubyObject self, IRubyObject java_class) static RubyModule
Java.getInterfaceModule
(Ruby runtime, Class javaClass) Deprecated.static RubyModule
Java.getInterfaceModule
(Ruby runtime, JavaClass javaClass) Deprecated.static RubyModule
Java.getInterfaceModule
(ThreadContext context, Class javaClass) JavaSupport.getJavaArrayUtilitiesModule()
Deprecated.JavaSupport.getJavaInterfaceTemplate()
JavaSupport.getJavaModule()
Deprecated.JavaSupport.getJavaModule
(ThreadContext context) static RubyModule
Java.getJavaPackageModule
(Ruby runtime, Package pkg) static RubyModule
Java.getJavaPackageModule
(Ruby runtime, String packageString) Deprecated.static RubyModule
Java.getJavaPackageModule
(ThreadContext context, String packageString) JavaSupport.getJavaUtilitiesModule()
Deprecated.JavaSupport.getPackageModuleTemplate()
Deprecated.static RubyModule
Java.getProxyClass
(Ruby runtime, Class<?> clazz) Deprecated.static RubyModule
Java.getProxyClass
(Ruby runtime, JavaClass javaClass) Deprecated.static RubyModule
Java.getProxyClass
(ThreadContext context, Class<?> clazz) final RubyModule
JavaClass.getProxyModule()
Deprecated.static RubyModule
Java.resolveType
(Ruby runtime, IRubyObject type) Deprecated.static RubyModule
Java.resolveType
(ThreadContext context, IRubyObject type) static RubyModule
Java.setProxyClass
(Ruby runtime, RubyModule target, String constName, Class<?> javaClass) Deprecated.static RubyModule
Java.setProxyClass
(ThreadContext context, RubyModule target, String constName, Class<?> javaClass) Methods in org.jruby.javasupport with parameters of type RubyModuleModifier and TypeMethodDescriptionfinal IRubyObject
Java.JCreateMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) final IRubyObject
Java.JCreateMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) final IRubyObject
Java.JCreateMethod.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) static RubyClass
JavaObject.createJavaObjectClass
(Ruby runtime, RubyClass Object, RubyModule javaModule) Deprecated.static IRubyObject
Java.get_inner_class
(ThreadContext context, RubyModule self, IRubyObject name) static Class
<?> JavaClass.getJavaClass
(ThreadContext context, RubyModule proxy) Deprecated.static Class
<?> JavaUtil.getJavaClass
(RubyModule type) Deprecated.static Class
<?> JavaUtil.getJavaClass
(RubyModule type, Supplier<Class<?>> ifNone) Get the associated JavaClass for a Java proxy module/class or wrapper.static Class
<?> JavaUtil.getJavaClass
(ThreadContext context, RubyModule type) Get the associated JavaClass for a Java proxy module/class or wrapper.static Class
<?> JavaClass.getJavaClassIfProxy
(ThreadContext context, RubyModule type) Deprecated.static boolean
Java.isProxyType
(RubyModule proxy) static boolean
JavaClass.isProxyType
(ThreadContext context, RubyModule proxy) Deprecated.Note: Interal APIstatic IRubyObject
JavaClass.java_class
(ThreadContext context, RubyModule type) Deprecated.static RubyModule
Java.setProxyClass
(Ruby runtime, RubyModule target, String constName, Class<?> javaClass) Deprecated.static RubyModule
Java.setProxyClass
(ThreadContext context, RubyModule target, String constName, Class<?> javaClass) -
Uses of RubyModule in org.jruby.javasupport.binding
Methods in org.jruby.javasupport.binding that return RubyModuleModifier and TypeMethodDescriptionInitializer.initialize
(RubyModule proxy) Deprecated.abstract RubyModule
Initializer.initialize
(ThreadContext context, RubyModule proxy) static RubyModule
Initializer.setupProxyClass
(Ruby runtime, Class<?> javaClass, RubyClass proxy) Deprecated.static RubyModule
Initializer.setupProxyClass
(ThreadContext context, Class<?> javaClass, RubyClass proxy) static RubyModule
Initializer.setupProxyModule
(Ruby runtime, Class<?> javaClass, RubyModule proxy) Deprecated.static RubyModule
Initializer.setupProxyModule
(ThreadContext context, Class<?> javaClass, RubyModule proxy) Methods in org.jruby.javasupport.binding with parameters of type RubyModuleModifier and TypeMethodDescriptionprotected final void
MethodInstaller.defineMethods
(RubyModule target, DynamicMethod invoker, boolean checkDups) Deprecated.protected final void
MethodInstaller.defineMethods
(ThreadContext context, RubyModule target, DynamicMethod invoker, boolean checkDups) Initializer.initialize
(RubyModule proxy) Deprecated.abstract RubyModule
Initializer.initialize
(ThreadContext context, RubyModule proxy) protected void
MethodGatherer.installClassMethods
(ThreadContext context, RubyModule proxy) protected void
MethodGatherer.installConstants
(ThreadContext context, RubyModule proxy) protected void
MethodGatherer.installInnerClasses
(ThreadContext context, Class<?> javaClass, RubyModule proxy) static RubyModule
Initializer.setupProxyModule
(Ruby runtime, Class<?> javaClass, RubyModule proxy) Deprecated.static RubyModule
Initializer.setupProxyModule
(ThreadContext context, Class<?> javaClass, RubyModule proxy) -
Uses of RubyModule in org.jruby.javasupport.ext
Methods in org.jruby.javasupport.ext with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic void
JavaExtensions.define
(Ruby runtime, Class javaClass, RubyModule proxyClass) static void
JavaLang.define
(ThreadContext context, RubyModule _Enumerable, RubyModule _Comparable) static void
JavaUtil.define
(ThreadContext context, RubyModule Enumerable) static void
Kernel.define
(ThreadContext context, RubyModule Kernel) -
Uses of RubyModule in org.jruby.javasupport.proxy
Methods in org.jruby.javasupport.proxy with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic RubyClass
JavaProxyClass.createJavaProxyClassClass
(ThreadContext context, RubyClass Object, RubyModule Java) static void
JavaProxyClass.createJavaProxyClasses
(ThreadContext context, RubyModule Java, RubyClass Object) static RubyClass
JavaProxyConstructor.createJavaProxyConstructorClass
(ThreadContext context, RubyClass Object, RubyModule Java) static RubyClass
JavaProxyClass.ProxyMethodImpl.createJavaProxyMethodClass
(ThreadContext context, RubyClass Object, RubyModule Java) -
Uses of RubyModule in org.jruby.parser
Methods in org.jruby.parser that return RubyModuleModifier and TypeMethodDescriptionStaticScope.determineModule()
Update current scoping structure to populate with proper cref scoping values.StaticScope.getModule()
Get the live CRef module associated with this scope.StaticScope.getOverlayModuleForRead()
StaticScope.getOverlayModuleForWrite
(ThreadContext context) Methods in org.jruby.parser with parameters of type RubyModule -
Uses of RubyModule in org.jruby.runtime
Methods in org.jruby.runtime that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
Helpers.checkIsModule
(IRubyObject maybeModule) Deprecated.static RubyModule
Helpers.findImplementerIfNecessary
(RubyModule clazz, RubyModule implementationClass) Block.getFrameClass()
Gets the frame class.ThreadContext.getFrameKlazz()
InterpretedIRBlockBody.getImplementationClass()
MixedModeIRBlockBody.getImplementationClass()
Frame.getKlazz()
Return class that we are calling againststatic RubyModule
Helpers.getNthScopeModule
(StaticScope scope, int depth) ThreadContext.getPrivateConstantReference()
static RubyModule
Helpers.getSuperClassForDefined
(Ruby runtime, RubyModule klazz) Deprecated.Methods in org.jruby.runtime with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic RubySymbol
Helpers.addInstanceMethod
(RubyModule containingClass, String name, DynamicMethod method, Visibility visibility, ThreadContext context, Ruby runtime) Deprecated.static RubySymbol
Helpers.addInstanceMethod
(RubyModule containingClass, RubySymbol symbol, DynamicMethod method, Visibility visibility, ThreadContext context) static RubySymbol
Helpers.addInstanceMethod
(RubyModule containingClass, RubySymbol symbol, DynamicMethod method, Visibility visibility, ThreadContext context, Ruby runtime) Deprecated.Helpers.MethodMissingWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name) Helpers.MethodMissingWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, Block block) Helpers.MethodMissingWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0) Helpers.MethodMissingWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args) Helpers.MethodMissingWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject[] args, Block block) Helpers.MethodMissingWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, Block block) Helpers.MethodMissingWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1) Helpers.MethodMissingWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, Block block) Helpers.MethodMissingWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2) Helpers.MethodMissingWrapper.call
(ThreadContext context, IRubyObject self, RubyModule clazz, String name, IRubyObject arg0, IRubyObject arg1, IRubyObject arg2, Block block) static void
Helpers.checkSuperDisabledOrOutOfMethod
(ThreadContext context, RubyModule klass, String name) static RubyModule
Helpers.findImplementerIfNecessary
(RubyModule clazz, RubyModule implementationClass) abstract DynamicMethod
MethodFactory.getAnnotatedMethod
(RubyModule implementationClass, List<JavaMethodDescriptor> desc, String name) Based on a list of annotated Java methods, generate a method handle using the annotation and the target signatures.abstract DynamicMethod
MethodFactory.getAnnotatedMethod
(RubyModule implementationClass, JavaMethodDescriptor desc, String name) Based on an annotated Java method object, generate a method handle using the annotation and the target signature.static RubyModule
Helpers.getSuperClassForDefined
(Ruby runtime, RubyModule klazz) Deprecated.static IRubyObject
Helpers.invokeSuper
(ThreadContext context, IRubyObject self, RubyModule klass, String name, IRubyObject[] args, Block block) static IRubyObject
Helpers.invokeSuper
(ThreadContext context, IRubyObject self, RubyModule klass, String name, IRubyObject arg0, Block block) ObjectSpace.iterator
(RubyModule rubyClass) static Block
CallBlock.newCallClosure
(IRubyObject self, RubyModule imClass, Arity arity, BlockCallback callback, ThreadContext context) Deprecated.static Block
CallBlock.newCallClosure
(IRubyObject self, RubyModule imClass, Signature signature, BlockCallback callback, ThreadContext context) static Block
CallBlock19.newCallClosure
(IRubyObject self, RubyModule imClass, Arity arity, BlockCallback callback, ThreadContext context) Deprecated.static Block
CallBlock19.newCallClosure
(IRubyObject self, RubyModule imClass, Signature signature, BlockCallback callback, ThreadContext context) static Visibility
Helpers.performNormalMethodChecksAndDetermineVisibility
(Ruby runtime, RubyModule clazz, RubySymbol symbol, Visibility visibility) Deprecated.static Visibility
Helpers.performNormalMethodChecksAndDetermineVisibility
(ThreadContext context, RubyModule clazz, RubySymbol symbol, Visibility visibility) void
ThreadContext.preExecuteUnder
(IRubyObject executeUnderObj, RubyModule executeUnderClass, Block block) void
ThreadContext.preMethodFrameAndDummyScope
(RubyModule clazz, String name, IRubyObject self, Block block, StaticScope staticScope) void
ThreadContext.preMethodFrameAndScope
(RubyModule clazz, String name, IRubyObject self, Block block, StaticScope staticScope) void
ThreadContext.preMethodFrameOnly
(RubyModule clazz, String name, IRubyObject self) void
ThreadContext.preMethodFrameOnly
(RubyModule clazz, String name, IRubyObject self, Block block) void
ThreadContext.preMethodFrameOnly
(RubyModule clazz, String name, IRubyObject self, Visibility visiblity, Block block) void
Frame.setKlazz
(RubyModule klazz) Set the class we are calling against.void
ThreadContext.setPrivateConstantReference
(RubyModule privateConstantReference) void
ThreadContext.trace
(RubyEvent event, String name, RubyModule implClass) void
ThreadContext.trace
(RubyEvent event, String name, RubyModule implClass, String file, int line) void
Frame.updateFrame
(RubyModule klazz, IRubyObject self, String name, Block block) Update the frame based on the given values.void
Frame.updateFrame
(RubyModule klazz, IRubyObject self, String name, Visibility visibility, Block block) Update the frame based on the given values.Constructors in org.jruby.runtime with parameters of type RubyModuleModifierConstructorDescriptionMethodBlockBody
(StaticScope staticScope, Signature signature, CacheEntry entry, ArgumentDescriptor[] argsDesc, IRubyObject receiver, RubyModule originModule, String originName, String file, int line) -
Uses of RubyModule in org.jruby.runtime.callsite
Fields in org.jruby.runtime.callsite declared as RubyModuleMethods in org.jruby.runtime.callsite with parameters of type RubyModuleModifier and TypeMethodDescriptionSuperCallSite.call
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name) SuperCallSite.call
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, Block block) SuperCallSite.call
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1) SuperCallSite.call
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject... args) SuperCallSite.call
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) SuperCallSite.call
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, Block block) SuperCallSite.call
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2) SuperCallSite.call
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, Block block) SuperCallSite.call
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3) SuperCallSite.call
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, Block block) SuperCallSite.callIter
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, Block block) SuperCallSite.callIter
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) SuperCallSite.callIter
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, Block block) SuperCallSite.callIter
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, Block block) SuperCallSite.callIter
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject arg1, IRubyObject arg2, IRubyObject arg3, Block block) SuperCallSite.callVarargs
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject... args) SuperCallSite.callVarargs
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) SuperCallSite.callVarargsIter
(ThreadContext context, IRubyObject caller, IRubyObject self, RubyModule klazz, String name, IRubyObject[] args, Block block) protected static RubyClass
SuperCallSite.pollAndGetClass
(ThreadContext context, IRubyObject self, RubyModule frameClass, String frameName) Constructors in org.jruby.runtime.callsite with parameters of type RubyModule -
Uses of RubyModule in org.jruby.runtime.invokedynamic
Methods in org.jruby.runtime.invokedynamic with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic MethodHandle
InvocationLinker.getFrameOnlyPre
(com.headius.invokebinder.Signature signature, CallConfiguration callConfig, RubyModule implClass, String name) static MethodHandle
InvocationLinker.getFramePre
(com.headius.invokebinder.Signature signature, CallConfiguration callConfig, RubyModule implClass, String name, StaticScope scope) static MethodHandle
InvocationLinker.wrapWithFrameOnly
(com.headius.invokebinder.Signature signature, RubyModule implClass, String name, MethodHandle nativeTarget) static MethodHandle
InvocationLinker.wrapWithFraming
(com.headius.invokebinder.Signature signature, CallConfiguration callConfig, RubyModule implClass, String name, MethodHandle nativeTarget, StaticScope scope) -
Uses of RubyModule in org.jruby.runtime.load
Methods in org.jruby.runtime.load that return RubyModule -
Uses of RubyModule in org.jruby.runtime.marshal
Methods in org.jruby.runtime.marshal that return RubyModuleModifier and TypeMethodDescriptionstatic RubyModule
MarshalLoader.getModuleFromPath
(ThreadContext context, String path) static RubyModule
UnmarshalStream.getModuleFromPath
(Ruby runtime, String path) Deprecated, for removal: This API element is subject to removal in a future version.Methods in org.jruby.runtime.marshal with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic RubySymbol
MarshalDumper.getPathFromClass
(ThreadContext context, RubyModule clazz) static String
MarshalStream.getPathFromClass
(RubyModule clazz) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of RubyModule in org.jruby.runtime.opto
Methods in org.jruby.runtime.opto with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic boolean
ConstantCache.isCachedFrom
(RubyModule target, ConstantCache cache) Check if the given ConstantCache is non-null and valid, given the target module.static Invalidator
OptoFactory.newMethodInvalidator
(RubyModule module) Constructors in org.jruby.runtime.opto with parameters of type RubyModule -
Uses of RubyModule in org.jruby.util
Methods in org.jruby.util that return RubyModuleModifier and TypeMethodDescriptiondefault RubyModule
ClassProvider.defineModuleUnder
(RubyModule module, String name) Deprecated.default RubyModule
ClassProvider.defineModuleUnder
(ThreadContext context, RubyModule module, String name) Methods in org.jruby.util with parameters of type RubyModuleModifier and TypeMethodDescriptionstatic void
TypeConverter.checkType
(ThreadContext context, IRubyObject x, RubyModule type) default RubyClass
ClassProvider.defineClassUnder
(RubyModule module, String name, RubyClass superClazz) Deprecated.default RubyClass
ClassProvider.defineClassUnder
(ThreadContext context, RubyModule module, String name, RubyClass superClazz) default RubyModule
ClassProvider.defineModuleUnder
(RubyModule module, String name) Deprecated.default RubyModule
ClassProvider.defineModuleUnder
(ThreadContext context, RubyModule module, String name) static RubyString
Inspector.inspectPrefix
(ThreadContext context, RubyModule type) static RubyString
Inspector.inspectPrefix
(ThreadContext context, RubyModule type, int hash) static RubyString
Inspector.inspectPrefixTypeOnly
(ThreadContext context, RubyModule type) static RubyString
RubyStringBuilder.types
(Ruby runtime, RubyModule type) static RubyString
RubyStringBuilder.types
(Ruby runtime, RubyModule type1, RubyModule type2) static RubyString
RubyStringBuilder.types
(ThreadContext context, RubyModule type)
Define.defineModule(ThreadContext, String)
ORdefineModuleUnder(ThreadContext, String)
.