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

com.jongsoft.lang.collection.tuple.QuadrupletImpl Maven / Gradle / Ivy

The newest version!
package com.jongsoft.lang.collection.tuple;

public class QuadrupletImpl extends TripletImpl implements Tuple.Quadruplet {

    public QuadrupletImpl(Object... elements) {
        super(elements);
    }

    @Override
    public D getFourth() {
        return (D) super.element(3);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy