@AccessLevel(value=EXTERNAL)
public interface CMSMetadataInterface
Modifier and Type | Method and Description |
---|---|
void |
add(java.lang.String name,
curam.util.type.Date value)
Store the meta data property and it's date value.
|
void |
add(java.lang.String name,
java.lang.String value)
Store the meta data property and it's value.
|
boolean |
clear(java.lang.String name)
Clear the meta data property.
|
void |
clearAll()
Clear all the meta data.
|
boolean |
contains(java.lang.String name)
Determines whether the meta data property is already included.
|
java.lang.String |
get(java.lang.String name)
Read the value of the meta data property.
|
java.util.Iterator<curam.core.sl.struct.CMSMetadataItem> |
iterator()
Return an iterator for all the meta data properties provided.
|
void add(java.lang.String name, java.lang.String value)
name
- The name of the meta data property.value
- The value of the meta data property.java.lang.String get(java.lang.String name)
name
- The name of the meta data property.void add(java.lang.String name, curam.util.type.Date value)
name
- The name of the meta data property.value
- The value of the meta data date property.java.util.Iterator<curam.core.sl.struct.CMSMetadataItem> iterator()
boolean contains(java.lang.String name)
name
- The name of the meta data property.boolean clear(java.lang.String name)
name
- The name of the meta data property.void clearAll()