Unnamed: 0
int64
0
6.7k
func
stringlengths
12
89.6k
target
bool
2 classes
project
stringlengths
45
151
6,600
public interface ResultDataContentWriter { void write( JsonGenerator out, Iterable<String> columns, Map<String, Object> row ) throws IOException; }
false
community_server_src_main_java_org_neo4j_server_rest_transactional_ResultDataContentWriter.java
6,601
private enum State { BEFORE_OUTER_ARRAY, IN_BODY, FINISHED }
false
community_server_src_main_java_org_neo4j_server_rest_transactional_StatementDeserializer.java
6,602
public interface TransactionRegistry { public long begin(); public long release( long id, TransactionHandle transactionHandle ); public TransactionHandle acquire( long id ) throws TransactionLifecycleException; public void forget( long id ); public void rollbackAllSuspendedTransactions(); }
false
community_server_src_main_java_org_neo4j_server_rest_transactional_TransactionRegistry.java
6,603
private enum IndexResultOrder { INDEX_ORDER { @Override QueryContext updateQueryContext( QueryContext original ) { return original.sort( Sort.INDEXORDER ); } }, RELEVAN...
false
community_server_src_main_java_org_neo4j_server_rest_web_DatabaseActions.java
6,604
private interface PathRepresentationCreator<T extends Path> { PathRepresentation<T> from( T path ); }
false
community_server_src_main_java_org_neo4j_server_rest_web_DatabaseActions.java
6,605
public enum RelationshipDirection { all( Direction.BOTH ), in( Direction.INCOMING ), out( Direction.OUTGOING ); final Direction internal; private RelationshipDirection( Direction internal ) { this.internal = internal; } }
false
community_server_src_main_java_org_neo4j_server_rest_web_DatabaseActions.java
6,606
private enum UniqueIndexType { None, GetOrCreate, CreateOrFail }
false
community_server_src_main_java_org_neo4j_server_rest_web_RestfulGraphDatabase.java
6,607
public interface Surface { String PATH_NODES = "node"; String PATH_NODE_INDEX = "index/node"; String PATH_RELATIONSHIP_INDEX = "index/relationship"; String PATH_EXTENSIONS = "ext"; String PATH_RELATIONSHIP_TYPES = "relationship/types"; String PATH_SCHEMA_INDEX = "schema/index"; String PATH_S...
false
community_server_src_main_java_org_neo4j_server_rest_web_Surface.java
6,608
public interface TransactionUriScheme { URI txUri( long id ); URI txCommitUri( long id ); }
false
community_server_src_main_java_org_neo4j_server_rest_web_TransactionUriScheme.java
6,609
public interface Job { void run(); }
false
community_server_src_main_java_org_neo4j_server_rrd_Job.java
6,610
public interface JobScheduler { void scheduleAtFixedRate( Runnable job, String jobName, long delay, long period ); }
false
community_server_src_main_java_org_neo4j_server_rrd_JobScheduler.java
6,611
interface RrdSampler { void updateSample(); }
false
community_server_src_main_java_org_neo4j_server_rrd_RrdSampler.java
6,612
public interface Sampleable { String getName(); double getValue(); DsType getType(); }
false
community_server_src_main_java_org_neo4j_server_rrd_Sampleable.java
6,613
public interface TimeSource { long getTime(); }
false
community_server_src_main_java_org_neo4j_server_rrd_TimeSource.java
6,614
public interface ScriptExecutor { public interface Factory { public ScriptExecutor createExecutorForScript( String script ) throws EvaluationException; } /** * Execute the contained script. * @return * @param variables Is variables that should be available to the script. */...
false
community_server_src_main_java_org_neo4j_server_scripting_ScriptExecutor.java
6,615
public interface Factory { public ScriptExecutor createExecutorForScript( String script ) throws EvaluationException; }
false
community_server_src_main_java_org_neo4j_server_scripting_ScriptExecutor.java
6,616
public static enum Mode { SANDBOXED, UNSAFE }
false
community_server_src_main_java_org_neo4j_server_scripting_javascript_GlobalJavascriptInitializer.java
6,617
public interface WebServer { void init(); void setPort( int portNo ); void setAddress( String addr ); void setEnableHttps( boolean enable ); void setHttpsPort( int portNo ); void setHttpsCertificateInformation( KeyStoreInformation config ); void setHttpLoggingConfiguration( File logbac...
false
community_server_src_main_java_org_neo4j_server_web_WebServer.java
6,618
public interface ConsoleSessionCreator { String name(); ScriptSession newSession( Database database, CypherExecutor cypherExecutor ); }
false
community_server_src_main_java_org_neo4j_server_webadmin_console_ConsoleSessionCreator.java
6,619
public interface ConsoleSessionFactory { ScriptSession createSession( String engineName, Database database ); Iterable<String> supportedEngines(); }
false
community_server_src_main_java_org_neo4j_server_webadmin_console_ConsoleSessionFactory.java
6,620
public interface ScriptSession { /** * @return {@link Pair} of (result,next prompt). */ Pair<String, String> evaluate( String script ); }
false
community_server_src_main_java_org_neo4j_server_webadmin_console_ScriptSession.java
6,621
public interface AdvertisableService { String getName(); String getServerPath(); }
false
community_server_src_main_java_org_neo4j_server_webadmin_rest_AdvertisableService.java
6,622
public enum WebDriverImplementation { Firefox() { public WebDriver createInstance() { return new FirefoxDriver(); } }, Chrome() { public WebDriver createInstance() { We...
false
community_server_src_webtest_java_org_neo4j_server_webdriver_WebDriverFacade.java
6,623
public interface App { /** * @return the name of the application. */ String getName(); /** * @param option the name of the option. An option could be like this: * "ls -l" where "l" is an option. * @return the option definition for {@code option}. */ OptionDefinition getOptionDefinition( String option...
false
community_shell_src_main_java_org_neo4j_shell_App.java
6,624
public interface AppShellServer extends ShellServer { /** * Finds and returns an {@link App} implementation with a given name. * @param name the name of the app. * @return an {@link App} instance for {@code name}. * @throws RemoteException if an RMI exception occurs. */ App findApp( String name ) throws Rem...
false
community_shell_src_main_java_org_neo4j_shell_AppShellServer.java
6,625
public interface Console { /** * Prints a formatted string to the console (System.out). * @param format the string/format to print. * @param args values used in conjunction with {@code format}. */ void format( String format, Object... args ); /** * @param prompt the prompt to display. * @return the nex...
false
community_shell_src_main_java_org_neo4j_shell_Console.java
6,626
public enum Continuation { INPUT_COMPLETE, INPUT_INCOMPLETE, EXIT; }
false
community_shell_src_main_java_org_neo4j_shell_Continuation.java
6,627
public enum OptionValueType { /** * No value is to be specified. */ NONE( "" ), /** * There may be a value supplied. */ MAY( "(may have value)" ), /** * There must be a supplied value. */ MUST( "(must have value" ), ; private String description; private OptionValueType( String description...
false
community_shell_src_main_java_org_neo4j_shell_OptionValueType.java
6,628
public interface Output extends Appendable, Remote { /** * Prints a line to the output. * @param object the object to print (the string representation of it). * @throws RemoteException RMI error. */ void print( Serializable object ) throws RemoteException; /** * Prints a new line to the output. * @thro...
false
community_shell_src_main_java_org_neo4j_shell_Output.java
6,629
public interface ShellClient { Serializable getId(); /** * Grabs the console prompt. */ void grabPrompt(); /** * Evaluates a line and reacts to it. * @param line the line to evaluate. * @return the next command line from the user. * @throws ShellException if something went wrong. */ v...
false
community_shell_src_main_java_org_neo4j_shell_ShellClient.java
6,630
public interface ShellServer extends Remote { /** * @return the name of this server. * @throws RemoteException RMI error. */ String getName() throws RemoteException; /** * Receives a command line (probably from a {@link ShellClient}) and reacts * to it. Output is written to the {@link Output} object. ...
false
community_shell_src_main_java_org_neo4j_shell_ShellServer.java
6,631
public static interface Replacer { /** * Returns a string to replace something else. * @param server the server which runs the interpretation. * @param session the environment of the interpretation. * @return the replacement. * @throws ShellException if there...
false
community_shell_src_main_java_org_neo4j_shell_impl_BashVariableInterpreter.java
6,632
public interface Dependencies { Config getConfig(); GraphDatabaseAPI getGraphDatabaseAPI(); }
false
community_shell_src_main_java_org_neo4j_shell_impl_ShellServerExtensionFactory.java
6,633
public interface JSONString { /** * The <code>toJSONString</code> method allows a class to produce its own JSON * serialization. * * @return A strictly syntactically correct JSON text. */ public String toJSONString(); }
false
community_shell_src_main_java_org_neo4j_shell_util_json_JSONString.java
6,634
public interface Instance { void run( Task task ); void awaitStarted() throws InterruptedException; void restart(); // <T> T getMBean( Class<T> beanType ); }
false
community_kernel_src_test_java_org_neo4j_test_AbstractSubProcessTestBase.java
6,635
protected interface Task extends Serializable { void run( GraphDatabaseAPI graphdb ); }
false
community_kernel_src_test_java_org_neo4j_test_AbstractSubProcessTestBase.java
6,636
public interface Condition { boolean evaluate(); }
false
community_kernel_src_test_java_org_neo4j_test_AssertEventually.java
6,637
public static interface RestartAction { void run( FileSystemAbstraction fs, File storeDirectory ); }
false
community_kernel_src_test_java_org_neo4j_test_DatabaseRule.java
6,638
private static interface DiffReport { void add( String report ); }
false
community_kernel_src_test_java_org_neo4j_test_DbRepresentation.java
6,639
private interface TempDirectory { File root(); void create() throws IOException; void delete() throws IOException; }
false
community_kernel_src_test_java_org_neo4j_test_EmbeddedDatabaseRule.java
6,640
public interface GraphDefinition { Map<String, Node> create( GraphDatabaseService graphdb ); }
false
community_kernel_src_test_java_org_neo4j_test_GraphDefinition.java
6,641
@Inherited @Target( { ElementType.METHOD, ElementType.TYPE } ) @Retention( RetentionPolicy.RUNTIME ) public @interface Graph { String[] value() default {}; NODE[] nodes() default {}; REL[] relationships() default {}; boolean autoIndexNodes() default false; ...
false
community_kernel_src_test_java_org_neo4j_test_GraphDescription.java
6,642
@Target( {} ) public @interface LABEL { String value(); }
false
community_kernel_src_test_java_org_neo4j_test_GraphDescription.java
6,643
@Target( {} ) public @interface NODE { String name(); PROP[] properties() default {}; LABEL[] labels() default {}; boolean setNameProperty() default false; }
false
community_kernel_src_test_java_org_neo4j_test_GraphDescription.java
6,644
@Target( {} ) public @interface PROP { String key(); String value(); PropType type() default STRING; PropType componentType() default ERROR; }
false
community_kernel_src_test_java_org_neo4j_test_GraphDescription.java
6,645
@SuppressWarnings( "boxing" ) public enum PropType { ARRAY { @Override Object convert( PropType componentType, String value ) { String[] items = value.split( " *, *" ); Object[] result = (Object[]) Array.newInstance( componentType.com...
false
community_kernel_src_test_java_org_neo4j_test_GraphDescription.java
6,646
@Target( {} ) public @interface REL { String name() default ""; String type(); String start(); String end(); PROP[] properties() default {}; boolean setNameProperty() default false; }
false
community_kernel_src_test_java_org_neo4j_test_GraphDescription.java
6,647
public interface GraphHolder { GraphDatabaseService graphdb(); }
false
community_kernel_src_test_java_org_neo4j_test_GraphHolder.java
6,648
public static interface LogHook<RECORD> extends Predicate<RECORD> { void file( File file ); void done( File file ); }
false
community_kernel_src_test_java_org_neo4j_test_LogTestUtils.java
6,649
public interface Mutable { Voice mute(); }
false
community_kernel_src_test_java_org_neo4j_test_Mute.java
6,650
public enum System implements Mutable { out { @Override PrintStream replace( PrintStream replacement ) { PrintStream old = java.lang.System.out; java.lang.System.setOut( replacement ); return old; } ...
false
community_kernel_src_test_java_org_neo4j_test_Mute.java
6,651
private static enum ExecutionState { REQUESTED_EXECUTION, EXECUTING, EXECUTED }
false
community_kernel_src_test_java_org_neo4j_test_OtherThreadExecutor.java
6,652
public interface WorkerCommand<T, R> { R doWork( T state ) throws Exception; }
false
community_kernel_src_test_java_org_neo4j_test_OtherThreadExecutor.java
6,653
@Retention( RetentionPolicy.RUNTIME ) @Target(ElementType.METHOD) public @interface Repeat { public abstract int times(); }
false
community_kernel_src_test_java_org_neo4j_test_RepeatRule.java
6,654
public interface StreamExceptionHandler { void handle( IOException failure ); }
false
community_kernel_src_test_java_org_neo4j_test_StreamConsumer.java
6,655
public interface Producer<T> { T create( GraphDefinition graph, String title, String documentation ); void destroy( T product, boolean successful ); }
false
community_kernel_src_test_java_org_neo4j_test_TestData.java
6,656
@Target( ElementType.METHOD ) @Retention( RetentionPolicy.RUNTIME ) public @interface Title { String value(); }
false
community_kernel_src_test_java_org_neo4j_test_TestData.java
6,657
public enum TestLabels implements Label { LABEL_ONE, LABEL_TWO, LABEL_THREE; }
false
community_kernel_src_test_java_org_neo4j_test_TestLabels.java
6,658
public interface Provider { Clusters clusters() throws Throwable; }
false
enterprise_ha_src_test_java_org_neo4j_test_ha_ClusterManager.java
6,659
public interface RepairKit { HighlyAvailableGraphDatabase repair() throws Throwable; }
false
enterprise_ha_src_test_java_org_neo4j_test_ha_ClusterManager.java
6,660
public interface StoreDirInitializer { void initializeStoreDir( int serverId, File storeDir ) throws IOException; }
false
enterprise_ha_src_test_java_org_neo4j_test_ha_ClusterManager.java
6,661
interface Positionable { long pos(); void pos( long position ); }
false
community_kernel_src_test_java_org_neo4j_test_impl_EphemeralFileSystemAbstraction.java
6,662
@Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface BeforeDebuggedTest { }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_BeforeDebuggedTest.java
6,663
public enum Event { ENTRY, EXIT }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_BreakPoint.java
6,664
@Target( { ElementType.METHOD, ElementType.PARAMETER } ) @Retention( RetentionPolicy.RUNTIME ) public @interface BreakpointHandler { /** the name(s) of the breakpoint(s) to handle */ String[] value(); }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_BreakpointHandler.java
6,665
@Target( ElementType.METHOD ) @Retention( RetentionPolicy.RUNTIME ) public @interface BreakpointTrigger { /** the name of the break point */ String value() default ""; BreakPoint.Event on() default ENTRY; }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_BreakpointTrigger.java
6,666
public interface DebuggerDeadlockCallback { DebuggerDeadlockCallback RESUME_THREAD = new DebuggerDeadlockCallback() { @Override public void deadlock( DebuggedThread thread ) { thread.resume(); } }; /** Will be called with the suspended thread that causes the ...
false
community_kernel_src_test_java_org_neo4j_test_subprocess_DebuggerDeadlockCallback.java
6,667
@Target( ElementType.METHOD ) @Retention( RetentionPolicy.RUNTIME ) public @interface EnabledBreakpoints { String[] value(); }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_EnabledBreakpoints.java
6,668
@Target( ElementType.TYPE ) @Retention( RetentionPolicy.RUNTIME ) public @interface ForeignBreakpoints { BreakpointDef[] value(); @interface BreakpointDef { String name() default ""; String type(); String method(); BreakPoint.Event on() default ENTRY; } }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_ForeignBreakpoints.java
6,669
@interface BreakpointDef { String name() default ""; String type(); String method(); BreakPoint.Event on() default ENTRY; }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_ForeignBreakpoints.java
6,670
private interface Dispatcher extends Remote { void stop() throws RemoteException; Object dispatch( String name, String[] types, Object[] args ) throws RemoteException, Throwable; }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_SubProcess.java
6,671
private interface DispatcherTrap extends Remote { Object trap( Dispatcher dispatcher ) throws RemoteException; SubProcess<?, Object> getSubProcess() throws RemoteException; }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_SubProcess.java
6,672
private interface NoInterface { // Used when no interface is declared }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_SubProcess.java
6,673
private interface RemoteRunNotifier extends Remote { void failure( Throwable exception ) throws RemoteException; void checkPostConditions() throws RemoteException, Throwable; }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_SubProcessTestRunner.java
6,674
interface TestRunnerDispatcher { void submit( Task<?> task ) throws Throwable; void run( String methodName ) throws Throwable; }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_SubProcessTestRunner.java
6,675
public interface Task<T> extends Serializable { void run( T parameter ); interface Executor { /** submits a task for asynchronous execution */ void submit( Task<?> task ); } }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_Task.java
6,676
interface Executor { /** submits a task for asynchronous execution */ void submit( Task<?> task ); }
false
community_kernel_src_test_java_org_neo4j_test_subprocess_Task.java
6,677
public interface BatchInserter { /** * Creates a node assigning next available id to id and also adds any * properties supplied. * * @param properties a map containing properties or <code>null</code> if no * properties should be added. * @param labels a list of labels to initially crea...
false
community_kernel_src_main_java_org_neo4j_unsafe_batchinsert_BatchInserter.java
6,678
public interface BatchInserterIndex { /** * Adds key/value pairs for {@code entity} to the index. If there's a * previous index for {@code entity} it will co-exist with this new one. * This behavior is because of performance reasons, to not being forced to * check if indexing for {@code entity} ...
false
community_kernel_src_main_java_org_neo4j_unsafe_batchinsert_BatchInserterIndex.java
6,679
public interface BatchInserterIndexProvider { /** * Returns a {@link BatchInserterIndex} for {@link Node}s for the name * {@code indexName} with the given {@code config}. The {@code config} * {@link Map} can contain any provider-implementation-specific data that * can control how an index behave...
false
community_kernel_src_main_java_org_neo4j_unsafe_batchinsert_BatchInserterIndexProvider.java
6,680
public interface LabelScanWriter extends Closeable { /** * Store a {@link NodeLabelUpdate}. Calls to this method MUST be ordered by ascending node id. */ void write( NodeLabelUpdate update ) throws IOException; /** * Close this writer and flush pending changes to the store. */ void ...
false
community_kernel_src_main_java_org_neo4j_unsafe_batchinsert_LabelScanWriter.java
6,681
private static enum Labels implements Label { FIRST, SECOND, THIRD }
false
community_kernel_src_test_java_org_neo4j_unsafe_batchinsert_TestBatchInsert.java
6,682
private static enum RelTypes implements RelationshipType { BATCH_TEST, REL_TYPE1, REL_TYPE2, REL_TYPE3, REL_TYPE4, REL_TYPE5 }
false
community_kernel_src_test_java_org_neo4j_unsafe_batchinsert_TestBatchInsert.java
6,683
private enum EdgeType implements RelationshipType { KNOWS }
false
community_lucene-index_src_test_java_org_neo4j_unsafe_batchinsert_TestLuceneBatchInsert.java
6,684
public interface GraphRenderer<E extends Throwable> { /** * Renders a node. * @param node * the node to render. * @return an object capable of rendering the properties of the node, or * <code>null</code> to not render properties externally. * @throws E * if an error occurs ...
false
community_graphviz_src_main_java_org_neo4j_visualization_GraphRenderer.java
6,685
public interface PropertyRenderer<E extends Throwable> { /** * Renders a property. * @param propertyKey * the key of the property. * @param propertyValue * the value of the property. * @throws E * if an error occurs when rendering the property. */ void renderProperty(...
false
community_graphviz_src_main_java_org_neo4j_visualization_PropertyRenderer.java
6,686
public enum PropertyType { /** * Represents a String property. */ STRING( null, "String", String.class ) { @Override <T> T apply( ValueFormatter<T> formatter, Object value ) { return formatter.formatString( ( String ) value ); } }, /** * Represents an integer property. */ INT( null, "int", Inte...
false
community_graphviz_src_main_java_org_neo4j_visualization_PropertyType.java
6,687
public interface SubgraphMapper { String getSubgraphFor( Node node ); public abstract class SubgraphMappingWalker extends Walker { private final SubgraphMapper mapper; protected SubgraphMappingWalker( SubgraphMapper mapper ) { this.mapper = mapper; } pr...
false
community_graphviz_src_main_java_org_neo4j_visualization_SubgraphMapper.java
6,688
public interface ValueFormatter<T> { /** * Format a string. * @param value * the string to format. * @return a formatted version of the given string. */ T formatString( String value ); /** * Format a string array. * @param array * the string array to format. * @return a forma...
false
community_graphviz_src_main_java_org_neo4j_visualization_ValueFormatter.java
6,689
interface NodeStyle extends PropertyContainerStyle { /** * Emit the start of a node. * @param stream * the stream to emit the node to. * @param node * the node to emit. * @throws IOException * if there is an error on the stream. */ void emitNodeStart( Appendable strea...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_NodeStyle.java
6,690
interface ParameterGetter<C extends PropertyContainer> { /** * Get the value for a parameter. * @param container * the node or relationship to get the value for. * @param key * the parameter to get. * @return the value of the parameter, or <code>null</code> to not emit * the...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_ParameterGetter.java
6,691
interface PropertyContainerStyle { /** * Emit the end of a node or relationship. * @param stream * the stream to emit the end on. * @throws IOException * if there is an error on the stream. */ void emitEnd( Appendable stream ) throws IOException; /** * Emit a property of a node ...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_PropertyContainerStyle.java
6,692
interface PropertyFilter { /** * Determine if a property should be emitted. * @param key * the key of the property. * @return <code>true</code> if the property should be emitted. */ boolean acceptProperty( String key ); }
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_PropertyFilter.java
6,693
interface PropertyFormatter { /** * Format a property as a string. * @param key * the key of the property to format. * @param type * an object representing the type of the property. * @param value * the value or the property to format. * @return the property formatted a...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_PropertyFormatter.java
6,694
interface RelationshipStyle extends PropertyContainerStyle { /** * Emit the start of a relationship. * @param stream * the stream to emit the relationship to. * @param relationship * the relationship to emit. * @throws IOException * if there is an error on the stream. ...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_RelationshipStyle.java
6,695
interface StyleConfiguration { void setGraphProperty( String property, String value ); void setDefaultNodeProperty( String property, String value ); void setDefaultRelationshipProperty( String property, String value ); void displayRelationshipLabel( boolean on ); void setNodePropertyFilter( PropertyFi...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_StyleConfiguration.java
6,696
public interface StyleParameter { /** * Apply this configuration parameter to a configuration. * @param configuration * the configuration to apply this parameter to. */ void configure( StyleConfiguration configuration ); final class GraphLabel implements StyleParameter { private fi...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_StyleParameter.java
6,697
enum Simple implements StyleParameter { /** Don't render properties for relationships. */ NO_RELATIONSHIP_PROPERTIES { @Override public final void configure( StyleConfiguration configuration ) { configuration .setRelationshipPropertyFilter( new PropertyFilter() { public boo...
false
community_graphviz_src_main_java_org_neo4j_visualization_graphviz_StyleParameter.java
6,698
enum type implements RelationshipType { KNOWS, WORKS_FOR }
false
community_graphviz_src_test_java_org_neo4j_visualization_graphviz_TestGraphvizSubgraphOutput.java
6,699
enum type implements RelationshipType { KNOWS, WORKS_FOR }
false
community_graphviz_src_test_java_org_neo4j_visualization_graphviz_TestNewGraphvizWriter.java