Package org.cdk8s.plus23
Enum AzureDiskPersistentVolumeCachingMode
- java.lang.Object
-
- java.lang.Enum<AzureDiskPersistentVolumeCachingMode>
-
- org.cdk8s.plus23.AzureDiskPersistentVolumeCachingMode
-
- All Implemented Interfaces:
Serializable,Comparable<AzureDiskPersistentVolumeCachingMode>
@Generated(value="jsii-pacmak/1.61.0 (build abf4039)", date="2022-07-06T20:17:23.512Z") @Stability(Stable) public enum AzureDiskPersistentVolumeCachingMode extends Enum<AzureDiskPersistentVolumeCachingMode>
Azure disk caching modes.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NONENone.READ_ONLYReadOnly.READ_WRITEReadWrite.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AzureDiskPersistentVolumeCachingModevalueOf(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
-
-