io.permazen.tuple.AbstractHas5 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of permazen-util Show documentation
Show all versions of permazen-util Show documentation
Common utility classes used by Permazen.
The newest version!
/*
* Copyright (C) 2015 Archie L. Cobbs. All rights reserved.
*/
package io.permazen.tuple;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
class AbstractHas5 extends AbstractHas4 implements Has5 {
final V5 v5;
protected AbstractHas5(V1 v1, V2 v2, V3 v3, V4 v4, V5 v5) {
super(v1, v2, v3, v4);
this.v5 = v5;
}
@Override
public V5 getValue5() {
return this.v5;
}
@Override
public int getSize() {
return 5;
}
@Override
public List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy