CachingType Enum

  • java.lang.Object
    • java.lang.Enum
      • com.microsoft.azure.batch.protocol.models.CachingType

public enum CachingType
extends Enum<CachingType>

Defines values for CachingType.

Fields

NONE

The caching mode for the disk is not enabled.

READ_ONLY

The caching mode for the disk is read only.

READ_WRITE

The caching mode for the disk is read and write.

Methods inherited from java.lang.Enum

Methods inherited from java.lang.Object

Methods

fromString(String value)

public static CachingType fromString(String value)

Parses a serialized value to a CachingType instance.

Parameters

value
String
the serialized value to parse.

Returns

the parsed CachingType object, or null if unable to parse.

toString()

public String toString()

Returns

Overrides
java.lang.Enum.toString()

valueOf(String name)

public static CachingType valueOf(String name)

Parameters

name
String

Returns

values()

public static CachingType[] values()

Returns

Applies to