public enum CrossReferenceResolutionScope extends Enum<CrossReferenceResolutionScope>
Enum Constant and Description |
---|
CONTAINER
Only crawl the container of the file which dependencies we're resolving.
|
OUTGOING
Do not try to find files that depend on the file currently being resolved, only check for its own
outgoing dependencies.
|
PROJECT
Crawls the project containing the file which dependencies we're resolving in order to determine their
outgoing dependencies.
|
SELF
Do not try and resolve cross-referenced resources for this logical model.
|
WORKSPACE
Crawls the whole workspace for model files, loading them as EMF models in order to determine their
outgoing dependencies.
|
Modifier and Type | Method and Description |
---|---|
static CrossReferenceResolutionScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CrossReferenceResolutionScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CrossReferenceResolutionScope WORKSPACE
public static final CrossReferenceResolutionScope PROJECT
public static final CrossReferenceResolutionScope CONTAINER
public static final CrossReferenceResolutionScope OUTGOING
public static final CrossReferenceResolutionScope SELF
public static CrossReferenceResolutionScope[] values()
for (CrossReferenceResolutionScope c : CrossReferenceResolutionScope.values()) System.out.println(c);
public static CrossReferenceResolutionScope valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
Copyright (c) 2006, 2014 Obeo and others. All rights reserved.