com.fatwire.assetapi.def
Enum AttributeTypeEnum

java.lang.Object
  extended by java.lang.Enum<AttributeTypeEnum>
      extended by com.fatwire.assetapi.def.AttributeTypeEnum
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<AttributeTypeEnum>

public enum AttributeTypeEnum
extends java.lang.Enum<AttributeTypeEnum>

Enumeration of all known attribute types and their properties.


Enum Constant Summary
ARRAY
           
ASSET
           
ASSETREFERENCE
           
BLOB
           
DATE
           
FLOAT
           
INT
           
LARGE_TEXT
           
LIST
           
LONG
           
MONEY
           
ONEOF
           
STRING
           
STRUCT
           
URL
           
 
Method Summary
 java.lang.String getName()
           
 java.lang.String toString()
           
static AttributeTypeEnum valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static AttributeTypeEnum[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, valueOf
 
Methods inherited from class java.lang.Object
finalize, getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

INT

public static final AttributeTypeEnum INT

FLOAT

public static final AttributeTypeEnum FLOAT

STRING

public static final AttributeTypeEnum STRING

LONG

public static final AttributeTypeEnum LONG

DATE

public static final AttributeTypeEnum DATE

MONEY

public static final AttributeTypeEnum MONEY

LARGE_TEXT

public static final AttributeTypeEnum LARGE_TEXT

ASSET

public static final AttributeTypeEnum ASSET

ASSETREFERENCE

public static final AttributeTypeEnum ASSETREFERENCE

BLOB

public static final AttributeTypeEnum BLOB

URL

public static final AttributeTypeEnum URL

ARRAY

public static final AttributeTypeEnum ARRAY

STRUCT

public static final AttributeTypeEnum STRUCT

LIST

public static final AttributeTypeEnum LIST

ONEOF

public static final AttributeTypeEnum ONEOF
Method Detail

values

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

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

valueOf

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

getName

public java.lang.String getName()

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Enum<AttributeTypeEnum>