Tabnine Logo
DotConstants$DotGraphType
Code IndexAdd Tabnine to your IDE (free)

How to use
DotConstants$DotGraphType
in
org.jboss.windup.graph.renderer.dot

Best Java code snippets using org.jboss.windup.graph.renderer.dot.DotConstants$DotGraphType (Showing top 4 results out of 315)

origin: org.jboss.windup/windup-grapher

private void writeGraphEdge(String label, String source, String target, OutputStream os) throws IOException {
  final String startTag = getDotSafeName(source) + graphType.getEdge() + getDotSafeName(target);
  final String endTag = DotConstants.END_LINE;
  
  IOUtils.write(startTag, os);
  
  if(StringUtils.isNotBlank(label)) {
    writeOptions(os, new String[] {"label", label}, new String[]{"fontsize", fontSize});
  }
  
  IOUtils.write(endTag, os);
  
}

origin: org.jboss.windup/windup-grapher

private void writeGraphTag(OutputStream os) throws IOException {
  String name = this.getDotSafeName(graphName);
  IOUtils.write(graphType.getName()+" "+name+"{" + DotConstants.NL, os);
  
  writeGraphNodes(os);
  writeGraphEdges(os);
  
  IOUtils.write("}", os);
}
origin: org.jboss.windup.legacy.application/grapher

private void writeGraphEdge(String label, String source, String target, OutputStream os) throws IOException {
  final String startTag = getDotSafeName(source) + graphType.getEdge() + getDotSafeName(target);
  final String endTag = DotConstants.END_LINE;
  
  IOUtils.write(startTag, os);
  
  if(StringUtils.isNotBlank(label)) {
    writeOptions(os, new String[] {"label", label}, new String[]{"fontsize", fontSize});
  }
  
  IOUtils.write(endTag, os);
  
}

origin: org.jboss.windup.legacy.application/grapher

private void writeGraphTag(OutputStream os) throws IOException {
  String name = this.getDotSafeName(graphName);
  IOUtils.write(graphType.getName()+" "+name+"{" + DotConstants.NL, os);
  
  writeGraphNodes(os);
  writeGraphEdges(os);
  
  IOUtils.write("}", os);
}
org.jboss.windup.graph.renderer.dotDotConstants$DotGraphType

Most used methods

  • getEdge
  • getName

Popular in Java

  • Start an intent from android
  • onCreateOptionsMenu (Activity)
  • getSharedPreferences (Context)
  • setRequestProperty (URLConnection)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • FileOutputStream (java.io)
    An output stream that writes bytes to a file. If the output file exists, it can be replaced or appen
  • UnknownHostException (java.net)
    Thrown when a hostname can not be resolved.
  • Queue (java.util)
    A collection designed for holding elements prior to processing. Besides basic java.util.Collection o
  • BlockingQueue (java.util.concurrent)
    A java.util.Queue that additionally supports operations that wait for the queue to become non-empty
  • FileUtils (org.apache.commons.io)
    General file manipulation utilities. Facilities are provided in the following areas: * writing to a
  • 21 Best IntelliJ Plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now