Package com.jgcomptech.tools.enums
Enum WMIClasses.OS
- java.lang.Object
-
- java.lang.Enum<WMIClasses.OS>
-
- com.jgcomptech.tools.enums.WMIClasses.OS
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WMIClasses.OS>
- Enclosing class:
- WMIClasses
public static enum WMIClasses.OS extends java.lang.Enum<WMIClasses.OS>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static WMIClasses.OS
valueOf​(java.lang.String name)
Returns the enum constant of this type with the specified name.static WMIClasses.OS[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BootConfiguration
public static final WMIClasses.OS BootConfiguration
-
ComputerSystem
public static final WMIClasses.OS ComputerSystem
-
ComputerSystemProcessor
public static final WMIClasses.OS ComputerSystemProcessor
-
ComputerSystemProduct
public static final WMIClasses.OS ComputerSystemProduct
-
DependentService
public static final WMIClasses.OS DependentService
-
LoadOrderGroup
public static final WMIClasses.OS LoadOrderGroup
-
LoadOrderGroupServiceDependencies
public static final WMIClasses.OS LoadOrderGroupServiceDependencies
-
LoadOrderGroupServiceMembers
public static final WMIClasses.OS LoadOrderGroupServiceMembers
-
OperatingSystem
public static final WMIClasses.OS OperatingSystem
-
OperatingSystemQFE
public static final WMIClasses.OS OperatingSystemQFE
-
OSRecoveryConfiguration
public static final WMIClasses.OS OSRecoveryConfiguration
-
QuickFixEngineering
public static final WMIClasses.OS QuickFixEngineering
-
StartupCommand
public static final WMIClasses.OS StartupCommand
-
SystemBootConfiguration
public static final WMIClasses.OS SystemBootConfiguration
-
SystemDesktop
public static final WMIClasses.OS SystemDesktop
-
SystemDevices
public static final WMIClasses.OS SystemDevices
-
SystemLoadOrderGroups
public static final WMIClasses.OS SystemLoadOrderGroups
-
SystemNetworkConnections
public static final WMIClasses.OS SystemNetworkConnections
-
SystemOperatingSystem
public static final WMIClasses.OS SystemOperatingSystem
-
SystemProcesses
public static final WMIClasses.OS SystemProcesses
-
SystemProgramGroups
public static final WMIClasses.OS SystemProgramGroups
-
SystemResources
public static final WMIClasses.OS SystemResources
-
SystemServices
public static final WMIClasses.OS SystemServices
-
SystemSetting
public static final WMIClasses.OS SystemSetting
-
SystemSystemDriver
public static final WMIClasses.OS SystemSystemDriver
-
SystemTimeZone
public static final WMIClasses.OS SystemTimeZone
-
SystemUsers
public static final WMIClasses.OS SystemUsers
-
-
Method Detail
-
values
public static WMIClasses.OS[] 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.OS c : WMIClasses.OS.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.OS 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.OS>
-
-