com.pnfsoftware.jeb.core.units.IMetadataManager |
Known Indirect Subclasses |
Definition of a metadata manager.
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
abstract boolean |
addGroup(IMetadataGroup group)
Add a group.
| ||||||||||
abstract IMetadataGroup |
getGroupByName(String name)
Get a group by its name.
| ||||||||||
abstract int |
getGroupCount()
Retrieve the number of groups.
| ||||||||||
abstract List<? extends IMetadataGroup> |
getGroups()
Get the list of groups.
| ||||||||||
abstract boolean |
insertGroup(int index, IMetadataGroup group)
Insert a group at the given position.
| ||||||||||
abstract boolean |
removeGroup(int index)
Delete a group by index.
| ||||||||||
abstract boolean |
removeGroupByName(String name)
Delete a group by name.
|
Get a group by its name.
name | group name |
---|
Retrieve the number of groups.
Get the list of groups.
Insert a group at the given position.
index | position |
---|---|
group | group to add |
Delete a group by index.
index | group index |
---|
Delete a group by name.
name | group name |
---|