[]Struct jni_android_sys::org::xml::sax::helpers::DefaultHandler

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

public class DefaultHandler

Required feature: "org-xml-sax-helpers-DefaultHandler"

Methods

impl DefaultHandler

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

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

resolveEntity

Required features: "java-lang-String", "org-xml-sax-InputSource"

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

notationDecl

Required features: "java-lang-String"

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

unparsedEntityDecl

Required features: "java-lang-String"

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

setDocumentLocator

Required features: "org-xml-sax-Locator"

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

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

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

startPrefixMapping

Required features: "java-lang-String"

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

endPrefixMapping

Required features: "java-lang-String"

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

startElement

Required features: "java-lang-String", "org-xml-sax-Attributes"

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

endElement

Required features: "java-lang-String"

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

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

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

processingInstruction

Required features: "java-lang-String"

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

skippedEntity

Required features: "java-lang-String"

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

warning

Required features: "org-xml-sax-SAXParseException"

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

error

Required features: "org-xml-sax-SAXParseException"

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

fatalError

Required features: "org-xml-sax-SAXParseException"

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 DefaultHandler

impl AsRef<ContentHandler> for DefaultHandler

impl AsRef<DTDHandler> for DefaultHandler

impl AsRef<EntityResolver> for DefaultHandler

impl AsRef<ErrorHandler> for DefaultHandler

impl AsValidJObjectAndEnv for DefaultHandler

impl Deref for DefaultHandler

type Target = Object

The resulting type after dereferencing.

impl JniType for DefaultHandler

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.