[]Struct jni_android_sys::java::security::cert::X509CRLSelector

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

public class X509CRLSelector

Required feature: "java-security-cert-X509CRLSelector"

Methods

impl X509CRLSelector

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

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

setIssuers

Required features: "java-util-Collection"

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

setIssuerNames

Required features: "java-util-Collection"

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

addIssuer

Required features: "javax-security-auth-x500-X500Principal"

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

addIssuerName

Required features: "java-lang-String"

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

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

setMinCRLNumber

Required features: "java-math-BigInteger"

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

setMaxCRLNumber

Required features: "java-math-BigInteger"

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

setDateAndTime

Required features: "java-util-Date"

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

setCertificateChecking

Required features: "java-security-cert-X509Certificate"

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

getIssuers

Required features: "java-util-Collection"

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

getIssuerNames

Required features: "java-util-Collection"

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

getMinCRL

Required features: "java-math-BigInteger"

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

getMaxCRL

Required features: "java-math-BigInteger"

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

getDateAndTime

Required features: "java-util-Date"

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

getCertificateChecking

Required features: "java-security-cert-X509Certificate"

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

toString

Required features: "java-lang-String"

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

match

Required features: "java-security-cert-CRL"

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

clone

Required features: "java-lang-Object"

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 X509CRLSelector

impl AsRef<CRLSelector> for X509CRLSelector

impl AsValidJObjectAndEnv for X509CRLSelector

impl Deref for X509CRLSelector

type Target = Object

The resulting type after dereferencing.

impl JniType for X509CRLSelector

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.