public static enum DynamicIcon.IconPath extends java.lang.Enum<DynamicIcon.IconPath>
| Enum Constant and Description | 
|---|
| AVAILABLE | 
| AWAY | 
| CONN_CLOSED | 
| DONT_DISTURB | 
| IN_A_MEETING | 
| MOBILE | 
| OFFLINE | 
| UNKNOW | 
| Modifier and Type | Method and Description | 
|---|---|
| static DynamicIcon.IconPath | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static DynamicIcon.IconPath[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final DynamicIcon.IconPath AWAY
public static final DynamicIcon.IconPath DONT_DISTURB
public static final DynamicIcon.IconPath IN_A_MEETING
public static final DynamicIcon.IconPath MOBILE
public static final DynamicIcon.IconPath AVAILABLE
public static final DynamicIcon.IconPath OFFLINE
public static final DynamicIcon.IconPath UNKNOW
public static final DynamicIcon.IconPath CONN_CLOSED
public static DynamicIcon.IconPath[] values()
for (DynamicIcon.IconPath c : DynamicIcon.IconPath.values()) System.out.println(c);
public static DynamicIcon.IconPath valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null