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

org.eclipse.esmf.metamodel.characteristic.impl.DefaultEither 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.characteristic.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.Characteristic;
import org.eclipse.esmf.metamodel.Type;
import org.eclipse.esmf.metamodel.characteristic.Either;
import org.eclipse.esmf.metamodel.impl.DefaultCharacteristic;

public class DefaultEither extends DefaultCharacteristic implements Either {
   private final Characteristic left;
   private final Characteristic right;

   public DefaultEither( final MetaModelBaseAttributes metaModelBaseAttributes,
         final Optional dataType,
         final Characteristic left,
         final Characteristic right ) {
      super( metaModelBaseAttributes, dataType );
      this.left = left;
      this.right = right;
   }

   /**
    * The Characteristic for the left side value of a disjoint union.
    *
    * @return the left.
    */
   @Override
   public Characteristic getLeft() {
      return left;
   }

   /**
    * The Characteristic for the right side value of a disjoint union.
    *
    * @return the right.
    */
   @Override
   public Characteristic getRight() {
      return right;
   }

   /**
    * 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.visitEither( this, context );
   }

   @Override
   public String toString() {
      return new StringJoiner( ", ", DefaultEither.class.getSimpleName() + "[", "]" )
            .add( "left=" + left )
            .add( "right=" + right )
            .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 DefaultEither that = (DefaultEither) o;
      return Objects.equals( left, that.left )
            && Objects.equals( right, that.right );
   }

   @Override
   public int hashCode() {
      return Objects.hash( super.hashCode(), left, right );
   }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy