[]Struct jni_android_sys::javax::xml::transform::sax::SAXTransformerFactory

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

public class SAXTransformerFactory

Required feature: "javax-xml-transform-sax-SAXTransformerFactory"

Methods

impl SAXTransformerFactory

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

newTransformerHandler

Required features: "javax-xml-transform-Source", "javax-xml-transform-sax-TransformerHandler"

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

newTransformerHandler

Required features: "javax-xml-transform-Templates", "javax-xml-transform-sax-TransformerHandler"

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

newTransformerHandler

Required features: "javax-xml-transform-sax-TransformerHandler"

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

newTemplatesHandler

Required features: "javax-xml-transform-sax-TemplatesHandler"

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

newXMLFilter

Required features: "javax-xml-transform-Source", "org-xml-sax-XMLFilter"

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

newXMLFilter

Required features: "javax-xml-transform-Templates", "org-xml-sax-XMLFilter"

pub const FEATURE: &'static str[src]

public static final FEATURE

pub const FEATURE_XMLFILTER: &'static str[src]

public static final FEATURE_XMLFILTER

Methods from Deref<Target = 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"

Trait Implementations

impl AsJValue for SAXTransformerFactory

impl AsValidJObjectAndEnv for SAXTransformerFactory

impl Deref for SAXTransformerFactory

type Target = TransformerFactory

The resulting type after dereferencing.

impl JniType for SAXTransformerFactory

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.