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

Static value Automatic for SyncMode.

static final SyncMode MANUAL

Static value Manual for SyncMode.

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

Static value Automatic for SyncMode.

MANUAL

public static final SyncMode MANUAL

Static value Manual for SyncMode.

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 values()

Gets known SyncMode values.

Returns:

known SyncMode values.

Applies to