static DynamicCallSiteDesc |
DynamicCallSiteDesc.of(DirectMethodHandleDesc bootstrapMethod,
MethodTypeDesc invocationType) |
Creates a nominal descriptor for an invokedynamic call site whose
bootstrap method has no static arguments and for which the name parameter
is ConstantDescs.DEFAULT_NAME .
|
static DynamicCallSiteDesc |
DynamicCallSiteDesc.of(DirectMethodHandleDesc bootstrapMethod,
String invocationName,
MethodTypeDesc invocationType) |
Creates a nominal descriptor for an invokedynamic call site whose
bootstrap method has no static arguments.
|
static DynamicCallSiteDesc |
DynamicCallSiteDesc.of(DirectMethodHandleDesc bootstrapMethod,
String invocationName,
MethodTypeDesc invocationType,
ConstantDesc... bootstrapArgs) |
Creates a nominal descriptor for an invokedynamic call site.
|
DynamicCallSiteDesc |
DynamicCallSiteDesc.withArgs(ConstantDesc... bootstrapArgs) |
Returns a nominal descriptor for an invokedynamic call site whose
bootstrap method, name, and invocation type are the same as this one, but
with the specified bootstrap arguments.
|
DynamicCallSiteDesc |
DynamicCallSiteDesc.withNameAndType(String invocationName,
MethodTypeDesc invocationType) |
Returns a nominal descriptor for an invokedynamic call site whose
bootstrap and bootstrap arguments are the same as this one, but with the
specified invocationName and invocation invocationType
|