Serialized form of a lambda expression. The properties of this class represent the information that is present at the lambda factory site, including static metafactory arguments such as the identity of the primary functional interface method and the identity of the implementation method, as well as dynamic metafactory arguments such as values captured from the lexical scope at the time of lambda capture.
Implementors of serializable lambdas, such as compilers or language runtime libraries, are expected to ensure that instances deserialize properly. One means to do so is to ensure that the writeReplace method returns an instance of SerializedLambda, rather than allowing default serialization to proceed.
SerializedLambda has a readResolve method that looks for a (possibly private) static method called $deserializeLambda$(SerializedLambda) in the capturing class, invokes that with itself as the first argument, and returns the result. Lambda classes implementing $deserializeLambda$ are responsible for validating that the properties of the SerializedLambda are consistent with a lambda actually captured by that class.
Serialized form of a lambda expression. The properties of this class represent the information that is present at the lambda factory site, including static metafactory arguments such as the identity of the primary functional interface method and the identity of the implementation method, as well as dynamic metafactory arguments such as values captured from the lexical scope at the time of lambda capture. Implementors of serializable lambdas, such as compilers or language runtime libraries, are expected to ensure that instances deserialize properly. One means to do so is to ensure that the writeReplace method returns an instance of SerializedLambda, rather than allowing default serialization to proceed. SerializedLambda has a readResolve method that looks for a (possibly private) static method called $deserializeLambda$(SerializedLambda) in the capturing class, invokes that with itself as the first argument, and returns the result. Lambda classes implementing $deserializeLambda$ are responsible for validating that the properties of the SerializedLambda are consistent with a lambda actually captured by that class.
(->serialized-lambda capturing-class
functional-interface-class
functional-interface-method-name
functional-interface-method-signature
impl-method-kind
impl-class
impl-method-name
impl-method-signature
instantiated-method-type
captured-args)
Constructor.
Create a SerializedLambda from the low-level information present at the lambda factory site.
capturing-class - The class in which the lambda expression appears - java.lang.Class
functional-interface-class - Name, in slash-delimited form, of static type of the returned lambda object - java.lang.String
functional-interface-method-name - Name of the functional interface method for the present at the lambda factory site - java.lang.String
functional-interface-method-signature - Signature of the functional interface method present at the lambda factory site - java.lang.String
impl-method-kind - Method handle kind for the implementation method - int
impl-class - Name, in slash-delimited form, for the class holding the implementation method - java.lang.String
impl-method-name - Name of the implementation method - java.lang.String
impl-method-signature - Signature of the implementation method - java.lang.String
instantiated-method-type - The signature of the primary functional interface method after type variables are substituted with their instantiation from the capture site - java.lang.String
captured-args - The dynamic arguments to the lambda factory site, which represent variables captured by the lambda - java.lang.Object[]
Constructor. Create a SerializedLambda from the low-level information present at the lambda factory site. capturing-class - The class in which the lambda expression appears - `java.lang.Class` functional-interface-class - Name, in slash-delimited form, of static type of the returned lambda object - `java.lang.String` functional-interface-method-name - Name of the functional interface method for the present at the lambda factory site - `java.lang.String` functional-interface-method-signature - Signature of the functional interface method present at the lambda factory site - `java.lang.String` impl-method-kind - Method handle kind for the implementation method - `int` impl-class - Name, in slash-delimited form, for the class holding the implementation method - `java.lang.String` impl-method-name - Name of the implementation method - `java.lang.String` impl-method-signature - Signature of the implementation method - `java.lang.String` instantiated-method-type - The signature of the primary functional interface method after type variables are substituted with their instantiation from the capture site - `java.lang.String` captured-args - The dynamic arguments to the lambda factory site, which represent variables captured by the lambda - `java.lang.Object[]`
(get-captured-arg this i)
Get a dynamic argument to the lambda capture site.
i - the argument to capture - int
returns: a dynamic argument to the lambda capture site - java.lang.Object
Get a dynamic argument to the lambda capture site. i - the argument to capture - `int` returns: a dynamic argument to the lambda capture site - `java.lang.Object`
(get-captured-arg-count this)
Get the count of dynamic arguments to the lambda capture site.
returns: the count of dynamic arguments to the lambda capture site - int
Get the count of dynamic arguments to the lambda capture site. returns: the count of dynamic arguments to the lambda capture site - `int`
(get-capturing-class this)
Get the name of the class that captured this lambda.
returns: the name of the class that captured this lambda - java.lang.String
Get the name of the class that captured this lambda. returns: the name of the class that captured this lambda - `java.lang.String`
(get-functional-interface-class this)
Get the name of the invoked type to which this lambda has been converted
returns: the name of the functional interface class to which
this lambda has been converted - java.lang.String
Get the name of the invoked type to which this lambda has been converted returns: the name of the functional interface class to which this lambda has been converted - `java.lang.String`
(get-functional-interface-method-name this)
Get the name of the primary method for the functional interface to which this lambda has been converted.
returns: the name of the primary methods of the functional interface - java.lang.String
Get the name of the primary method for the functional interface to which this lambda has been converted. returns: the name of the primary methods of the functional interface - `java.lang.String`
(get-functional-interface-method-signature this)
Get the signature of the primary method for the functional interface to which this lambda has been converted.
returns: the signature of the primary method of the functional
interface - java.lang.String
Get the signature of the primary method for the functional interface to which this lambda has been converted. returns: the signature of the primary method of the functional interface - `java.lang.String`
(get-impl-class this)
Get the name of the class containing the implementation method.
returns: the name of the class containing the implementation
method - java.lang.String
Get the name of the class containing the implementation method. returns: the name of the class containing the implementation method - `java.lang.String`
(get-impl-method-kind this)
Get the method handle kind (see MethodHandleInfo) of the implementation method.
returns: the method handle kind of the implementation method - int
Get the method handle kind (see MethodHandleInfo) of the implementation method. returns: the method handle kind of the implementation method - `int`
(get-impl-method-name this)
Get the name of the implementation method.
returns: the name of the implementation method - java.lang.String
Get the name of the implementation method. returns: the name of the implementation method - `java.lang.String`
(get-impl-method-signature this)
Get the signature of the implementation method.
returns: the signature of the implementation method - java.lang.String
Get the signature of the implementation method. returns: the signature of the implementation method - `java.lang.String`
(get-instantiated-method-type this)
Get the signature of the primary functional interface method after type variables are substituted with their instantiation from the capture site.
returns: the signature of the primary functional interface method
after type variable processing - java.lang.String
Get the signature of the primary functional interface method after type variables are substituted with their instantiation from the capture site. returns: the signature of the primary functional interface method after type variable processing - `java.lang.String`
(to-string this)
Description copied from class: Object
returns: a string representation of the object. - java.lang.String
Description copied from class: Object returns: a string representation of the object. - `java.lang.String`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close