Package nl.bimbase.bimworks.client
Enum TreeNodeType
- java.lang.Object
-
- java.lang.Enum<TreeNodeType>
-
- nl.bimbase.bimworks.client.TreeNodeType
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<TreeNodeType>
public enum TreeNodeType extends java.lang.Enum<TreeNodeType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TreeNodeTypevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static TreeNodeType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ORGANIZATION
public static final TreeNodeType ORGANIZATION
-
SHARED
public static final TreeNodeType SHARED
-
ACCOUNT
public static final TreeNodeType ACCOUNT
-
DROPBOX
public static final TreeNodeType DROPBOX
-
BIMSERVER
public static final TreeNodeType BIMSERVER
-
FOLDER
public static final TreeNodeType FOLDER
-
MODEL
public static final TreeNodeType MODEL
-
VOLATILE
public static final TreeNodeType VOLATILE
-
ROOT
public static final TreeNodeType ROOT
-
DEMO
public static final TreeNodeType DEMO
-
-
Method Detail
-
values
public static TreeNodeType[] 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 (TreeNodeType c : TreeNodeType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TreeNodeType 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
-
-