Interface ManagedObjectIndex
-
- All Known Implementing Classes:
ManagedObjectIndexImpl
public interface ManagedObjectIndex
Index of theManagedObject
, providing both the scope it lives within and the index of it within that scope.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getIndexOfManagedObjectWithinScope()
Obtains the index of theManagedObject
within theManagedObjectScope
.ManagedObjectScope
getManagedObjectScope()
Obtains theManagedObjectScope
that theManagedObject
resides within.
-
-
-
Method Detail
-
getManagedObjectScope
ManagedObjectScope getManagedObjectScope()
Obtains theManagedObjectScope
that theManagedObject
resides within.- Returns:
ManagedObjectScope
that theManagedObject
resides within.
-
getIndexOfManagedObjectWithinScope
int getIndexOfManagedObjectWithinScope()
Obtains the index of theManagedObject
within theManagedObjectScope
.- Returns:
- Index of the
ManagedObject
within theManagedObjectScope
.
-
-