com.aol.acc
Enum AccAlertProp

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

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

The IAccAlert encapsulates an AIM alert.


Enum Constant Summary
Address
          Email address this alert is in reference to
Content
          The content for this "rendered" alert
Cookie
          Unique ID for this particular alert
Description
          Description of this "rendered" alert
DisplayTime
          Time when this alert should be displayed
Duplicate
          Checks if this is a duplicate alert
Duration
          Duration to display this alert for
GotMail
          Is there new mail for this user?
GotPics
          Checks if there are new pictures for the user
ImageUrl
          The URL for displaying an image for a specific alert
MoreInfoUrl
          The URL for more info on a specific alert
NotifyPrefs
          Indicates how this alert should be displayed
NumMails
          Number of new emails in the user's inbox
NumVoicemails
          Number of new voicemails in the user's inbox
ReadUrl
          URL to be used for reading mail
Timestamp
          Time the alert was sent
UNKNOWNVALUE
           
Uuid
          UUID (type) of the alert
 
Method Summary
 boolean equals(int i)
           
static AccAlertProp intToEnum(int value)
           
 AccAlertProp or(AccAlertProp val)
           
 int value()
           
static AccAlertProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccAlertProp[] 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 AccAlertProp UNKNOWNVALUE

Uuid

public static final AccAlertProp Uuid
UUID (type) of the alert


Cookie

public static final AccAlertProp Cookie
Unique ID for this particular alert


Timestamp

public static final AccAlertProp Timestamp
Time the alert was sent


GotMail

public static final AccAlertProp GotMail
Is there new mail for this user?


NumMails

public static final AccAlertProp NumMails
Number of new emails in the user's inbox


NumVoicemails

public static final AccAlertProp NumVoicemails
Number of new voicemails in the user's inbox


Address

public static final AccAlertProp Address
Email address this alert is in reference to


ReadUrl

public static final AccAlertProp ReadUrl
URL to be used for reading mail


GotPics

public static final AccAlertProp GotPics
Checks if there are new pictures for the user


Description

public static final AccAlertProp Description
Description of this "rendered" alert


Content

public static final AccAlertProp Content
The content for this "rendered" alert


ImageUrl

public static final AccAlertProp ImageUrl
The URL for displaying an image for a specific alert


MoreInfoUrl

public static final AccAlertProp MoreInfoUrl
The URL for more info on a specific alert


Duplicate

public static final AccAlertProp Duplicate
Checks if this is a duplicate alert


DisplayTime

public static final AccAlertProp DisplayTime
Time when this alert should be displayed


Duration

public static final AccAlertProp Duration
Duration to display this alert for


NotifyPrefs

public static final AccAlertProp NotifyPrefs
Indicates how this alert should be displayed

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccAlertProp intToEnum(int value)