Package nl.bimbase.bimworks.client
Enum TreeNodeStatus
- java.lang.Object
-
- java.lang.Enum<TreeNodeStatus>
-
- nl.bimbase.bimworks.client.TreeNodeStatus
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TreeNodeStatus>
public enum TreeNodeStatus extends java.lang.Enum<TreeNodeStatus>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CHECKING_INDONEERRORINDEXINGNEWNONEPROCESSINGRE_PROCESSINGUNKNOWNUPLOADING
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TreeNodeStatusvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TreeNodeStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NEW
public static final TreeNodeStatus NEW
-
UPLOADING
public static final TreeNodeStatus UPLOADING
-
NONE
public static final TreeNodeStatus NONE
-
UNKNOWN
public static final TreeNodeStatus UNKNOWN
-
DONE
public static final TreeNodeStatus DONE
-
CHECKING_IN
public static final TreeNodeStatus CHECKING_IN
-
INDEXING
public static final TreeNodeStatus INDEXING
-
PROCESSING
public static final TreeNodeStatus PROCESSING
-
ERROR
public static final TreeNodeStatus ERROR
-
RE_PROCESSING
public static final TreeNodeStatus RE_PROCESSING
-
-
Method Detail
-
values
public static TreeNodeStatus[] 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 (TreeNodeStatus c : TreeNodeStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TreeNodeStatus 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 namejava.lang.NullPointerException- if the argument is null
-
-