Status

public 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 methods

static Status

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

static Status[]

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

Enum Values

ADDED

Status Status.ADDED

The file was added since the last build.

CHANGED

Status Status.CHANGED

The file was modified since the last build.

NOTCHANGED

Status Status.NOTCHANGED

The file was not changed since the last build.

REMOVED

Status Status.REMOVED

The file was removed since the last build.

Public methods

valueOf

public static Status 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.)

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

public static Status[] values()

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
Status[]

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