SyncMode Class

public final class SyncMode
extends ExpandableStringEnum<SyncMode>

Backend address synchronous mode for the backend pool.

Field Summary

Modifier and Type Field and Description
static final SyncMode AUTOMATIC

Automatic.

static final SyncMode MANUAL

Manual.

Constructor Summary

Constructor Description
SyncMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of SyncMode value.

Method Summary

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

Creates or finds a SyncMode from its string representation.

static Collection<SyncMode> values()

Gets known SyncMode values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

AUTOMATIC

public static final SyncMode AUTOMATIC

Automatic.

MANUAL

public static final SyncMode MANUAL

Manual.

Constructor Details

SyncMode

@Deprecated
public SyncMode()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of SyncMode value.

Method Details

fromString

public static SyncMode fromString(String name)

Creates or finds a SyncMode from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding SyncMode.

values

public static Collection<SyncMode> values()

Gets known SyncMode values.

Returns:

known SyncMode values.

Applies to