Caching Class

public final class Caching
extends ExpandableStringEnum<Caching>

Caching type of Data Disk.

Field Summary

Modifier and Type Field and Description
static final Caching NONE

Static value None for Caching.

static final Caching READ_ONLY

Static value ReadOnly for Caching.

static final Caching READ_WRITE

Static value ReadWrite for Caching.

Constructor Summary

Constructor Description
Caching()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of Caching value.

Method Summary

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

Creates or finds a Caching from its string representation.

static Collection<Caching> values()

Gets known Caching values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

NONE

public static final Caching NONE

Static value None for Caching.

READ_ONLY

public static final Caching READ_ONLY

Static value ReadOnly for Caching.

READ_WRITE

public static final Caching READ_WRITE

Static value ReadWrite for Caching.

Constructor Details

Caching

@Deprecated
public Caching()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of Caching value.

Method Details

fromString

public static Caching fromString(String name)

Creates or finds a Caching from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding Caching.

values

public static Collection<Caching> values()

Gets known Caching values.

Returns:

known Caching values.

Applies to