Enum Class KnownMonitorType
java.lang.Object
java.lang.Enum<KnownMonitorType>
org.sentrysoftware.metricshub.engine.common.helpers.KnownMonitorType
- All Implemented Interfaces:
Serializable,Comparable<KnownMonitorType>,Constable
Enumeration representing known monitor types.
Each enum constant corresponds to a specific monitor type with a unique key.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionBattery monitor type.Blade monitor type.Connector monitor type.CPU monitor type.Disk controller monitor type.Enclosure monitor type.Fan monitor type.GPU monitor type.Host monitor type.LED monitor type.Logical disk monitor type.LUN monitor type.Memory monitor type.Network monitor type.Other device monitor type.Physical disk monitor type.Power supply monitor type.Robotics monitor type.Tape drive monitor type.Temperature monitor type.Virtual machine monitor type.Voltage monitor type. -
Method Summary
Modifier and TypeMethodDescriptionstatic KnownMonitorTypeReturns the enum constant of this class with the specified name.static KnownMonitorType[]values()Returns an array containing the constants of this enum class, in the order they are declared.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
CONNECTOR
Connector monitor type. -
HOST
Host monitor type. -
BATTERY
Battery monitor type. -
BLADE
Blade monitor type. -
CPU
CPU monitor type. -
DISK_CONTROLLER
Disk controller monitor type. -
ENCLOSURE
Enclosure monitor type. -
FAN
Fan monitor type. -
GPU
GPU monitor type. -
LED
LED monitor type. -
LOGICAL_DISK
Logical disk monitor type. -
LUN
LUN monitor type. -
MEMORY
Memory monitor type. -
NETWORK
Network monitor type. -
OTHER_DEVICE
Other device monitor type. -
PHYSICAL_DISK
Physical disk monitor type. -
POWER_SUPPLY
Power supply monitor type. -
ROBOTICS
Robotics monitor type. -
TAPE_DRIVE
Tape drive monitor type. -
TEMPERATURE
Temperature monitor type. -
VM
Virtual machine monitor type. -
VOLTAGE
Voltage monitor type.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-