public interface SyndContent extends java.lang.Cloneable, CopyFrom
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
clone()
Creates a deep clone of the object.
|
java.lang.String |
getMode()
Gets the content mode (needed for Atom 0.3 support).
|
java.lang.String |
getType()
Returns the content type.
|
java.lang.String |
getValue()
Returns the content value.
|
void |
setMode(java.lang.String mode)
Sets the content mode (needed for Atom 0.3 support).
|
void |
setType(java.lang.String type)
Sets the content type.
|
void |
setValue(java.lang.String value)
Sets the content value.
|
copyFrom, getInterface
java.lang.String getType()
When used for the description of an entry, if null 'text/plain' must be assumed.
void setType(java.lang.String type)
When used for the description of an entry, if null 'text/plain' must be assumed.
type
- the content type to set, null if none.java.lang.String getMode()
void setMode(java.lang.String mode)
mode
- the content mode to set, null if none.java.lang.String getValue()
void setValue(java.lang.String value)
value
- the content value to set, null if none.java.lang.Object clone() throws java.lang.CloneNotSupportedException
java.lang.CloneNotSupportedException
- thrown if an element of the object cannot be cloned.