FlyweightPrototype<NamedGraphServer>
ImmutableGraphNamedGraphServer
, RandomNamedGraphServer
public interface NamedGraphServer extends FlyweightPrototype<NamedGraphServer>
Modifier and Type | Method | Description |
---|---|---|
java.lang.CharSequence[] |
successors(java.lang.CharSequence name) |
If
src corresponds to the name of a node in the graph, this method returns
an array with the name of its successors (in some order); otherwise, it returns null . |
copy
java.lang.CharSequence[] successors(java.lang.CharSequence name)
src
corresponds to the name of a node in the graph, this method returns
an array with the name of its successors (in some order); otherwise, it returns null
.name
- the name of a node.src
, or null
if name
is not the name of a node.