pub trait JavaMethod<T>where
T: JavaObject,
Self: for<'jvm> JvmOp<Output<'jvm> = Option<Local<'jvm, T>>> + Deref<Target = T::OfOp<Self>>,{ }
Expand description
A java method that returns a T
object (when executed).
Object Safety§
This trait is not object safe.