ChangeDetectionMode Class

public final class ChangeDetectionMode
extends ExpandableStringEnum<ChangeDetectionMode>

Change Detection Mode. Applies to a directory specified in directoryPath parameter.

Field Summary

Modifier and Type Field and Description
static final ChangeDetectionMode DEFAULT

Static value Default for ChangeDetectionMode.

static final ChangeDetectionMode RECURSIVE

Static value Recursive for ChangeDetectionMode.

Constructor Summary

Constructor Description
ChangeDetectionMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ChangeDetectionMode value.

Method Summary

Modifier and Type Method and Description
static ChangeDetectionMode fromString(String name)

Creates or finds a ChangeDetectionMode from its string representation.

static Collection<ChangeDetectionMode> values()

Gets known ChangeDetectionMode values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

DEFAULT

public static final ChangeDetectionMode DEFAULT

Static value Default for ChangeDetectionMode.

RECURSIVE

public static final ChangeDetectionMode RECURSIVE

Static value Recursive for ChangeDetectionMode.

Constructor Details

ChangeDetectionMode

@Deprecated
public ChangeDetectionMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ChangeDetectionMode value.

Method Details

fromString

public static ChangeDetectionMode fromString(String name)

Creates or finds a ChangeDetectionMode from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ChangeDetectionMode.

values

public static Collection<ChangeDetectionMode> values()

Gets known ChangeDetectionMode values.

Returns:

known ChangeDetectionMode values.

Applies to