Serialized Form
-
Package org.graalvm.collections
-
Class org.graalvm.collections.LockFreePrefixTree.Node
class Node extends AtomicLong implements Serializable- serialVersionUID:
- -1L
-
Serialized Fields
-
children
AtomicReferenceArray<LockFreePrefixTree.Node> children
-
key
long key
The 64-bit key of the node. This field should not be changed after the node is inserted into the data structure. It is not final to allow pooling nodes, and specifying the key after they are allocated on the heap. It is not volatile, because it must be set before the insertion into the concurrent data structure -- the concurrent data structure thus establishes a happens-before relationship between the write to this field and the other threads that read this field.
-
-
Class org.graalvm.collections.SeqLockPrefixTree.Node
class Node extends AtomicLong implements Serializable- serialVersionUID:
- -1L
-
Serialized Fields
-
arity
int arity
-
children
SeqLockPrefixTree.Node[] children
-
keys
long[] keys
-
seqlock
long seqlock
-
-
-
Package org.graalvm.nativeimage
-
Exception Class org.graalvm.nativeimage.Isolates.IsolateException
class IsolateException extends RuntimeException implements Serializable- serialVersionUID:
- 1L
-
Exception Class org.graalvm.nativeimage.MissingJNIRegistrationError
class MissingJNIRegistrationError extends Error implements Serializable- serialVersionUID:
- -8940056537864516986L
-
Exception Class org.graalvm.nativeimage.MissingReflectionRegistrationError
class MissingReflectionRegistrationError extends Error implements Serializable- serialVersionUID:
- 2764341882856270640L
-
-
Package org.graalvm.polyglot
-
Exception Class org.graalvm.polyglot.PolyglotException
class PolyglotException extends RuntimeException implements Serializable-
Serialization Methods
-
writeObject
- Throws:
IOException
-
-
Serialized Fields
-
anchor
Object anchor
Holds a polyglot object that threw aPolyglotException
, ensuring that the garbage collector does not collect the polyglot object while thePolyglotException
is still reachable. -
dispatch
org.graalvm.polyglot.impl.AbstractPolyglotImpl.AbstractExceptionDispatch dispatch
-
impl
Object impl
-
-
-
-
Package org.graalvm.polyglot.io
-
Exception Class org.graalvm.polyglot.io.MessageTransport.VetoException
class VetoException extends Exception implements Serializable- serialVersionUID:
- 3493487569356378902L
-