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

org.eclipse.esmf.metamodel.constraint.impl.DefaultRangeConstraint Maven / Gradle / Ivy

There is a newer version: 2.9.5
Show newest version
/*
 * Copyright (c) 2024 Robert Bosch Manufacturing Solutions GmbH
 *
 * See the AUTHORS file(s) distributed with this work for additional
 * information regarding authorship.
 *
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at https://mozilla.org/MPL/2.0/.
 *
 * SPDX-License-Identifier: MPL-2.0
 */
package org.eclipse.esmf.metamodel.constraint.impl;

import java.util.Objects;
import java.util.Optional;
import java.util.StringJoiner;

import org.eclipse.esmf.aspectmodel.loader.MetaModelBaseAttributes;
import org.eclipse.esmf.aspectmodel.visitor.AspectVisitor;
import org.eclipse.esmf.metamodel.BoundDefinition;
import org.eclipse.esmf.metamodel.ScalarValue;
import org.eclipse.esmf.metamodel.constraint.RangeConstraint;
import org.eclipse.esmf.metamodel.impl.DefaultConstraint;

public class DefaultRangeConstraint extends DefaultConstraint implements RangeConstraint {
   private final Optional minValue;
   private final Optional maxValue;
   private final BoundDefinition lowerBoundDefinition;
   private final BoundDefinition upperBoundDefinition;

   public DefaultRangeConstraint( final MetaModelBaseAttributes metaModelBaseAttributes,
         final Optional minValue,
         final Optional maxValue,
         final BoundDefinition lowerBoundDefinition,
         final BoundDefinition upperBoundDefinition ) {
      super( metaModelBaseAttributes );
      this.minValue = minValue;
      this.maxValue = maxValue;
      this.lowerBoundDefinition = lowerBoundDefinition;
      this.upperBoundDefinition = upperBoundDefinition;
   }

   /**
    * The lower bound of a range.
    *
    * @return the minValue.
    */
   @Override
   public Optional getMinValue() {
      return minValue;
   }

   /**
    * The upper bound of a range.
    *
    * @return the maxValue.
    */
   @Override
   public Optional getMaxValue() {
      return maxValue;
   }

   @Override
   public BoundDefinition getLowerBoundDefinition() {
      return lowerBoundDefinition;
   }

   @Override
   public BoundDefinition getUpperBoundDefinition() {
      return upperBoundDefinition;
   }

   /**
    * Accepts an Aspect visitor
    *
    * @param visitor The visitor to accept
    * @param  The result type of the traversal operation
    * @param  The context of the visitor traversal
    */
   @Override
   public  T accept( final AspectVisitor visitor, final C context ) {
      return visitor.visitRangeConstraint( this, context );
   }

   @Override
   public String toString() {
      return new StringJoiner( ", ", DefaultRangeConstraint.class.getSimpleName() + "[", "]" )
            .add( "minValue=" + minValue )
            .add( "maxValue=" + maxValue )
            .add( "lowerBoundDefinition=" + lowerBoundDefinition )
            .add( "upperBoundDefinition=" + upperBoundDefinition )
            .toString();
   }

   @Override
   public boolean equals( final Object o ) {
      if ( this == o ) {
         return true;
      }
      if ( o == null || getClass() != o.getClass() ) {
         return false;
      }
      if ( !super.equals( o ) ) {
         return false;
      }
      final DefaultRangeConstraint that = (DefaultRangeConstraint) o;
      return Objects.equals( minValue, that.minValue )
            && Objects.equals( maxValue, that.maxValue )
            && lowerBoundDefinition == that.lowerBoundDefinition
            && upperBoundDefinition == that.upperBoundDefinition;
   }

   @Override
   public int hashCode() {
      return Objects.hash( super.hashCode(), minValue, maxValue, lowerBoundDefinition, upperBoundDefinition );
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy