[]Struct jni_android_sys::java::sql::Types

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

public class Types

Required feature: "java-sql-Types"

Methods

impl Types

pub const ARRAY: i32[src]

public static final ARRAY

pub const BIGINT: i32[src]

public static final BIGINT

pub const BINARY: i32[src]

public static final BINARY

pub const BIT: i32[src]

public static final BIT

pub const BLOB: i32[src]

public static final BLOB

pub const BOOLEAN: i32[src]

public static final BOOLEAN

pub const CHAR: i32[src]

public static final CHAR

pub const CLOB: i32[src]

public static final CLOB

public static final DATALINK

pub const DATE: i32[src]

public static final DATE

pub const DECIMAL: i32[src]

public static final DECIMAL

pub const DISTINCT: i32[src]

public static final DISTINCT

pub const DOUBLE: i32[src]

public static final DOUBLE

pub const FLOAT: i32[src]

public static final FLOAT

pub const INTEGER: i32[src]

public static final INTEGER

pub const JAVA_OBJECT: i32[src]

public static final JAVA_OBJECT

pub const LONGNVARCHAR: i32[src]

public static final LONGNVARCHAR

pub const LONGVARBINARY: i32[src]

public static final LONGVARBINARY

pub const LONGVARCHAR: i32[src]

public static final LONGVARCHAR

pub const NCHAR: i32[src]

public static final NCHAR

pub const NCLOB: i32[src]

public static final NCLOB

pub const NULL: i32[src]

public static final NULL

pub const NUMERIC: i32[src]

public static final NUMERIC

pub const NVARCHAR: i32[src]

public static final NVARCHAR

pub const OTHER: i32[src]

public static final OTHER

pub const REAL: i32[src]

public static final REAL

pub const REF: i32[src]

public static final REF

pub const ROWID: i32[src]

public static final ROWID

pub const SMALLINT: i32[src]

public static final SMALLINT

pub const SQLXML: i32[src]

public static final SQLXML

pub const STRUCT: i32[src]

public static final STRUCT

pub const TIME: i32[src]

public static final TIME

pub const TIMESTAMP: i32[src]

public static final TIMESTAMP

pub const TINYINT: i32[src]

public static final TINYINT

pub const VARBINARY: i32[src]

public static final VARBINARY

pub const VARCHAR: i32[src]

public static final VARCHAR

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 Types

impl AsValidJObjectAndEnv for Types

impl Deref for Types

type Target = Object

The resulting type after dereferencing.

impl JniType for Types

Auto Trait Implementations

impl RefUnwindSafe for Types

impl !Send for Types

impl !Sync for Types

impl Unpin for Types

impl UnwindSafe for Types

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.