Looks like END_OF_TOKEN is the first of an enum, it'll be zero.
public enum Token {
/** Signals the end of input. */
END_OF_INPUT,
/** A '(', which begins a list */
BEGIN_LIST,
....
....
Yes, I'm using a Java object, but don't know which JO method to use, which would return this value. I don't actually need the value of END_OF_TOKEN (0), just need to know how to refer to it, in order to compare it with the value returned from nextvalue.
I'm using edn-java, btw
https://github.com/bpsm/edn-java