Package com.jgcomptech.tools.enums
Enum WMIClasses.Storage
- java.lang.Object
-
- java.lang.Enum<WMIClasses.Storage>
-
- com.jgcomptech.tools.enums.WMIClasses.Storage
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WMIClasses.Storage>
- Enclosing class:
- WMIClasses
public static enum WMIClasses.Storage extends java.lang.Enum<WMIClasses.Storage>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ShadowBy
ShadowContext
ShadowCopy
ShadowDiffVolumeSupport
ShadowFor
ShadowOn
ShadowProvider
ShadowStorage
ShadowVolumeSupport
Volume
VolumeUserQuota
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static WMIClasses.Storage
valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name.static WMIClasses.Storage[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ShadowBy
public static final WMIClasses.Storage ShadowBy
-
ShadowContext
public static final WMIClasses.Storage ShadowContext
-
ShadowCopy
public static final WMIClasses.Storage ShadowCopy
-
ShadowDiffVolumeSupport
public static final WMIClasses.Storage ShadowDiffVolumeSupport
-
ShadowFor
public static final WMIClasses.Storage ShadowFor
-
ShadowOn
public static final WMIClasses.Storage ShadowOn
-
ShadowProvider
public static final WMIClasses.Storage ShadowProvider
-
ShadowStorage
public static final WMIClasses.Storage ShadowStorage
-
ShadowVolumeSupport
public static final WMIClasses.Storage ShadowVolumeSupport
-
Volume
public static final WMIClasses.Storage Volume
-
VolumeUserQuota
public static final WMIClasses.Storage VolumeUserQuota
-
-
Method Detail
-
values
public static WMIClasses.Storage[] 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 (WMIClasses.Storage c : WMIClasses.Storage.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WMIClasses.Storage valueOf​(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<WMIClasses.Storage>
-
-