Enum DiagnosticsManager.BundleState
- java.lang.Object
- 
- java.lang.Enum<DiagnosticsManager.BundleState>
- 
- com.inductiveautomation.ignition.gateway.model.DiagnosticsManager.BundleState
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<DiagnosticsManager.BundleState>
 - Enclosing interface:
- DiagnosticsManager
 
 public static enum DiagnosticsManager.BundleState extends java.lang.Enum<DiagnosticsManager.BundleState> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description GeneratingA bundle is actively being generatedInvalidBundle is either not generated or expiredValidA bundle is ready for download
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static DiagnosticsManager.BundleStatevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static DiagnosticsManager.BundleState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
Invalidpublic static final DiagnosticsManager.BundleState Invalid Bundle is either not generated or expired
 - 
Generatingpublic static final DiagnosticsManager.BundleState Generating A bundle is actively being generated
 - 
Validpublic static final DiagnosticsManager.BundleState Valid A bundle is ready for download
 
- 
 - 
Method Detail- 
valuespublic static DiagnosticsManager.BundleState[] 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 (DiagnosticsManager.BundleState c : DiagnosticsManager.BundleState.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static DiagnosticsManager.BundleState 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
 
 
- 
 
-