![JAR search and dependency download from the Maven repository](/logo.png)
io.xlate.edi.internal.schema.implementation.BaseComplexImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of staedi Show documentation
Show all versions of staedi Show documentation
Streaming API for EDI for Java
package io.xlate.edi.internal.schema.implementation;
import java.util.List;
import java.util.Objects;
import io.xlate.edi.schema.EDIComplexType;
import io.xlate.edi.schema.implementation.EDITypeImplementation;
public abstract class BaseComplexImpl extends BaseImpl {
protected final List sequence;
public BaseComplexImpl(List sequence, String title, String description) {
super(title, description);
this.sequence = sequence;
}
@Override
public boolean equals(Object o) {
return super.equals(o) && Objects.equals(sequence, ((BaseComplexImpl) o).sequence);
}
@Override
public int hashCode() {
return Objects.hash(super.hashCode(), sequence);
}
public List getSequence() {
return sequence;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy