Status

Added in 4.2.0
Deprecated in 7.0.0

enum Status


The file changed status for incremental execution.

Summary

Enum Values

ADDED

The file was added since the last build.

CHANGED

The file was modified since the last build.

NOTCHANGED

The file was not changed since the last build.

REMOVED

The file was removed since the last build.

Public functions

java-static Status!
valueOf(name: String!)

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

java-static Array<Status!>!

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

Enum Values

ADDED

val Status.ADDEDStatus

The file was added since the last build.

CHANGED

val Status.CHANGEDStatus

The file was modified since the last build.

NOTCHANGED

val Status.NOTCHANGEDStatus

The file was not changed since the last build.

REMOVED

val Status.REMOVEDStatus

The file was removed since the last build.

Public functions

valueOf

Added in 4.2.0
java-static fun valueOf(name: String!): Status!

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

Returns
Status!

the enum constant with the specified name

Throws
java.lang.IllegalArgumentException

if this enum type has no constant with the specified name

values

Added in 4.2.0
java-static fun values(): Array<Status!>!

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.

Returns
Array<Status!>!

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