|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of AbstractDomainObject in pt.ist.fenixframework |
---|
Subclasses of AbstractDomainObject in pt.ist.fenixframework | |
---|---|
class |
DomainRoot
|
class |
DomainRoot_Base
|
Uses of AbstractDomainObject in pt.ist.fenixframework.adt.bplustree |
---|
Subclasses of AbstractDomainObject in pt.ist.fenixframework.adt.bplustree | |
---|---|
class |
AbstractNode<T extends Serializable>
The keys comparison function should be consistent with equals. |
class |
AbstractNode_Base
|
class |
BPlusTree<T extends Serializable>
Implementation of a persistence-independent B+Tree. |
class |
BPlusTree_Base
|
class |
InnerNode
Inner node of a B+-Tree. |
class |
InnerNode_Base
|
class |
LeafNode
|
class |
LeafNode_Base
|
Uses of AbstractDomainObject in pt.ist.fenixframework.backend.infinispan |
---|
Subclasses of AbstractDomainObject in pt.ist.fenixframework.backend.infinispan | |
---|---|
class |
InfinispanDomainObject
|
Uses of AbstractDomainObject in pt.ist.fenixframework.backend.jvstmmem |
---|
Subclasses of AbstractDomainObject in pt.ist.fenixframework.backend.jvstmmem | |
---|---|
class |
JVSTMMemDomainObject
|
Uses of AbstractDomainObject in pt.ist.fenixframework.backend.mem |
---|
Subclasses of AbstractDomainObject in pt.ist.fenixframework.backend.mem | |
---|---|
class |
MemDomainObject
|
Uses of AbstractDomainObject in pt.ist.fenixframework.backend.ogm |
---|
Subclasses of AbstractDomainObject in pt.ist.fenixframework.backend.ogm | |
---|---|
class |
OgmDomainObject
|
Methods in pt.ist.fenixframework.backend.ogm with parameters of type AbstractDomainObject | |
---|---|
void |
OgmBackEnd.save(AbstractDomainObject obj)
|
Uses of AbstractDomainObject in pt.ist.fenixframework.core |
---|
Subclasses of AbstractDomainObject in pt.ist.fenixframework.core | |
---|---|
class |
AbstractDomainObjectAdapter
This class contains useful code, required by concrete DomainObject s. |
Methods in pt.ist.fenixframework.core that return AbstractDomainObject | |
---|---|
static AbstractDomainObject |
DomainObjectAllocator.allocateObject(Class objClass,
Object oid)
|
AbstractDomainObject |
SharedIdentityMap.cache(AbstractDomainObject obj)
|
AbstractDomainObject |
IdentityMap.cache(AbstractDomainObject obj)
|
AbstractDomainObject |
SharedIdentityMap.lookup(Object key)
|
AbstractDomainObject |
IdentityMap.lookup(Object key)
|
Methods in pt.ist.fenixframework.core with parameters of type AbstractDomainObject | |
---|---|
AbstractDomainObject |
SharedIdentityMap.cache(AbstractDomainObject obj)
|
AbstractDomainObject |
IdentityMap.cache(AbstractDomainObject obj)
|
Constructors in pt.ist.fenixframework.core with parameters of type AbstractDomainObject | |
---|---|
AbstractDomainObject.SerializedForm(AbstractDomainObject obj)
|
Uses of AbstractDomainObject in pt.ist.fenixframework.core.adt.bplustree |
---|
Classes in pt.ist.fenixframework.core.adt.bplustree with type parameters of type AbstractDomainObject | |
---|---|
class |
AbstractNode<T extends AbstractDomainObject>
The keys comparison function should be consistent with equals. |
class |
AbstractNodeArray<T extends AbstractDomainObject>
The keys comparison function should be consistent with equals. |
class |
BPlusTree<T extends AbstractDomainObject>
Implementation of a persistence-independent B+Tree that is specifically optimized to store instances of AbstractDomainObject . |
class |
BPlusTreeArray<T extends AbstractDomainObject>
Implementation of a persistence-independent B+Tree that is specifically optimized to store instances of AbstractDomainObject . |
class |
DoubleArray<T extends AbstractDomainObject>
|
Subclasses of AbstractDomainObject in pt.ist.fenixframework.core.adt.bplustree | |
---|---|
class |
AbstractNodeArray<T extends AbstractDomainObject>
The keys comparison function should be consistent with equals. |
class |
AbstractNodeArray_Base
|
class |
BPlusTreeArray<T extends AbstractDomainObject>
Implementation of a persistence-independent B+Tree that is specifically optimized to store instances of AbstractDomainObject . |
class |
BPlusTreeArray_Base
|
class |
InnerNodeArray
Inner node of a B+-Tree. |
class |
InnerNodeArray_Base
|
class |
LeafNodeArray
|
class |
LeafNodeArray_Base
|
Fields in pt.ist.fenixframework.core.adt.bplustree declared as AbstractDomainObject | |
---|---|
T |
DoubleArray.KeyVal.val
|
T[] |
DoubleArray.values
|
Methods in pt.ist.fenixframework.core.adt.bplustree that return AbstractDomainObject | |
---|---|
AbstractDomainObject |
LeafNodeArray.get(Comparable key)
|
AbstractDomainObject |
LeafNode.get(Comparable key)
|
AbstractDomainObject |
InnerNodeArray.get(Comparable key)
|
AbstractDomainObject |
InnerNode.get(Comparable key)
|
AbstractDomainObject |
LeafNodeArray.getIndex(int index)
|
AbstractDomainObject |
LeafNode.getIndex(int index)
|
AbstractDomainObject |
InnerNodeArray.getIndex(int index)
|
AbstractDomainObject |
InnerNode.getIndex(int index)
|
Methods in pt.ist.fenixframework.core.adt.bplustree that return types with arguments of type AbstractDomainObject | |
---|---|
DoubleArray<AbstractDomainObject> |
LeafNodeArray_Base.getEntries()
|
TreeMap<Comparable,AbstractDomainObject> |
LeafNode_Base.getEntries()
|
Iterator<AbstractDomainObject> |
LeafNodeArray.iterator()
|
Iterator<AbstractDomainObject> |
LeafNode.iterator()
|
Methods in pt.ist.fenixframework.core.adt.bplustree with parameters of type AbstractDomainObject | |
---|---|
AbstractNodeArray |
LeafNodeArray.insert(Comparable key,
AbstractDomainObject value)
|
AbstractNode |
LeafNode.insert(Comparable key,
AbstractDomainObject value)
|
AbstractNodeArray |
InnerNodeArray.insert(Comparable key,
AbstractDomainObject value)
|
AbstractNode |
InnerNode.insert(Comparable key,
AbstractDomainObject value)
|
void |
DoubleArray.quicksort(Comparable[] main,
T[] index)
|
void |
DoubleArray.quicksort(Comparable[] a,
T[] index,
int left,
int right)
|
Method parameters in pt.ist.fenixframework.core.adt.bplustree with type arguments of type AbstractDomainObject | |
---|---|
void |
LeafNodeArray_Base.setEntries(DoubleArray<AbstractDomainObject> entries)
|
void |
LeafNode_Base.setEntries(TreeMap<Comparable,AbstractDomainObject> entries)
|
Constructors in pt.ist.fenixframework.core.adt.bplustree with parameters of type AbstractDomainObject | |
---|---|
DoubleArray(Class<T> valuesClazz,
Comparable[] keys,
T[] values)
|
Uses of AbstractDomainObject in pt.ist.fenixframework.core.adt.linkedlist |
---|
Classes in pt.ist.fenixframework.core.adt.linkedlist with type parameters of type AbstractDomainObject | |
---|---|
class |
LinkedList<T extends AbstractDomainObject>
|
class |
ListNode<T extends AbstractDomainObject>
|
Subclasses of AbstractDomainObject in pt.ist.fenixframework.core.adt.linkedlist | |
---|---|
class |
LinkedList<T extends AbstractDomainObject>
|
class |
LinkedList_Base
|
class |
ListNode<T extends AbstractDomainObject>
|
class |
ListNode_Base
|
Fields in pt.ist.fenixframework.core.adt.linkedlist with type parameters of type AbstractDomainObject | |
---|---|
static DirectRelation<ListNode,AbstractDomainObject> |
ListNode_Base.ListNodeHasValue
|
static RoleOne<ListNode,AbstractDomainObject> |
ListNode_Base.role$$value
|
Methods in pt.ist.fenixframework.core.adt.linkedlist that return AbstractDomainObject | |
---|---|
AbstractDomainObject |
ListNode_Base.getValue()
|
Methods in pt.ist.fenixframework.core.adt.linkedlist with parameters of type AbstractDomainObject | |
---|---|
void |
ListNode_Base.setValue(AbstractDomainObject value)
|
Uses of AbstractDomainObject in pt.ist.fenixframework.core.adt.skiplist |
---|
Classes in pt.ist.fenixframework.core.adt.skiplist with type parameters of type AbstractDomainObject | |
---|---|
class |
SkipList<T extends AbstractDomainObject>
|
Subclasses of AbstractDomainObject in pt.ist.fenixframework.core.adt.skiplist | |
---|---|
class |
SkipList<T extends AbstractDomainObject>
|
class |
SkipList_Base
|
class |
SkipListNode
|
class |
SkipListNode_Base
|
Fields in pt.ist.fenixframework.core.adt.skiplist with type parameters of type AbstractDomainObject | |
---|---|
static RoleOne<SkipListNode,AbstractDomainObject> |
SkipListNode_Base.role$$value
|
static DirectRelation<SkipListNode,AbstractDomainObject> |
SkipListNode_Base.SkipListNodeHasValue
|
Methods in pt.ist.fenixframework.core.adt.skiplist that return AbstractDomainObject | |
---|---|
AbstractDomainObject |
SkipListNode_Base.getValue()
|
Methods in pt.ist.fenixframework.core.adt.skiplist with parameters of type AbstractDomainObject | |
---|---|
void |
SkipListNode_Base.setValue(AbstractDomainObject value)
|
Constructors in pt.ist.fenixframework.core.adt.skiplist with parameters of type AbstractDomainObject | |
---|---|
SkipListNode(int maxLevel,
AbstractDomainObject value)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |