ScopedArtifacts.Scope

Added in 7.4.0

enum ScopedArtifacts.Scope : Enum


Defines possible scopes.

Summary

Enum Values

ALL

Full scope, including project scope, imported projects and all external dependencies.

PROJECT

Project scope, not including imported projects nor external dependencies.

Public functions

ScopedArtifacts.Scope
valueOf(value: String)

Returns the enum constant of this type with the specified name.

Array<ScopedArtifacts.Scope>

Returns an array containing the constants of this enum type, in the order they're declared.

Enum Values

ALL

val ScopedArtifacts.Scope.ALLScopedArtifacts.Scope

Full scope, including project scope, imported projects and all external dependencies.

PROJECT

val ScopedArtifacts.Scope.PROJECTScopedArtifacts.Scope

Project scope, not including imported projects nor external dependencies.

Public functions

valueOf

Added in 7.4.0
fun valueOf(value: String): ScopedArtifacts.Scope

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.)

Throws
kotlin.IllegalArgumentException

if this enum type has no constant with the specified name

values

Added in 7.4.0
fun values(): Array<ScopedArtifacts.Scope>

Returns an array containing the constants of this enum type, in the order they're declared.

This method may be used to iterate over the constants.