user3777228
user3777228

Reputation: 159

Custom Iterable in Spring Data Neo4j

Can we have custom iterators in Spring Data Neo4j for Node Entities?
I have an existing code which has CustomHashCollection as an iterable. I want to convert the project to use Neo4j. Can I use the custom iterator as it is a private member in most of the NodeEntity classes.
Thanks in advance.

Upvotes: 0

Views: 72

Answers (1)

Michael Hunger
Michael Hunger

Reputation: 41706

What is different with your Iterable?

As far as I remember there is no custom extensibility for iterable types, so far the JDK collection were good enough.

Upvotes: 1

Related Questions