| 程序包 | 说明 |
|---|---|
| com.jarvis.cache.reflect.lambda |
| 限定符和类型 | 方法和说明 |
|---|---|
static Lambda |
LambdaFactory.create(Method method)
creates a Lambda with the same access rights as a Method with setAccessible()==true.
|
static Lambda |
LambdaFactory.create(Method method,
MethodHandles.Lookup lookup)
Same as
LambdaFactory.create(Method) but with an extra parameter that allows for more fine grained configuration of the access rights
of the generated Lambda implementation. |
static Lambda |
LambdaFactory.createSpecial(Method method)
Same as
LambdaFactory.create(Method) except that this method returns a Lambda that will not be subject to dynamic method dispatch. |
static Lambda |
LambdaFactory.createSpecial(Method method,
MethodHandles.Lookup lookup)
Same as
LambdaFactory.create(Method, MethodHandles.Lookup) except that this method returns a Lambda that will not be subject to dynamic method dispatch. |
Copyright © 2020. All rights reserved.