Fonction java_method
S’applique à : Databricks Runtime
Appelle une méthode avec réflexion.
Syntaxe
java_method(class, method [, arg1 [, ...] ] )
Arguments
class
: littéral deSTRING
spécifiant la classe Java.method
: littéral deSTRING
spécifiant la méthode Java.argn
: expression qui possède un type approprié par rapport à la méthode sélectionnée.
Retours
STRING
.
Exemples
> SELECT java_method('java.util.UUID', 'randomUUID');
c33fb387-8500-4bfa-81d2-6e0e3e930df2
> SELECT java_method('java.util.UUID', 'fromString', 'a5cf6c42-0c85-418f-af6c-3e4e5b1328f2');
A5cf6c42-0c85-418f-af6c-3e4e5b1328f2