All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.gs.collections.impl.list.fixed.SextupletonList Maven / Gradle / Ivy

Go to download

GS Collections is a collections framework for Java. It has JDK-compatible List, Set and Map implementations with a rich API and set of utility classes that work with any JDK compatible Collections, Arrays, Maps or Strings. The iteration protocol was inspired by the Smalltalk collection framework.

There is a newer version: 7.0.3
Show newest version
/*
 * Copyright 2014 Goldman Sachs.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.gs.collections.impl.list.fixed;

import java.io.Externalizable;
import java.io.IOException;
import java.io.ObjectInput;
import java.io.ObjectOutput;

import com.gs.collections.api.block.procedure.Procedure;
import com.gs.collections.api.block.procedure.Procedure2;
import com.gs.collections.api.block.procedure.primitive.ObjectIntProcedure;
import com.gs.collections.impl.block.factory.Comparators;
import net.jcip.annotations.NotThreadSafe;

/**
 * This is a six element immutable List which is created by calling Lists.fixedSize.of(one, two, three, four, five, six).
 */
@NotThreadSafe
final class SextupletonList
        extends AbstractMemoryEfficientMutableList
        implements Externalizable
{
    private static final long serialVersionUID = 1L;

    private T element1;
    private T element2;
    private T element3;
    private T element4;
    private T element5;
    private T element6;

    @SuppressWarnings("UnusedDeclaration")
    public SextupletonList()
    {
        // For Externalizable use only
    }

    SextupletonList(T obj1, T obj2, T obj3, T obj4, T obj5, T obj6)
    {
        this.element1 = obj1;
        this.element2 = obj2;
        this.element3 = obj3;
        this.element4 = obj4;
        this.element5 = obj5;
        this.element6 = obj6;
    }

    @Override
    public ArrayAdapter with(T value)
    {
        return ArrayAdapter.newArrayWith(
                this.element1,
                this.element2,
                this.element3,
                this.element4,
                this.element5,
                this.element6,
                value);
    }

    // Weird implementation of clone() is ok on final classes

    @Override
    public SextupletonList clone()
    {
        return new SextupletonList(
                this.element1,
                this.element2,
                this.element3,
                this.element4,
                this.element5,
                this.element6);
    }

    public int size()
    {
        return 6;
    }

    public T get(int index)
    {
        switch (index)
        {
            case 0:
                return this.element1;
            case 1:
                return this.element2;
            case 2:
                return this.element3;
            case 3:
                return this.element4;
            case 4:
                return this.element5;
            case 5:
                return this.element6;
            default:
                throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + this.size());
        }
    }

    @Override
    public boolean contains(Object obj)
    {
        return Comparators.nullSafeEquals(obj, this.element1)
                || Comparators.nullSafeEquals(obj, this.element2)
                || Comparators.nullSafeEquals(obj, this.element3)
                || Comparators.nullSafeEquals(obj, this.element4)
                || Comparators.nullSafeEquals(obj, this.element5)
                || Comparators.nullSafeEquals(obj, this.element6);
    }

    /**
     * set is implemented purely to allow the List to be sorted, not because this List should be considered mutable.
     */
    public T set(int index, T element)
    {
        switch (index)
        {
            case 0:
                T previousElement1 = this.element1;
                this.element1 = element;
                return previousElement1;
            case 1:
                T previousElement2 = this.element2;
                this.element2 = element;
                return previousElement2;
            case 2:
                T previousElement3 = this.element3;
                this.element3 = element;
                return previousElement3;
            case 3:
                T previousElement4 = this.element4;
                this.element4 = element;
                return previousElement4;
            case 4:
                T previousElement5 = this.element5;
                this.element5 = element;
                return previousElement5;
            case 5:
                T previousElement6 = this.element6;
                this.element6 = element;
                return previousElement6;
            default:
                throw new IndexOutOfBoundsException("Index: " + index + ", Size: " + this.size());
        }
    }

    @Override
    public T getFirst()
    {
        return this.element1;
    }

    @Override
    public T getLast()
    {
        return this.element6;
    }

    @Override
    public void forEach(Procedure procedure)
    {
        procedure.value(this.element1);
        procedure.value(this.element2);
        procedure.value(this.element3);
        procedure.value(this.element4);
        procedure.value(this.element5);
        procedure.value(this.element6);
    }

    @Override
    public void forEachWithIndex(ObjectIntProcedure objectIntProcedure)
    {
        objectIntProcedure.value(this.element1, 0);
        objectIntProcedure.value(this.element2, 1);
        objectIntProcedure.value(this.element3, 2);
        objectIntProcedure.value(this.element4, 3);
        objectIntProcedure.value(this.element5, 4);
        objectIntProcedure.value(this.element6, 5);
    }

    @Override
    public 

void forEachWith(Procedure2 procedure, P parameter) { procedure.value(this.element1, parameter); procedure.value(this.element2, parameter); procedure.value(this.element3, parameter); procedure.value(this.element4, parameter); procedure.value(this.element5, parameter); procedure.value(this.element6, parameter); } public void writeExternal(ObjectOutput out) throws IOException { out.writeObject(this.element1); out.writeObject(this.element2); out.writeObject(this.element3); out.writeObject(this.element4); out.writeObject(this.element5); out.writeObject(this.element6); } public void readExternal(ObjectInput in) throws IOException, ClassNotFoundException { this.element1 = (T) in.readObject(); this.element2 = (T) in.readObject(); this.element3 = (T) in.readObject(); this.element4 = (T) in.readObject(); this.element5 = (T) in.readObject(); this.element6 = (T) in.readObject(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy