[]Struct jni_android_sys::java::sql::SQLXML

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

public interface SQLXML

Required feature: "java-sql-SQLXML"

Methods

impl SQLXML

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

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

getBinaryStream

Required features: "java-io-InputStream"

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

setBinaryStream

Required features: "java-io-OutputStream"

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

getCharacterStream

Required features: "java-io-Reader"

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

setCharacterStream

Required features: "java-io-Writer"

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

getString

Required features: "java-lang-String"

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

setString

Required features: "java-lang-String"

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

getSource

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

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

setResult

Required features: "java-lang-Class", "javax-xml-transform-Result"

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 SQLXML

impl AsValidJObjectAndEnv for SQLXML

impl Deref for SQLXML

type Target = Object

The resulting type after dereferencing.

impl JniType for SQLXML

Auto Trait Implementations

impl RefUnwindSafe for SQLXML

impl !Send for SQLXML

impl !Sync for SQLXML

impl Unpin for SQLXML

impl UnwindSafe for SQLXML

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.