[]Struct jni_android_sys::javax::xml::transform::Transformer

#[repr(transparent)]
pub struct Transformer(_);

public class Transformer

Required feature: "javax-xml-transform-Transformer"

Methods

impl Transformer

pub fn reset<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn transform<'env>(
    &'env self,
    arg0: impl Into<Option<&'env Source>>,
    arg1: impl Into<Option<&'env Result>>
) -> Result<(), Local<'env, Throwable>>
[src]

transform

Required features: "javax-xml-transform-Result", "javax-xml-transform-Source"

pub fn setParameter<'env>(
    &'env self,
    arg0: impl Into<Option<&'env String>>,
    arg1: impl Into<Option<&'env Object>>
) -> Result<(), Local<'env, Throwable>>
[src]

setParameter

Required features: "java-lang-Object", "java-lang-String"

pub fn getParameter<'env>(
    &'env self,
    arg0: impl Into<Option<&'env String>>
) -> Result<Option<Local<'env, Object>>, Local<'env, Throwable>>
[src]

getParameter

Required features: "java-lang-Object", "java-lang-String"

pub fn clearParameters<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn setURIResolver<'env>(
    &'env self,
    arg0: impl Into<Option<&'env URIResolver>>
) -> Result<(), Local<'env, Throwable>>
[src]

setURIResolver

Required features: "javax-xml-transform-URIResolver"

pub fn getURIResolver<'env>(
    &'env self
) -> Result<Option<Local<'env, URIResolver>>, Local<'env, Throwable>>
[src]

getURIResolver

Required features: "javax-xml-transform-URIResolver"

pub fn setOutputProperties<'env>(
    &'env self,
    arg0: impl Into<Option<&'env Properties>>
) -> Result<(), Local<'env, Throwable>>
[src]

setOutputProperties

Required features: "java-util-Properties"

pub fn getOutputProperties<'env>(
    &'env self
) -> Result<Option<Local<'env, Properties>>, Local<'env, Throwable>>
[src]

getOutputProperties

Required features: "java-util-Properties"

pub fn setOutputProperty<'env>(
    &'env self,
    arg0: impl Into<Option<&'env String>>,
    arg1: impl Into<Option<&'env String>>
) -> Result<(), Local<'env, Throwable>>
[src]

setOutputProperty

Required features: "java-lang-String"

pub fn getOutputProperty<'env>(
    &'env self,
    arg0: impl Into<Option<&'env String>>
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

getOutputProperty

Required features: "java-lang-String"

pub fn setErrorListener<'env>(
    &'env self,
    arg0: impl Into<Option<&'env ErrorListener>>
) -> Result<(), Local<'env, Throwable>>
[src]

setErrorListener

Required features: "javax-xml-transform-ErrorListener"

pub fn getErrorListener<'env>(
    &'env self
) -> Result<Option<Local<'env, ErrorListener>>, Local<'env, Throwable>>
[src]

getErrorListener

Required features: "javax-xml-transform-ErrorListener"

Methods from Deref<Target = Object>

pub fn getClass<'env>(
    &'env self
) -> Result<Option<Local<'env, Class>>, Local<'env, Throwable>>
[src]

getClass

Required features: "java-lang-Class"

pub fn hashCode<'env>(&'env self) -> Result<i32, Local<'env, Throwable>>[src]

pub fn equals<'env>(
    &'env self,
    arg0: impl Into<Option<&'env Object>>
) -> Result<bool, Local<'env, Throwable>>
[src]

equals

Required features: "java-lang-Object"

pub fn toString<'env>(
    &'env self
) -> Result<Option<Local<'env, String>>, Local<'env, Throwable>>
[src]

toString

Required features: "java-lang-String"

pub fn notify<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn notifyAll<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

pub fn wait_long<'env>(
    &'env self,
    arg0: i64
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn wait_long_int<'env>(
    &'env self,
    arg0: i64,
    arg1: i32
) -> Result<(), Local<'env, Throwable>>
[src]

pub fn wait<'env>(&'env self) -> Result<(), Local<'env, Throwable>>[src]

Trait Implementations

impl AsJValue for Transformer

impl AsValidJObjectAndEnv for Transformer

impl Deref for Transformer

type Target = Object

The resulting type after dereferencing.

impl JniType for Transformer

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.