Package me.datafox.dfxengine.handles.api
Interface Space
- All Superinterfaces:
Comparable<Handled>
,Handled
- All Known Implementing Classes:
SpaceImpl
-
Method Summary
Modifier and TypeMethodDescriptioncreateGroup
(String id) createHandle
(String id) Creates a newHandle
.Creates aGroup
with the specified id if it does not already exist and returns the group with that id.Creates aHandle
with the specified id if it does not already exist and returns the handle with that id.
-
Method Details
-
getHandleManager
HandleManager getHandleManager()- Returns:
HandleManager
managing this space
-
getHandles
HandleSet getHandles() -
getAllHandles
HandleSet getAllHandles()Returns an unmodifiableHandleSet
containing theHandles
of this space, including subhandles. Please note that unlikegetHandles()
, the handle set returned by this method does not reflect handles created after calling this method. -
createHandle
Creates a newHandle
. ThrowsUnsupportedOperationException
if this is the space containing handles of spaces (HandleManager.getSpaceSpace()
, useHandleManager.createSpace(String)
instead).- Parameters:
id
-String
id for the newHandle
- Returns:
- created
Handle
- Throws:
NullPointerException
- if the id isnull
IllegalArgumentException
- if the id is empty, blank, contains non-ASCII or non-printable characters or more than one colon (:
), or if aHandle
with the given id already exists in this spaceUnsupportedOperationException
- if this is the space containingHandles
of spaces
-
getOrCreateHandle
Creates aHandle
with the specified id if it does not already exist and returns the handle with that id. ThrowsUnsupportedOperationException
if this is the space containing handles of spaces (HandleManager.getSpaceSpace()
) and a handle with the specified id is not present. UseHandleManager.getOrCreateSpace(String)
instead.- Parameters:
id
-String
id for theHandle
- Returns:
- created or pre-existing
Handle
- Throws:
NullPointerException
- if the id isnull
IllegalArgumentException
- if the id is empty, blank, contains non-ASCII or non-printable characters or more than one colon (:
)UnsupportedOperationException
- if this is the space containingHandles
of spaces and a handle with the specified id is not present
-
getGroups
-
createGroup
- Parameters:
id
-String
id for the newGroup
- Returns:
- created
Group
- Throws:
NullPointerException
- if the id isnull
IllegalArgumentException
- if the id is empty, blank, contains non-ASCII or non-printable characters or the colon (:
), or if aGroup
with the given id already exists in this space
-
getOrCreateGroup
Creates aGroup
with the specified id if it does not already exist and returns the group with that id.- Parameters:
id
-String
id for theGroup
- Returns:
- created or pre-existing
Group
- Throws:
NullPointerException
- if the id isnull
IllegalArgumentException
- if the id is empty, blank, contains non-ASCII or non-printable characters or the colon (:
)
-