public interface ICustomAttributeDictionary
Modifier and Type | Method and Description |
---|---|
boolean |
containsKey(String attributeName)
Indicates the presence of a custom field.
|
Object |
get(String attributeName)
Get the value of the custom field.
|
Boolean |
getBoolean(String attributeName)
Gets the value of a Custom Field as a nullable boolean.
|
DB.DateTime |
getDate(String attributeName)
Gets the value of a Custom Field as a DateTime.
|
Double |
getNumeric(String attributeName)
Gets the value of a Custom Field as a numeric.
|
String |
getString(String attributeName)
Gets the value of a Custom Field as a string.
|
void |
set(String attributeName,
Object attributevalue)
Sets the value of the custom field.
|
Object get(String attributeName)
attributeName
- The friendly name of the custom field, e.g.
"Origin", not "Custom_Origin".void set(String attributeName, Object attributevalue)
attributeName
- The friendly name of the custom field, e.g.
"Origin", not "Custom_Origin".attributevalue
- custom attribute value.boolean containsKey(String attributeName)
attributeName
- The friendly name of the custom field, e.g.
"Origin", not "Custom_Origin".Double getNumeric(String attributeName)
attributeName
- The friendly name of the custom field, e.g.
"Origin", not "Custom_Origin".Boolean getBoolean(String attributeName)
attributeName
- The friendly name of the custom field, e.g.
"Origin", not "Custom_Origin".DB.DateTime getDate(String attributeName)
attributeName
- The friendly name of the custom field, e.g.
"Origin", not "Custom_Origin".Copyright © 2013 Version One, Inc.. All rights reserved.