
org.streamingpool.ext.analysis.expression.AssertionGroupExpression Maven / Gradle / Ivy
// @formatter:off
/**
*
* This file is part of streaming pool (http://www.streamingpool.org).
*
* Copyright (c) 2017-present, CERN. All rights reserved.
*
* 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.
*
*/
// @formatter:on
package org.streamingpool.ext.analysis.expression;
import java.util.Collection;
import java.util.List;
import org.streamingpool.ext.analysis.AssertionStatus;
import org.streamingpool.ext.analysis.resolver.AssertionGroupResolver;
import org.tensorics.core.tree.domain.AbstractDeferredExpression;
import com.google.common.collect.ImmutableList;
/**
* A group of assertions that are evaluated altogether. The strategy is defined in the {@link AssertionGroupResolver}.
*
* @see AssertionGroupResolver
* @author acalia, caguiler, kfuchsberger
*/
public class AssertionGroupExpression extends AbstractDeferredExpression {
private final List assertions;
public AssertionGroupExpression(Collection assertions) {
this.assertions = ImmutableList.copyOf(assertions);
}
@Override
public final List getChildren() {
return assertions;
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + ((assertions == null) ? 0 : assertions.hashCode());
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
AssertionGroupExpression other = (AssertionGroupExpression) obj;
if (assertions == null) {
if (other.assertions != null) {
return false;
}
} else if (!assertions.equals(other.assertions)) {
return false;
}
return true;
}
@Override
public String toString() {
return "AssertionGroupExpression [assertions=" + assertions + "]";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy