Package com.gs.collections.impl.bag.mutable.primitive

Examples of com.gs.collections.impl.bag.mutable.primitive.ByteHashBag


        return new ByteHashSet();
    }

    public MutableByteBag toBag()
    {
        return new ByteHashBag();
    }
View Full Code Here


        return new ByteHashSet();
    }

    public MutableByteBag toBag()
    {
        return new ByteHashBag();
    }
View Full Code Here

        return set;
    }

    public MutableByteBag toBag()
    {
        final MutableByteBag bag = new ByteHashBag();
        this.forEach(new ByteProcedure()
        {
            public void value(byte each)
            {
                bag.add(each);
            }
        });
        return bag;
    }
View Full Code Here

    }

    public ImmutableByteBag select(BytePredicate predicate)
    {
        return predicate.accept(this.element1) ? ByteHashBag.newBagWith(this.element1).toImmutable()
                : new ByteHashBag().toImmutable();
    }
View Full Code Here

                : new ByteHashBag().toImmutable();
    }

    public ImmutableByteBag reject(BytePredicate predicate)
    {
        return predicate.accept(this.element1) ? new ByteHashBag().toImmutable()
                : ByteHashBag.newBagWith(this.element1).toImmutable();
    }
View Full Code Here

        return result.toImmutable();
    }

    public ImmutableByteBag collectByte(final ByteFunction<? super T> byteFunction)
    {
        final ByteHashBag result = new ByteHashBag(this.size());
        this.forEachWithOccurrences(new ObjectIntProcedure<T>()
        {
            public void value(T each, int occurrences)
            {
                result.addOccurrences(byteFunction.byteValueOf(each), occurrences);
            }
        });
        return result.toImmutable();
    }
View Full Code Here

        return this.collectBoolean(booleanFunction, new BooleanHashBag());
    }

    public MutableByteBag collectByte(ByteFunction<? super T> byteFunction)
    {
        return this.collectByte(byteFunction, new ByteHashBag());
    }
View Full Code Here

        return new ByteHashSet();
    }

    public MutableByteBag toBag()
    {
        return new ByteHashBag();
    }
View Full Code Here

        return new ByteHashSet();
    }

    public MutableByteBag toBag()
    {
        return new ByteHashBag();
    }
View Full Code Here

        return ByteHashBag.newBag(this.delegate).with(element).toImmutable();
    }

    public ImmutableByteBag newWithout(byte element)
    {
        ByteHashBag hashBag = ByteHashBag.newBag(this.delegate);
        hashBag.remove(element);
        return hashBag.toImmutable();
    }
View Full Code Here

TOP

Related Classes of com.gs.collections.impl.bag.mutable.primitive.ByteHashBag

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.