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

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

public class TransformerFactory

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

Methods

impl TransformerFactory

pub fn newInstance<'env>(
    __jni_env: &'env Env
) -> Result<Option<Local<'env, TransformerFactory>>, Local<'env, Throwable>>
[src]

newInstance

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

pub fn newInstance_String_ClassLoader<'env>(
    __jni_env: &'env Env,
    arg0: impl Into<Option<&'env String>>,
    arg1: impl Into<Option<&'env ClassLoader>>
) -> Result<Option<Local<'env, TransformerFactory>>, Local<'env, Throwable>>
[src]

newInstance

Required features: "java-lang-ClassLoader", "java-lang-String", "javax-xml-transform-TransformerFactory"

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

newTransformer

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

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

newTransformer

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

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

newTemplates

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

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

getAssociatedStylesheet

Required features: "java-lang-String", "javax-xml-transform-Source"

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 setFeature<'env>(
    &'env self,
    arg0: impl Into<Option<&'env String>>,
    arg1: bool
) -> Result<(), Local<'env, Throwable>>
[src]

setFeature

Required features: "java-lang-String"

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

getFeature

Required features: "java-lang-String"

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

setAttribute

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

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

getAttribute

Required features: "java-lang-Object", "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 TransformerFactory

impl AsValidJObjectAndEnv for TransformerFactory

impl Deref for TransformerFactory

type Target = Object

The resulting type after dereferencing.

impl JniType for TransformerFactory

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.