[]Struct jni_android_sys::java::util::concurrent::atomic::AtomicIntegerFieldUpdater

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

public class AtomicIntegerFieldUpdater

Required feature: "java-util-concurrent-atomic-AtomicIntegerFieldUpdater"

Methods

impl AtomicIntegerFieldUpdater

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

newUpdater

Required features: "java-lang-Class", "java-lang-String", "java-util-concurrent-atomic-AtomicIntegerFieldUpdater"

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

compareAndSet

Required features: "java-lang-Object"

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

weakCompareAndSet

Required features: "java-lang-Object"

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

set

Required features: "java-lang-Object"

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

lazySet

Required features: "java-lang-Object"

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

get

Required features: "java-lang-Object"

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

getAndSet

Required features: "java-lang-Object"

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

getAndIncrement

Required features: "java-lang-Object"

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

getAndDecrement

Required features: "java-lang-Object"

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

getAndAdd

Required features: "java-lang-Object"

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

incrementAndGet

Required features: "java-lang-Object"

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

decrementAndGet

Required features: "java-lang-Object"

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

addAndGet

Required features: "java-lang-Object"

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

getAndUpdate

Required features: "java-lang-Object", "java-util-function-IntUnaryOperator"

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

updateAndGet

Required features: "java-lang-Object", "java-util-function-IntUnaryOperator"

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

getAndAccumulate

Required features: "java-lang-Object", "java-util-function-IntBinaryOperator"

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

accumulateAndGet

Required features: "java-lang-Object", "java-util-function-IntBinaryOperator"

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 AtomicIntegerFieldUpdater

impl AsValidJObjectAndEnv for AtomicIntegerFieldUpdater

impl Deref for AtomicIntegerFieldUpdater

type Target = Object

The resulting type after dereferencing.

impl JniType for AtomicIntegerFieldUpdater

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.