com.ibm.bpe.api
Class AttributeType
- java.lang.Object
com.ibm.bpe.api.AttributeType
All implemented interfaces:
java.io.Serializable
- public final class AttributeType
- extends java.lang.Object
- implements java.io.Serializable
Since:
6.2
See Also:
Field Summary
Modifier and Type | Field and Description |
---|---|
|
BINARY
Symbolic constant for attribute type BINARY
|
|
BOOLEAN
Symbolic constant for attribute type BOOLEAN
|
|
COPYRIGHT
|
|
DECIMAL
Symbolic constant for attribute type DECIMAL
|
|
ID
Symbolic constant for attribute type object ID
|
|
NUMBER
Symbolic constant for attribute type NUMBER
|
|
STRING
Symbolic constant for attribute type String
|
|
TIMESTAMP
Symbolic constant for attribute type TIMESTAMP
|
Method Summary
Modifier and Type | Method and Description |
---|---|
|
newAttributeType(java.lang.String typeString)
Factory method to create an attribute type by its string representation.
|
|
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
COPYRIGHT
- public static final java.lang.String COPYRIGHT
See Also:
ID
- public static final AttributeType ID
Symbolic constant for attribute type object ID
Since:
6.2
STRING
- public static final AttributeType STRING
Symbolic constant for attribute type String
Since:
6.2
NUMBER
- public static final AttributeType NUMBER
Symbolic constant for attribute type NUMBER
Since:
6.2
TIMESTAMP
- public static final AttributeType TIMESTAMP
Symbolic constant for attribute type TIMESTAMP
Since:
6.2
BINARY
- public static final AttributeType BINARY
Symbolic constant for attribute type BINARY
Since:
6.2
DECIMAL
- public static final AttributeType DECIMAL
Symbolic constant for attribute type DECIMAL
Since:
6.2
BOOLEAN
- public static final AttributeType BOOLEAN
Symbolic constant for attribute type BOOLEAN
Since:
6.2
Method Detail
newAttributeType
- 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
- 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