Enum CrossReferenceResolutionScope

    • Enum Constant Detail

      • WORKSPACE

        public static final CrossReferenceResolutionScope WORKSPACE
        Crawls the whole workspace for model files, loading them as EMF models in order to determine their outgoing dependencies.
      • PROJECT

        public static final CrossReferenceResolutionScope PROJECT
        Crawls the project containing the file which dependencies we're resolving in order to determine their outgoing dependencies.
      • CONTAINER

        public static final CrossReferenceResolutionScope CONTAINER
        Only crawl the container of the file which dependencies we're resolving.
      • OUTGOING

        public static final CrossReferenceResolutionScope OUTGOING
        Do not try to find files that depend on the file currently being resolved, only check for its own outgoing dependencies.
    • Method Detail

      • values

        public static CrossReferenceResolutionScope[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CrossReferenceResolutionScope c : CrossReferenceResolutionScope.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CrossReferenceResolutionScope valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null