com.aol.acc
Enum AccPluginInfoProp

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

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

The IAccPluginInfo interface is for information about a plugin.


Enum Constant Summary
Commands
          The list of commands supported by the plugin
Description
          The description of the plugin
Enabled
          Whether the plugin is enabled
IconUrl
          The URL of the icon for the plugin
Name
          The friendly name of the plugin
Plugin
          The plugin's interface
SmallIconUrl
          The URL of the small icon for the plugin
Started
          Whether the plugin has started
TrustFlags
          Additional flags about the plugin returned by the AIM server
UNKNOWNVALUE
           
Url
          The plugin URL
Uuid
          The UUID of the plugin
VendorName
          The vendor name for the plugin
VendorUrl
          The vendor URL for the plugin
VerificationResult
          Whether the AIM server successfully verified the plugin
Version
          The version of the plugin
 
Method Summary
 boolean equals(int i)
           
static AccPluginInfoProp intToEnum(int value)
           
 AccPluginInfoProp or(AccPluginInfoProp val)
           
 int value()
           
static AccPluginInfoProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccPluginInfoProp[] 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 AccPluginInfoProp UNKNOWNVALUE

Uuid

public static final AccPluginInfoProp Uuid
The UUID of the plugin


Name

public static final AccPluginInfoProp Name
The friendly name of the plugin


Version

public static final AccPluginInfoProp Version
The version of the plugin


Description

public static final AccPluginInfoProp Description
The description of the plugin


Url

public static final AccPluginInfoProp Url
The plugin URL


VendorName

public static final AccPluginInfoProp VendorName
The vendor name for the plugin


VendorUrl

public static final AccPluginInfoProp VendorUrl
The vendor URL for the plugin


IconUrl

public static final AccPluginInfoProp IconUrl
The URL of the icon for the plugin


SmallIconUrl

public static final AccPluginInfoProp SmallIconUrl
The URL of the small icon for the plugin


Enabled

public static final AccPluginInfoProp Enabled
Whether the plugin is enabled


VerificationResult

public static final AccPluginInfoProp VerificationResult
Whether the AIM server successfully verified the plugin


TrustFlags

public static final AccPluginInfoProp TrustFlags
Additional flags about the plugin returned by the AIM server


Started

public static final AccPluginInfoProp Started
Whether the plugin has started


Plugin

public static final AccPluginInfoProp Plugin
The plugin's interface


Commands

public static final AccPluginInfoProp Commands
The list of commands supported by the plugin

Method Detail

values

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

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

valueOf

public static AccPluginInfoProp 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 AccPluginInfoProp or(AccPluginInfoProp val)

intToEnum

public static AccPluginInfoProp intToEnum(int value)