An UnionQuery combines the results of two underlying
queries and produces a result set containing elements that appear
in either of the input result sets.
NOTE - code adapted from JUG libary (Copyright (c) 2002- Tatu Saloranta, tatu.saloranta@iki.fi).
UUID() -
Constructor for class org.hypergraphdb.handle.UUID
Default constructor creates a NIL UUID, one that contains all
zeroes
Note that the clearing of array is actually unnecessary as
JVMs are required to clear up the allocated arrays by default.
UUID(byte[]) -
Constructor for class org.hypergraphdb.handle.UUID
Constructor for cases where you already have the 16-byte binary
representation of the UUID (for example if you save UUIDs binary
takes less than half of space string representation takes).
Constructor for cases where you already have the binary
representation of the UUID (for example if you save UUIDs binary
takes less than half of space string representation takes) in
a byte array
UUID(String) -
Constructor for class org.hypergraphdb.handle.UUID
Constructor for creating UUIDs from the canonical string
representation
Note that implementation is optimized for speed, not necessarily
code clarity...