Enum AbstractAsynchronousTreeNode.LoadingStatus
- java.lang.Object
- 
- java.lang.Enum<AbstractAsynchronousTreeNode.LoadingStatus>
- 
- com.inductiveautomation.ignition.client.util.gui.tree.AbstractAsynchronousTreeNode.LoadingStatus
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<AbstractAsynchronousTreeNode.LoadingStatus>
 - Enclosing class:
- AbstractAsynchronousTreeNode<T extends javax.swing.tree.TreeNode>
 
 protected static enum AbstractAsynchronousTreeNode.LoadingStatus extends java.lang.Enum<AbstractAsynchronousTreeNode.LoadingStatus> 
- 
- 
Enum Constant SummaryEnum Constants Enum Constant Description ERRORLOADEDLOADINGNOT_LOADED
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractAsynchronousTreeNode.LoadingStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AbstractAsynchronousTreeNode.LoadingStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
NOT_LOADEDpublic static final AbstractAsynchronousTreeNode.LoadingStatus NOT_LOADED 
 - 
LOADINGpublic static final AbstractAsynchronousTreeNode.LoadingStatus LOADING 
 - 
ERRORpublic static final AbstractAsynchronousTreeNode.LoadingStatus ERROR 
 - 
LOADEDpublic static final AbstractAsynchronousTreeNode.LoadingStatus LOADED 
 
- 
 - 
Method Detail- 
valuespublic static AbstractAsynchronousTreeNode.LoadingStatus[] 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 (AbstractAsynchronousTreeNode.LoadingStatus c : AbstractAsynchronousTreeNode.LoadingStatus.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static AbstractAsynchronousTreeNode.LoadingStatus 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
 
 
- 
 
-