com.aol.acc
Enum AccCommandFlags

java.lang.Object
  extended by java.lang.Enum<AccCommandFlags>
      extended by com.aol.acc.AccCommandFlags
All Implemented Interfaces:
AccEnum, java.io.Serializable, java.lang.Comparable<AccCommandFlags>

public enum AccCommandFlags
extends java.lang.Enum<AccCommandFlags>
implements AccEnum

Values for AccCommandProp_Flags.


Enum Constant Summary
AboutUi
          Command takes empty variant and will appear in About box, plugin context menu or similar
ActionsUi
          Command takes buddy names and will appear in Actions menus
BuddyCentric
          DEPRECATED; behaves the same as AccCommandFlags_ActionsUi | AccCommandFlags_BuddyUi
BuddyUi
          Command takes buddy names and will appear in buddy context menus
GroupUi
          Command takes buddy group names and will appear in buddy group context menus
ImSessionUi
          Command takes IM session remote participant names and will appear in IM session menus (e.g., People menus)
PreferencesUi
          Command takes empty variant and will appear in Preferences/Setup UI
UNKNOWNVALUE
           
 
Method Summary
 boolean equals(int i)
           
static AccCommandFlags intToEnum(int value)
           
 AccCommandFlags or(AccCommandFlags val)
           
 int value()
           
static AccCommandFlags valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccCommandFlags[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

UNKNOWNVALUE

public static final AccCommandFlags UNKNOWNVALUE

BuddyCentric

public static final AccCommandFlags BuddyCentric
DEPRECATED; behaves the same as AccCommandFlags_ActionsUi | AccCommandFlags_BuddyUi


ActionsUi

public static final AccCommandFlags ActionsUi
Command takes buddy names and will appear in Actions menus


BuddyUi

public static final AccCommandFlags BuddyUi
Command takes buddy names and will appear in buddy context menus


GroupUi

public static final AccCommandFlags GroupUi
Command takes buddy group names and will appear in buddy group context menus


ImSessionUi

public static final AccCommandFlags ImSessionUi
Command takes IM session remote participant names and will appear in IM session menus (e.g., People menus)


PreferencesUi

public static final AccCommandFlags PreferencesUi
Command takes empty variant and will appear in Preferences/Setup UI


AboutUi

public static final AccCommandFlags AboutUi
Command takes empty variant and will appear in About box, plugin context menu or similar

Method Detail

values

public static final AccCommandFlags[] 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(AccCommandFlags c : AccCommandFlags.values())
        System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they're declared

valueOf

public static AccCommandFlags 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

value

public final int value()
Specified by:
value in interface AccEnum

equals

public final boolean equals(int i)

or

public final AccCommandFlags or(AccCommandFlags val)

intToEnum

public static AccCommandFlags intToEnum(int value)