Enum Class AlertTypes.AlertCategories
java.lang.Object
java.lang.Enum<AlertTypes.AlertCategories>
com.thingworx.system.subsystems.alerts.data.AlertTypes.AlertCategories
- All Implemented Interfaces:
Serializable
,Comparable<AlertTypes.AlertCategories>
,Constable
- Enclosing class:
AlertTypes
@ThingworxExtensionApiClass(since={6,6})
public static enum AlertTypes.AlertCategories
extends Enum<AlertTypes.AlertCategories>
Identifies the various categories into which a given
AlertType
can be organized.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCategory for anomoly-based alert types.Category for comparison-based alert types.Category for deviation-based alert types.Category for match-based alert types.Category for range-based alert types.Category for alert types based upon Statistical Process Control Rule 3(three).Category for alert types based upon Statistical Process Control Rule 4(four).Category for alert types based upon Statistical Process Control Rule 7(seven).Category for alert types based upon Statistical Process Control Rules 1(one) and 8(eight).Category for alert types based upon Statistical Process Control Rules 2(two), 5(five) and 6(six).Category for trend-based alert types.Category for unknown alert types. -
Method Summary
Modifier and TypeMethodDescriptionstatic AlertTypes.AlertCategories
Returns the enum constant of this class with the specified name.static AlertTypes.AlertCategories[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SPCRules18
Category for alert types based upon Statistical Process Control Rules 1(one) and 8(eight). -
SPCRule4
Category for alert types based upon Statistical Process Control Rule 4(four). -
SPCRule3
Category for alert types based upon Statistical Process Control Rule 3(three). -
Unknown
Category for unknown alert types. -
SPCRule7
Category for alert types based upon Statistical Process Control Rule 7(seven). -
Trend
Category for trend-based alert types. -
SPCRules256
Category for alert types based upon Statistical Process Control Rules 2(two), 5(five) and 6(six). -
Compare
Category for comparison-based alert types. -
Anomaly
Category for anomoly-based alert types. -
Range
Category for range-based alert types. -
Deviation
Category for deviation-based alert types. -
Match
Category for match-based alert types.
-
-
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
-