com.ibm.bpe.api

Class AttributeType

  1. java.lang.Object
  2. extended bycom.ibm.bpe.api.AttributeType
All implemented interfaces:
java.io.Serializable

  1. public final class AttributeType
  2. extends java.lang.Object
  3. implements java.io.Serializable
This enumeration class defines symbolic constants for attribute types. These values are to be used when attribute type information is retrieved.
Since:
6.2
See Also:
Serialized Form

Field Summary

Modifier and Type Field and Description
  1. static
  2. AttributeType
BINARY
Symbolic constant for attribute type BINARY
  1. static
  2. AttributeType
BOOLEAN
Symbolic constant for attribute type BOOLEAN
  1. static
  2. java.lang.String
COPYRIGHT
  1. static
  2. AttributeType
DECIMAL
Symbolic constant for attribute type DECIMAL
  1. static
  2. AttributeType
ID
Symbolic constant for attribute type object ID
  1. static
  2. AttributeType
NUMBER
Symbolic constant for attribute type NUMBER
  1. static
  2. AttributeType
STRING
Symbolic constant for attribute type String
  1. static
  2. AttributeType
TIMESTAMP
Symbolic constant for attribute type TIMESTAMP

Method Summary

Modifier and Type Method and Description
  1. static
  2. AttributeType
newAttributeType(java.lang.String typeString)
Factory method to create an attribute type by its string representation.
  1. java.lang.String
toString()
Returns a string representation of the attribute type.
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait

Field Detail

  1. public static final java.lang.String COPYRIGHT
See Also:

ID

  1. public static final AttributeType ID
Symbolic constant for attribute type object ID
Since:
6.2

STRING

  1. public static final AttributeType STRING
Symbolic constant for attribute type String
Since:
6.2

NUMBER

  1. public static final AttributeType NUMBER
Symbolic constant for attribute type NUMBER
Since:
6.2

TIMESTAMP

  1. public static final AttributeType TIMESTAMP
Symbolic constant for attribute type TIMESTAMP
Since:
6.2

BINARY

  1. public static final AttributeType BINARY
Symbolic constant for attribute type BINARY
Since:
6.2

DECIMAL

  1. public static final AttributeType DECIMAL
Symbolic constant for attribute type DECIMAL
Since:
6.2

BOOLEAN

  1. public static final AttributeType BOOLEAN
Symbolic constant for attribute type BOOLEAN
Since:
6.2

Method Detail

newAttributeType

  1. public static AttributeType newAttributeType( java.lang.String typeString)
Factory method to create an attribute type by its string representation. If the enum passed is not a valid AttributeType enumeration, null is returned.
Parameters:
typeString - The string representation of an attribute type.
Returns:
AttributeType - The AttributeType object that is created.
Since:
6.2

toString

  1. public java.lang.String toString( )
Returns a string representation of the attribute type.
Overrides:
toString in class java.lang.Object
Returns:
String - A string representation of the attribute type.
Since:
6.2