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

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

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

class TripletImpl extends PairImpl implements Tuple.Triplet {

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

    @Override
    public Z getThird() {
        return (Z) super.element(2);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy