Enum Class ArtifactScopeEnum
- All Implemented Interfaces:
- Serializable,- Comparable<ArtifactScopeEnum>,- Constable
Deprecated.
Type safe reincarnation of Artifact scope. Also supplies the 
DEFAULT_SCOPE as well
 as convenience method to deal with scope relationships.- 
Nested Class SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Field SummaryFields
- 
Method SummaryModifier and TypeMethodDescriptionstatic ArtifactScopeEnumcheckScope(ArtifactScopeEnum scope) Deprecated.Helper method to simplify null processingbooleanencloses(ArtifactScopeEnum scope) Deprecated.scope relationship function.getScope()Deprecated.static ArtifactScopeEnumDeprecated.Returns the enum constant of this class with the specified name.static ArtifactScopeEnum[]values()Deprecated.Returns an array containing the constants of this enum class, in the order they are declared.
- 
Enum Constant Details- 
compileDeprecated.
- 
testDeprecated.
- 
runtimeDeprecated.
- 
providedDeprecated.
- 
systemDeprecated.
- 
runtime_plus_systemDeprecated.
 
- 
- 
Field Details- 
DEFAULT_SCOPEDeprecated.
 
- 
- 
Method Details- 
valuesDeprecated.Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
 
- 
valueOfDeprecated.Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
- NullPointerException- if the argument is null
 
- 
checkScopeDeprecated.Helper method to simplify null processing- Parameters:
- scope- a scope or- null
- Returns:
- the provided scope or DEFAULT_SCOPE
 
- 
getScope
- 
enclosesDeprecated.scope relationship function. Used by the graph conflict resolution policies- Parameters:
- scope- a scope
- Returns:
- true is supplied scope is an inclusive sub-scope of current one.
 
 
-