Class FamiliesSwitch<T>


  • public class FamiliesSwitch<T>
    extends java.lang.Object
    The Switch for the model's inheritance hierarchy. It supports the call doSwitch(object) to invoke the caseXXX method for each class of the model, starting with the actual class of the object and proceeding up the inheritance hierarchy until a non-null result is returned, which is the result of the switch.
    See Also:
    FamiliesPackage
    • Constructor Summary

      Constructors 
      Constructor Description
      FamiliesSwitch()
      Creates an instance of the switch.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      T caseBike​(Bike object)
      Returns the result of interpreting the object as an instance of 'Bike'.
      T caseDistrict​(District object)
      Returns the result of interpreting the object as an instance of 'District'.
      T caseDog​(Dog object)
      Returns the result of interpreting the object as an instance of 'Dog'.
      T caseFamily​(Family object)
      Returns the result of interpreting the object as an instance of 'Family'.
      T caseModel​(Model object)
      Returns the result of interpreting the object as an instance of 'Model'.
      T caseNamedElement​(NamedElement object)
      Returns the result of interpreting the object as an instance of 'Named Element'.
      T casePerson​(Person object)
      Returns the result of interpreting the object as an instance of 'Person'.
      T casePet​(Pet object)
      Returns the result of interpreting the object as an instance of 'Pet'.
      T defaultCase​(org.eclipse.emf.ecore.EObject object)
      Returns the result of interpreting the object as an instance of 'EObject'.
      protected T doSwitch​(int classifierID, org.eclipse.emf.ecore.EObject theEObject)
      Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
      protected T doSwitch​(org.eclipse.emf.ecore.EClass theEClass, org.eclipse.emf.ecore.EObject theEObject)
      Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
      T doSwitch​(org.eclipse.emf.ecore.EObject theEObject)
      Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • modelPackage

        protected static FamiliesPackage modelPackage
        The cached model package
    • Constructor Detail

      • FamiliesSwitch

        public FamiliesSwitch()
        Creates an instance of the switch.
    • Method Detail

      • doSwitch

        public T doSwitch​(org.eclipse.emf.ecore.EObject theEObject)
        Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
        Returns:
        the first non-null result returned by a caseXXX call.
      • doSwitch

        protected T doSwitch​(org.eclipse.emf.ecore.EClass theEClass,
                             org.eclipse.emf.ecore.EObject theEObject)
        Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
        Returns:
        the first non-null result returned by a caseXXX call.
      • doSwitch

        protected T doSwitch​(int classifierID,
                             org.eclipse.emf.ecore.EObject theEObject)
        Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
        Returns:
        the first non-null result returned by a caseXXX call.
      • caseNamedElement

        public T caseNamedElement​(NamedElement object)
        Returns the result of interpreting the object as an instance of 'Named Element'. This implementation returns null; returning a non-null result will terminate the switch.
        Parameters:
        object - the target of the switch.
        Returns:
        the result of interpreting the object as an instance of 'Named Element'.
        See Also:
        doSwitch(EObject)
      • caseFamily

        public T caseFamily​(Family object)
        Returns the result of interpreting the object as an instance of 'Family'. This implementation returns null; returning a non-null result will terminate the switch.
        Parameters:
        object - the target of the switch.
        Returns:
        the result of interpreting the object as an instance of 'Family'.
        See Also:
        doSwitch(EObject)
      • casePet

        public T casePet​(Pet object)
        Returns the result of interpreting the object as an instance of 'Pet'. This implementation returns null; returning a non-null result will terminate the switch.
        Parameters:
        object - the target of the switch.
        Returns:
        the result of interpreting the object as an instance of 'Pet'.
        See Also:
        doSwitch(EObject)
      • casePerson

        public T casePerson​(Person object)
        Returns the result of interpreting the object as an instance of 'Person'. This implementation returns null; returning a non-null result will terminate the switch.
        Parameters:
        object - the target of the switch.
        Returns:
        the result of interpreting the object as an instance of 'Person'.
        See Also:
        doSwitch(EObject)
      • caseDog

        public T caseDog​(Dog object)
        Returns the result of interpreting the object as an instance of 'Dog'. This implementation returns null; returning a non-null result will terminate the switch.
        Parameters:
        object - the target of the switch.
        Returns:
        the result of interpreting the object as an instance of 'Dog'.
        See Also:
        doSwitch(EObject)
      • caseDistrict

        public T caseDistrict​(District object)
        Returns the result of interpreting the object as an instance of 'District'. This implementation returns null; returning a non-null result will terminate the switch.
        Parameters:
        object - the target of the switch.
        Returns:
        the result of interpreting the object as an instance of 'District'.
        See Also:
        doSwitch(EObject)
      • caseModel

        public T caseModel​(Model object)
        Returns the result of interpreting the object as an instance of 'Model'. This implementation returns null; returning a non-null result will terminate the switch.
        Parameters:
        object - the target of the switch.
        Returns:
        the result of interpreting the object as an instance of 'Model'.
        See Also:
        doSwitch(EObject)
      • caseBike

        public T caseBike​(Bike object)
        Returns the result of interpreting the object as an instance of 'Bike'. This implementation returns null; returning a non-null result will terminate the switch.
        Parameters:
        object - the target of the switch.
        Returns:
        the result of interpreting the object as an instance of 'Bike'.
        See Also:
        doSwitch(EObject)
      • defaultCase

        public T defaultCase​(org.eclipse.emf.ecore.EObject object)
        Returns the result of interpreting the object as an instance of 'EObject'. This implementation returns null; returning a non-null result will terminate the switch, but this is the last case anyway.
        Parameters:
        object - the target of the switch.
        Returns:
        the result of interpreting the object as an instance of 'EObject'.
        See Also:
        doSwitch(org.eclipse.emf.ecore.EObject)