[−]Struct jni_android_sys::java::util::stream::LongStream
public interface LongStream
Required feature: java-util-stream-LongStream
Methods
impl LongStream
pub fn filter<'env>(
&'env self,
arg0: impl Into<Option<&'env LongPredicate>>
) -> Result<Option<Local<'env, LongStream>>>
[src]
&'env self,
arg0: impl Into<Option<&'env LongPredicate>>
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-function-LongPredicate", "java-util-stream-LongStream"
pub fn map<'env>(
&'env self,
arg0: impl Into<Option<&'env LongUnaryOperator>>
) -> Result<Option<Local<'env, LongStream>>>
[src]
&'env self,
arg0: impl Into<Option<&'env LongUnaryOperator>>
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-function-LongUnaryOperator", "java-util-stream-LongStream"
pub fn map_to_obj<'env>(
&'env self,
arg0: impl Into<Option<&'env LongFunction>>
) -> Result<Option<Local<'env, Stream>>>
[src]
&'env self,
arg0: impl Into<Option<&'env LongFunction>>
) -> Result<Option<Local<'env, Stream>>>
Required features: "java-util-function-LongFunction", "java-util-stream-Stream"
pub fn map_to_int<'env>(
&'env self,
arg0: impl Into<Option<&'env LongToIntFunction>>
) -> Result<Option<Local<'env, IntStream>>>
[src]
&'env self,
arg0: impl Into<Option<&'env LongToIntFunction>>
) -> Result<Option<Local<'env, IntStream>>>
Required features: "java-util-function-LongToIntFunction", "java-util-stream-IntStream"
pub fn map_to_double<'env>(
&'env self,
arg0: impl Into<Option<&'env LongToDoubleFunction>>
) -> Result<Option<Local<'env, DoubleStream>>>
[src]
&'env self,
arg0: impl Into<Option<&'env LongToDoubleFunction>>
) -> Result<Option<Local<'env, DoubleStream>>>
Required features: "java-util-function-LongToDoubleFunction", "java-util-stream-DoubleStream"
pub fn flat_map<'env>(
&'env self,
arg0: impl Into<Option<&'env LongFunction>>
) -> Result<Option<Local<'env, LongStream>>>
[src]
&'env self,
arg0: impl Into<Option<&'env LongFunction>>
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-function-LongFunction", "java-util-stream-LongStream"
pub fn distinct<'env>(&'env self) -> Result<Option<Local<'env, LongStream>>>
[src]
Required features: "java-util-stream-LongStream"
pub fn sorted<'env>(&'env self) -> Result<Option<Local<'env, LongStream>>>
[src]
Required features: "java-util-stream-LongStream"
pub fn peek<'env>(
&'env self,
arg0: impl Into<Option<&'env LongConsumer>>
) -> Result<Option<Local<'env, LongStream>>>
[src]
&'env self,
arg0: impl Into<Option<&'env LongConsumer>>
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-function-LongConsumer", "java-util-stream-LongStream"
pub fn limit<'env>(
&'env self,
arg0: i64
) -> Result<Option<Local<'env, LongStream>>>
[src]
&'env self,
arg0: i64
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-stream-LongStream"
pub fn skip<'env>(
&'env self,
arg0: i64
) -> Result<Option<Local<'env, LongStream>>>
[src]
&'env self,
arg0: i64
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-stream-LongStream"
pub fn for_each<'env>(
&'env self,
arg0: impl Into<Option<&'env LongConsumer>>
) -> Result<()>
[src]
&'env self,
arg0: impl Into<Option<&'env LongConsumer>>
) -> Result<()>
Required features: "java-util-function-LongConsumer"
pub fn for_each_ordered<'env>(
&'env self,
arg0: impl Into<Option<&'env LongConsumer>>
) -> Result<()>
[src]
&'env self,
arg0: impl Into<Option<&'env LongConsumer>>
) -> Result<()>
Required features: "java-util-function-LongConsumer"
pub fn to_array<'env>(&'env self) -> Result<Option<Local<'env, LongArray>>>
[src]
pub fn reduce_long_long_binary_operator<'env>(
&'env self,
arg0: i64,
arg1: impl Into<Option<&'env LongBinaryOperator>>
) -> Result<i64>
[src]
&'env self,
arg0: i64,
arg1: impl Into<Option<&'env LongBinaryOperator>>
) -> Result<i64>
Required features: "java-util-function-LongBinaryOperator"
pub fn reduce_long_binary_operator<'env>(
&'env self,
arg0: impl Into<Option<&'env LongBinaryOperator>>
) -> Result<Option<Local<'env, OptionalLong>>>
[src]
&'env self,
arg0: impl Into<Option<&'env LongBinaryOperator>>
) -> Result<Option<Local<'env, OptionalLong>>>
Required features: "java-util-OptionalLong", "java-util-function-LongBinaryOperator"
pub fn collect<'env>(
&'env self,
arg0: impl Into<Option<&'env Supplier>>,
arg1: impl Into<Option<&'env ObjLongConsumer>>,
arg2: impl Into<Option<&'env BiConsumer>>
) -> Result<Option<Local<'env, Object>>>
[src]
&'env self,
arg0: impl Into<Option<&'env Supplier>>,
arg1: impl Into<Option<&'env ObjLongConsumer>>,
arg2: impl Into<Option<&'env BiConsumer>>
) -> Result<Option<Local<'env, Object>>>
Required features: "java-lang-Object", "java-util-function-BiConsumer", "java-util-function-ObjLongConsumer", "java-util-function-Supplier"
pub fn sum<'env>(&'env self) -> Result<i64>
[src]
pub fn min<'env>(&'env self) -> Result<Option<Local<'env, OptionalLong>>>
[src]
Required features: "java-util-OptionalLong"
pub fn max<'env>(&'env self) -> Result<Option<Local<'env, OptionalLong>>>
[src]
Required features: "java-util-OptionalLong"
pub fn count<'env>(&'env self) -> Result<i64>
[src]
pub fn average<'env>(&'env self) -> Result<Option<Local<'env, OptionalDouble>>>
[src]
Required features: "java-util-OptionalDouble"
pub fn summary_statistics<'env>(
&'env self
) -> Result<Option<Local<'env, LongSummaryStatistics>>>
[src]
&'env self
) -> Result<Option<Local<'env, LongSummaryStatistics>>>
Required features: "java-util-LongSummaryStatistics"
pub fn any_match<'env>(
&'env self,
arg0: impl Into<Option<&'env LongPredicate>>
) -> Result<bool>
[src]
&'env self,
arg0: impl Into<Option<&'env LongPredicate>>
) -> Result<bool>
Required features: "java-util-function-LongPredicate"
pub fn all_match<'env>(
&'env self,
arg0: impl Into<Option<&'env LongPredicate>>
) -> Result<bool>
[src]
&'env self,
arg0: impl Into<Option<&'env LongPredicate>>
) -> Result<bool>
Required features: "java-util-function-LongPredicate"
pub fn none_match<'env>(
&'env self,
arg0: impl Into<Option<&'env LongPredicate>>
) -> Result<bool>
[src]
&'env self,
arg0: impl Into<Option<&'env LongPredicate>>
) -> Result<bool>
Required features: "java-util-function-LongPredicate"
pub fn find_first<'env>(&'env self) -> Result<Option<Local<'env, OptionalLong>>>
[src]
Required features: "java-util-OptionalLong"
pub fn find_any<'env>(&'env self) -> Result<Option<Local<'env, OptionalLong>>>
[src]
Required features: "java-util-OptionalLong"
pub fn as_double_stream<'env>(
&'env self
) -> Result<Option<Local<'env, DoubleStream>>>
[src]
&'env self
) -> Result<Option<Local<'env, DoubleStream>>>
Required features: "java-util-stream-DoubleStream"
pub fn boxed<'env>(&'env self) -> Result<Option<Local<'env, Stream>>>
[src]
Required features: "java-util-stream-Stream"
pub fn sequential<'env>(&'env self) -> Result<Option<Local<'env, LongStream>>>
[src]
Required features: "java-util-stream-LongStream"
pub fn parallel<'env>(&'env self) -> Result<Option<Local<'env, LongStream>>>
[src]
Required features: "java-util-stream-LongStream"
pub fn iterator<'env>(
&'env self
) -> Result<Option<Local<'env, PrimitiveIterator_OfLong>>>
[src]
&'env self
) -> Result<Option<Local<'env, PrimitiveIterator_OfLong>>>
Required features: "java-util-PrimitiveIterator_OfLong"
pub fn spliterator<'env>(
&'env self
) -> Result<Option<Local<'env, Spliterator_OfLong>>>
[src]
&'env self
) -> Result<Option<Local<'env, Spliterator_OfLong>>>
Required features: "java-util-Spliterator_OfLong"
pub fn builder<'env>(
__jni_env: &'env Env
) -> Result<Option<Local<'env, LongStream_Builder>>>
[src]
__jni_env: &'env Env
) -> Result<Option<Local<'env, LongStream_Builder>>>
Required features: "java-util-stream-LongStream_Builder"
pub fn empty<'env>(
__jni_env: &'env Env
) -> Result<Option<Local<'env, LongStream>>>
[src]
__jni_env: &'env Env
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-stream-LongStream"
pub fn of_long<'env>(
__jni_env: &'env Env,
arg0: i64
) -> Result<Option<Local<'env, LongStream>>>
[src]
__jni_env: &'env Env,
arg0: i64
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-stream-LongStream"
pub fn iterate<'env>(
__jni_env: &'env Env,
arg0: i64,
arg1: impl Into<Option<&'env LongUnaryOperator>>
) -> Result<Option<Local<'env, LongStream>>>
[src]
__jni_env: &'env Env,
arg0: i64,
arg1: impl Into<Option<&'env LongUnaryOperator>>
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-function-LongUnaryOperator", "java-util-stream-LongStream"
pub fn generate<'env>(
__jni_env: &'env Env,
arg0: impl Into<Option<&'env LongSupplier>>
) -> Result<Option<Local<'env, LongStream>>>
[src]
__jni_env: &'env Env,
arg0: impl Into<Option<&'env LongSupplier>>
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-function-LongSupplier", "java-util-stream-LongStream"
pub fn range<'env>(
__jni_env: &'env Env,
arg0: i64,
arg1: i64
) -> Result<Option<Local<'env, LongStream>>>
[src]
__jni_env: &'env Env,
arg0: i64,
arg1: i64
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-stream-LongStream"
pub fn range_closed<'env>(
__jni_env: &'env Env,
arg0: i64,
arg1: i64
) -> Result<Option<Local<'env, LongStream>>>
[src]
__jni_env: &'env Env,
arg0: i64,
arg1: i64
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-stream-LongStream"
pub fn concat<'env>(
__jni_env: &'env Env,
arg0: impl Into<Option<&'env LongStream>>,
arg1: impl Into<Option<&'env LongStream>>
) -> Result<Option<Local<'env, LongStream>>>
[src]
__jni_env: &'env Env,
arg0: impl Into<Option<&'env LongStream>>,
arg1: impl Into<Option<&'env LongStream>>
) -> Result<Option<Local<'env, LongStream>>>
Required features: "java-util-stream-LongStream"
Methods from Deref<Target = Object>
pub fn get_class<'env>(&'env self) -> Result<Option<Local<'env, Class>>>
[src]
Required features: "java-lang-Class"
pub fn hash_code<'env>(&'env self) -> Result<i32>
[src]
pub fn equals<'env>(
&'env self,
arg0: impl Into<Option<&'env Object>>
) -> Result<bool>
[src]
&'env self,
arg0: impl Into<Option<&'env Object>>
) -> Result<bool>
Required features: "java-lang-Object"
pub fn to_string<'env>(&'env self) -> Result<Option<Local<'env, String>>>
[src]
Required features: "java-lang-String"
pub fn notify<'env>(&'env self) -> Result<()>
[src]
pub fn notify_all<'env>(&'env self) -> Result<()>
[src]
pub fn wait_long<'env>(&'env self, arg0: i64) -> Result<()>
[src]
pub fn wait_long_int<'env>(&'env self, arg0: i64, arg1: i32) -> Result<()>
[src]
pub fn wait<'env>(&'env self) -> Result<()>
[src]
Trait Implementations
impl AsRef<BaseStream> for LongStream
fn as_ref(&self) -> &BaseStream
impl Deref for LongStream
impl AsValidJObjectAndEnv for LongStream
impl AsJValue for LongStream
Auto Trait Implementations
impl !Sync for LongStream
impl !Send for LongStream
impl Unpin for LongStream
impl RefUnwindSafe for LongStream
impl UnwindSafe for LongStream
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,