Class DocumentAttributeString
java.lang.Object
org.kuali.rice.core.api.mo.AbstractDataTransferObject
org.kuali.rice.kew.api.document.attribute.DocumentAttribute
org.kuali.rice.kew.api.document.attribute.DocumentAttributeString
- All Implemented Interfaces:
Serializable,ModelObjectBasic,ModelObjectComplete,DocumentAttributeContract
A document attribute which contains character data. Construct instances of
DocumentAttributeString using
it's builder or the DocumentAttributeFactory.- Author:
- Kuali Rice Team (rice.collab@kuali.org)
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic final classA builder implementation which allows for construction of aDocumentAttributeString.Nested classes/interfaces inherited from class org.kuali.rice.kew.api.document.attribute.DocumentAttribute
DocumentAttribute.AbstractBuilder<T> -
Method Summary
Modifier and TypeMethodDescriptionReturns the data type of this document attribute.getValue()Returns the value of this document attribute.Methods inherited from class org.kuali.rice.kew.api.document.attribute.DocumentAttribute
getNameMethods inherited from class org.kuali.rice.core.api.mo.AbstractDataTransferObject
afterUnmarshal, beforeUnmarshal, equals, equalsExcludeFields, getDefaultHashCodeEqualsExcludeFields, hashCode, hashCodeExcludeFields, toString
-
Method Details
-
getValue
Description copied from interface:DocumentAttributeContractReturns the value of this document attribute. It can be of any type as defined by the implementations of this interface. It is possible that this value may be null in cases where the document has a particular attribute but no actual value associated with that attribute.- Returns:
- the value of the document attribute
-
getDataType
Description copied from interface:DocumentAttributeContractReturns the data type of this document attribute. This will generally inform the type of object returned from the#getValuemethod. This method should never return a null value.- Returns:
- the data type of this document attribute
-