Package org.cdk8s.plus24
Enum AzureDiskPersistentVolumeCachingMode
- java.lang.Object
-
- java.lang.Enum<AzureDiskPersistentVolumeCachingMode>
-
- org.cdk8s.plus24.AzureDiskPersistentVolumeCachingMode
-
- All Implemented Interfaces:
Serializable
,Comparable<AzureDiskPersistentVolumeCachingMode>
@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-15T15:42:36.271Z") @Stability(Stable) public enum AzureDiskPersistentVolumeCachingMode extends Enum<AzureDiskPersistentVolumeCachingMode>
Azure disk caching modes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONE
None.READ_ONLY
ReadOnly.READ_WRITE
ReadWrite.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AzureDiskPersistentVolumeCachingMode
valueOf(String name)
Returns the enum constant of this type with the specified name.static AzureDiskPersistentVolumeCachingMode[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
@Stability(Stable) public static final AzureDiskPersistentVolumeCachingMode NONE
None.
-
READ_ONLY
@Stability(Stable) public static final AzureDiskPersistentVolumeCachingMode READ_ONLY
ReadOnly.
-
READ_WRITE
@Stability(Stable) public static final AzureDiskPersistentVolumeCachingMode READ_WRITE
ReadWrite.
-
-
Method Detail
-
values
public static AzureDiskPersistentVolumeCachingMode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (AzureDiskPersistentVolumeCachingMode c : AzureDiskPersistentVolumeCachingMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AzureDiskPersistentVolumeCachingMode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-