com.aol.acc
Enum AccImageReferenceProp

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

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

The IAccImageReference interface is used to represent an
image reference. AccImageReferenceProp_Tags is
optional; all other properties are required.


Enum Constant Summary
Height
          Height, in pixels
Tags
          TV channel logo, TV show logo, webcam, etc.)
UNKNOWNVALUE
           
Uri
          URI
Width
          Width, in pixels
 
Method Summary
 boolean equals(int i)
           
static AccImageReferenceProp intToEnum(int value)
           
 AccImageReferenceProp or(AccImageReferenceProp val)
           
 int value()
           
static AccImageReferenceProp valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AccImageReferenceProp[] 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 AccImageReferenceProp UNKNOWNVALUE

Uri

public static final AccImageReferenceProp Uri
URI


Height

public static final AccImageReferenceProp Height
Height, in pixels


Width

public static final AccImageReferenceProp Width
Width, in pixels


Tags

public static final AccImageReferenceProp Tags
TV channel logo, TV show logo, webcam, etc.)

Method Detail

values

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

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

valueOf

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

intToEnum

public static AccImageReferenceProp intToEnum(int value)