[]Struct jni_android_sys::javax::xml::validation::SchemaFactory

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

public class SchemaFactory

Required feature: "javax-xml-validation-SchemaFactory"

Methods

impl SchemaFactory

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

newInstance

Required features: "java-lang-String", "javax-xml-validation-SchemaFactory"

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

newInstance

Required features: "java-lang-ClassLoader", "java-lang-String", "javax-xml-validation-SchemaFactory"

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

isSchemaLanguageSupported

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

setProperty

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

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

getProperty

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

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

setErrorHandler

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

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

getErrorHandler

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

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

setResourceResolver

Required features: "org-w3c-dom-ls-LSResourceResolver"

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

getResourceResolver

Required features: "org-w3c-dom-ls-LSResourceResolver"

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

newSchema

Required features: "javax-xml-transform-Source", "javax-xml-validation-Schema"

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

newSchema

Required features: "java-io-File", "javax-xml-validation-Schema"

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

newSchema

Required features: "java-net-URL", "javax-xml-validation-Schema"

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

newSchema

Required features: "javax-xml-transform-Source", "javax-xml-validation-Schema"

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

newSchema

Required features: "javax-xml-validation-Schema"

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 SchemaFactory

impl AsValidJObjectAndEnv for SchemaFactory

impl Deref for SchemaFactory

type Target = Object

The resulting type after dereferencing.

impl JniType for SchemaFactory

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.