java.util.HashMapcom.aspose.words.CustomXmlPropertyCollection
public class CustomXmlPropertyCollection
Items are
Property Getters/Setters Summary | ||
---|---|---|
CustomXmlProperty | get(java.lang.String name) | |
void | set(java.lang.String name, CustomXmlProperty value) | |
Retrieves a property with the specified name. |
Method Summary | ||
---|---|---|
void | add(CustomXmlProperty property) | |
Adds a property to the the collection. | ||
boolean | contains(CustomXmlProperty property) | |
Determines whether a property is in the collection. | ||
boolean | containsKey(java.lang.String name) | |
Determines whether a property with the given name is in the collection. | ||
void | remove(CustomXmlProperty property) | |
Removes a property from the collection. |
Property Getters/Setters Detail |
---|
get/set | |
public CustomXmlProperty get(java.lang.String name) / public void set(java.lang.String name, CustomXmlProperty value) |
name
- Case-sensitive name of the property to locate.Method Detail |
---|
add | |
public void add(CustomXmlProperty property) |
property
- The property to add.remove | |
public void remove(CustomXmlProperty property) |
property
- The property to remove.contains | |
public boolean contains(CustomXmlProperty property) |
property
- The property to locate.containsKey | |
public boolean containsKey(java.lang.String name) |
name
- Case-sensitive name of the property to locate.