Class ResourcetypeSwitch<T>


  • public class ResourcetypeSwitch<T>
    extends Switch<T>
    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:
    ResourcetypePackage
    Generated class or method.
    • Constructor Detail

      • ResourcetypeSwitch

        public ResourcetypeSwitch()
        Creates an instance of the switch.
        Generated class or method.
    • Method Detail

      • isSwitchFor

        protected boolean isSwitchFor​(EPackage ePackage)
        Checks whether this is a switch for the given package.
        Specified by:
        isSwitchFor in class Switch<T>
        Parameters:
        ePackage - the package in question.
        Returns:
        whether this is a switch for the given package.
        Generated class or method.
      • doSwitch

        protected T doSwitch​(int classifierID,
                             EObject theEObject)
        Calls caseXXX for each class of the model until one returns a non null result; it yields that result.
        Overrides:
        doSwitch in class Switch<T>
        Returns:
        the first non-null result returned by a caseXXX call.
        Generated class or method.
      • caseResourceSignature

        public T caseResourceSignature​(ResourceSignature object)
        Returns the result of interpreting the object as an instance of 'Resource Signature'. 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 'Resource Signature'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • caseProcessingResourceType

        public T caseProcessingResourceType​(ProcessingResourceType object)
        Returns the result of interpreting the object as an instance of 'Processing Resource Type'. 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 'Processing Resource Type'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • caseResourceType

        public T caseResourceType​(ResourceType object)
        Returns the result of interpreting the object as an instance of 'Resource Type'. 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 'Resource Type'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • caseResourceRepository

        public T caseResourceRepository​(ResourceRepository object)
        Returns the result of interpreting the object as an instance of 'Resource Repository'. 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 'Resource Repository'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • caseSchedulingPolicy

        public T caseSchedulingPolicy​(SchedulingPolicy object)
        Returns the result of interpreting the object as an instance of 'Scheduling Policy'. 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 'Scheduling Policy'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • caseCommunicationLinkResourceType

        public T caseCommunicationLinkResourceType​(CommunicationLinkResourceType object)
        Returns the result of interpreting the object as an instance of 'Communication Link Resource Type'. 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 'Communication Link Resource Type'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • caseResourceInterface

        public T caseResourceInterface​(ResourceInterface object)
        Returns the result of interpreting the object as an instance of 'Resource Interface'. 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 'Resource Interface'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • caseIdentifier

        public T caseIdentifier​(de.uka.ipd.sdq.identifier.Identifier object)
        Returns the result of interpreting the object as an instance of 'Identifier'. 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 'Identifier'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • 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)
        Generated class or method.
      • caseEntity

        public T caseEntity​(Entity object)
        Returns the result of interpreting the object as an instance of 'Entity'. 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 'Entity'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • caseUnitCarryingElement

        public T caseUnitCarryingElement​(de.uka.ipd.sdq.units.UnitCarryingElement object)
        Returns the result of interpreting the object as an instance of 'Unit Carrying 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 'Unit Carrying Element'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • caseResourceInterfaceProvidingEntity

        public T caseResourceInterfaceProvidingEntity​(ResourceInterfaceProvidingEntity object)
        Returns the result of interpreting the object as an instance of 'Resource Interface Providing Entity'. 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 'Resource Interface Providing Entity'.
        See Also:
        doSwitch(EObject)
        Generated class or method.
      • defaultCase

        public T defaultCase​(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.
        Overrides:
        defaultCase in class Switch<T>
        Parameters:
        object - the target of the switch.
        Returns:
        the result of interpreting the object as an instance of 'EObject'.
        See Also:
        Switch.doSwitch(org.eclipse.emf.ecore.EObject)
        Generated class or method.