Skip navigation links


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
           
WEBREFERENCE
           

 

Method Summary
static AttributeTypeEnum fromValue(java.lang.String value)
           
 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 are declared.

 

Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, valueOf

 

Methods inherited from class java.lang.Object
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

WEBREFERENCE

public static final AttributeTypeEnum WEBREFERENCE

Method Detail

values

public static AttributeTypeEnum[] values()
Returns an array containing the constants of this enum type, in the order they are 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 are 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
java.lang.NullPointerException - if the argument is null

getName

public java.lang.String getName()

toString

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

fromValue

public static AttributeTypeEnum fromValue(java.lang.String value)

Skip navigation links


Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.