Package me.datafox.dfxengine.handles
Class SpaceImpl
java.lang.Object
me.datafox.dfxengine.handles.SpaceImpl
- All Implemented Interfaces:
Comparable<Handled>
,Handled
,Space
Implementation of
Space
.-
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.toString()
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface me.datafox.dfxengine.handles.api.Space
getHandleManager
-
Method Details
-
getHandles
- Specified by:
getHandles
in interfaceSpace
- Returns:
- unmodifiable
HandleSet
containing theHandles
of this space, excluding subhandles
-
getAllHandles
Returns an unmodifiableHandleSet
containing theHandles
of this space, including subhandles. Please note that unlikeSpace.getHandles()
, the handle set returned by this method does not reflect handles created after calling this method.- Specified by:
getAllHandles
in interfaceSpace
- Returns:
- unmodifiable
HandleSet
containing theHandles
of this space, including subhandles
-
createHandle
Creates a newHandle
. ThrowsUnsupportedOperationException
if this is the space containing handles of spaces (HandleManager.getSpaceSpace()
, useHandleManager.createSpace(String)
instead).- Specified by:
createHandle
in interfaceSpace
- 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.- Specified by:
getOrCreateHandle
in interfaceSpace
- 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
- Specified by:
createGroup
in interfaceSpace
- 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.- Specified by:
getOrCreateGroup
in interfaceSpace
- 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 (:
)
-
toString
-