Enum AlarmMode
- java.lang.Object
- 
- java.lang.Enum<AlarmMode>
- 
- com.inductiveautomation.ignition.common.alarming.config.AlarmMode
 
 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description AboveValueAnyChangeBadQualityBelowValueBetweenValuesActive when the value is inside of the defined range.BitEqualityInequalityOnConditionThis mode is active whenever the "ActiveCondition" value is true.OutOfEngRangeVery similar to "OutsideValues", but the setpoints are taken from the tag's eng.OutsideValuesThe opposite of "BetweenValues".
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection<AlarmProperty<?>>getProperties()java.lang.StringtoString()static AlarmModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AlarmMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Equalitypublic static final AlarmMode Equality 
 - 
Inequalitypublic static final AlarmMode Inequality 
 - 
AboveValuepublic static final AlarmMode AboveValue 
 - 
BelowValuepublic static final AlarmMode BelowValue 
 - 
BetweenValuespublic static final AlarmMode BetweenValues Active when the value is inside of the defined range.
 - 
OutsideValuespublic static final AlarmMode OutsideValues The opposite of "BetweenValues". Active when the value is outside the given range.
 - 
OutOfEngRangepublic static final AlarmMode OutOfEngRange Very similar to "OutsideValues", but the setpoints are taken from the tag's eng. limits.
 - 
BadQualitypublic static final AlarmMode BadQuality 
 - 
AnyChangepublic static final AlarmMode AnyChange 
 - 
Bitpublic static final AlarmMode Bit 
 - 
OnConditionpublic static final AlarmMode OnCondition This mode is active whenever the "ActiveCondition" value is true. Since the condition can be an expression, this allows the user to define their own logic. The important point is that this condition does not depend on the value passed to the condition.
 
- 
 - 
Method Detail- 
valuespublic static AlarmMode[] 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 (AlarmMode c : AlarmMode.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AlarmMode 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 name
- java.lang.NullPointerException- if the argument is null
 
 - 
getPropertiespublic java.util.Collection<AlarmProperty<?>> getProperties() 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Enum<AlarmMode>
 
 
- 
 
-