public class LazyCharIterableAdapter extends AbstractLazyCharIterable
| Constructor and Description |
|---|
LazyCharIterableAdapter(org.eclipse.collections.api.CharIterable delegate) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
allSatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate) |
boolean |
anySatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate) |
void |
appendString(Appendable appendable) |
void |
appendString(Appendable appendable,
String separator) |
void |
appendString(Appendable appendable,
String start,
String separator,
String end) |
double |
average() |
org.eclipse.collections.api.iterator.CharIterator |
charIterator() |
boolean |
contains(char value) |
boolean |
containsAll(char... source) |
boolean |
containsAll(org.eclipse.collections.api.CharIterable source) |
int |
count(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate) |
char |
detectIfNone(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate,
char ifNone) |
void |
each(org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure) |
<T> T |
injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectCharToObjectFunction<? super T,? extends T> function) |
boolean |
isEmpty() |
String |
makeString() |
String |
makeString(String separator) |
String |
makeString(String start,
String separator,
String end) |
char |
max() |
char |
maxIfEmpty(char defaultValue) |
double |
median() |
char |
min() |
char |
minIfEmpty(char defaultValue) |
boolean |
noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate) |
boolean |
notEmpty() |
int |
size() |
long |
sum() |
char[] |
toArray() |
org.eclipse.collections.api.bag.primitive.MutableCharBag |
toBag() |
org.eclipse.collections.api.list.primitive.MutableCharList |
toList() |
org.eclipse.collections.api.set.primitive.MutableCharSet |
toSet() |
char[] |
toSortedArray() |
org.eclipse.collections.api.list.primitive.MutableCharList |
toSortedList() |
String |
toString() |
asLazy, collect, collectBoolean, collectByte, collectChar, collectDouble, collectFloat, collectInt, collectLong, collectShort, forEach, reject, selectpublic LazyCharIterableAdapter(org.eclipse.collections.api.CharIterable delegate)
public org.eclipse.collections.api.iterator.CharIterator charIterator()
public void each(org.eclipse.collections.api.block.procedure.primitive.CharProcedure procedure)
public int size()
size in interface org.eclipse.collections.api.PrimitiveIterablesize in class AbstractLazyCharIterablepublic boolean isEmpty()
isEmpty in interface org.eclipse.collections.api.PrimitiveIterableisEmpty in class AbstractLazyCharIterablepublic boolean notEmpty()
notEmpty in interface org.eclipse.collections.api.PrimitiveIterablenotEmpty in class AbstractLazyCharIterablepublic int count(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate)
count in interface org.eclipse.collections.api.CharIterablecount in class AbstractLazyCharIterablepublic boolean anySatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate)
anySatisfy in interface org.eclipse.collections.api.CharIterableanySatisfy in class AbstractLazyCharIterablepublic boolean allSatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate)
allSatisfy in interface org.eclipse.collections.api.CharIterableallSatisfy in class AbstractLazyCharIterablepublic boolean noneSatisfy(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate)
noneSatisfy in interface org.eclipse.collections.api.CharIterablenoneSatisfy in class AbstractLazyCharIterablepublic char detectIfNone(org.eclipse.collections.api.block.predicate.primitive.CharPredicate predicate,
char ifNone)
detectIfNone in interface org.eclipse.collections.api.CharIterabledetectIfNone in class AbstractLazyCharIterablepublic long sum()
sum in interface org.eclipse.collections.api.CharIterablesum in class AbstractLazyCharIterablepublic char max()
max in interface org.eclipse.collections.api.CharIterablemax in class AbstractLazyCharIterablepublic char min()
min in interface org.eclipse.collections.api.CharIterablemin in class AbstractLazyCharIterablepublic char minIfEmpty(char defaultValue)
minIfEmpty in interface org.eclipse.collections.api.CharIterableminIfEmpty in class AbstractLazyCharIterablepublic char maxIfEmpty(char defaultValue)
maxIfEmpty in interface org.eclipse.collections.api.CharIterablemaxIfEmpty in class AbstractLazyCharIterablepublic double average()
average in interface org.eclipse.collections.api.CharIterableaverage in class AbstractLazyCharIterablepublic double median()
median in interface org.eclipse.collections.api.CharIterablemedian in class AbstractLazyCharIterablepublic char[] toSortedArray()
toSortedArray in interface org.eclipse.collections.api.CharIterabletoSortedArray in class AbstractLazyCharIterablepublic org.eclipse.collections.api.list.primitive.MutableCharList toSortedList()
toSortedList in interface org.eclipse.collections.api.CharIterabletoSortedList in class AbstractLazyCharIterablepublic char[] toArray()
toArray in interface org.eclipse.collections.api.CharIterabletoArray in class AbstractLazyCharIterablepublic String toString()
toString in interface org.eclipse.collections.api.PrimitiveIterabletoString in class AbstractLazyCharIterablepublic String makeString()
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyCharIterablepublic String makeString(String separator)
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyCharIterablepublic String makeString(String start, String separator, String end)
makeString in interface org.eclipse.collections.api.PrimitiveIterablemakeString in class AbstractLazyCharIterablepublic void appendString(Appendable appendable)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyCharIterablepublic void appendString(Appendable appendable, String separator)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyCharIterablepublic void appendString(Appendable appendable, String start, String separator, String end)
appendString in interface org.eclipse.collections.api.PrimitiveIterableappendString in class AbstractLazyCharIterablepublic boolean contains(char value)
contains in interface org.eclipse.collections.api.CharIterablecontains in class AbstractLazyCharIterablepublic boolean containsAll(char... source)
containsAll in interface org.eclipse.collections.api.CharIterablecontainsAll in class AbstractLazyCharIterablepublic boolean containsAll(org.eclipse.collections.api.CharIterable source)
containsAll in interface org.eclipse.collections.api.CharIterablecontainsAll in class AbstractLazyCharIterablepublic org.eclipse.collections.api.list.primitive.MutableCharList toList()
toList in interface org.eclipse.collections.api.CharIterabletoList in class AbstractLazyCharIterablepublic org.eclipse.collections.api.set.primitive.MutableCharSet toSet()
toSet in interface org.eclipse.collections.api.CharIterabletoSet in class AbstractLazyCharIterablepublic org.eclipse.collections.api.bag.primitive.MutableCharBag toBag()
toBag in interface org.eclipse.collections.api.CharIterabletoBag in class AbstractLazyCharIterablepublic <T> T injectInto(T injectedValue,
org.eclipse.collections.api.block.function.primitive.ObjectCharToObjectFunction<? super T,? extends T> function)
injectInto in interface org.eclipse.collections.api.CharIterableinjectInto in class AbstractLazyCharIterableCopyright © 2004–2018. All rights reserved.