org.netbeans.modules.j2ee.deployment.plugins.api
Enum UISupport.ServerIcon
java.lang.Object
java.lang.Enum<UISupport.ServerIcon>
org.netbeans.modules.j2ee.deployment.plugins.api.UISupport.ServerIcon
- All Implemented Interfaces:
- Serializable, Comparable<UISupport.ServerIcon>
- Enclosing class:
- UISupport
public static enum UISupport.ServerIcon
- extends Enum<UISupport.ServerIcon>
Server icon constants.
- Since:
- 1.19
EJB_ARCHIVE
public static final UISupport.ServerIcon EJB_ARCHIVE
WAR_ARCHIVE
public static final UISupport.ServerIcon WAR_ARCHIVE
EAR_ARCHIVE
public static final UISupport.ServerIcon EAR_ARCHIVE
EJB_FOLDER
public static final UISupport.ServerIcon EJB_FOLDER
EAR_FOLDER
public static final UISupport.ServerIcon EAR_FOLDER
WAR_FOLDER
public static final UISupport.ServerIcon WAR_FOLDER
EJB_OPENED_FOLDER
public static final UISupport.ServerIcon EJB_OPENED_FOLDER
EAR_OPENED_FOLDER
public static final UISupport.ServerIcon EAR_OPENED_FOLDER
WAR_OPENED_FOLDER
public static final UISupport.ServerIcon WAR_OPENED_FOLDER
values
public static final UISupport.ServerIcon[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(UISupport.ServerIcon c : UISupport.ServerIcon.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static UISupport.ServerIcon valueOf(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:
IllegalArgumentException - if this enum type has no constant
with the specified name