congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
IndexedMatchGraph.getVertex
Code IndexAdd Tabnine to your IDE (free)

How to use
getVertex
method
in
cascading.flow.planner.iso.finder.IndexedMatchGraph

Best Java code snippets using cascading.flow.planner.iso.finder.IndexedMatchGraph.getVertex (Showing top 3 results out of 315)

origin: cwensel/cascading

public ElementExpression getMatcherNode( int vertex )
 {
 return matchGraph.getVertex( vertex );
 }
origin: cwensel/cascading

private boolean areCompatibleNodes( int node1, int node2 )
 {
 Expression expression = matchGraph.getVertex( node1 );
 FlowElement flowElement = elementGraph.getVertex( node2 );
 boolean result;
 if( ( (ElementExpression) expression ).getCapture() == ElementCapture.Primary &&
  !finderContext.getRequiredElements().isEmpty() )
  result = finderContext.isRequired( flowElement );
 else if( finderContext.isExcluded( flowElement ) || finderContext.isIgnored( flowElement ) )
  result = false;
 else
  result = expression.applies( plannerContext, elementGraph.getElementGraph(), flowElement );
 if( LOG.isDebugEnabled() && result )
  LOG.debug( "compatible nodes: {}:{} matched {}:{}", node1, expression, node2, flowElement );
 return result;
 }
origin: cwensel/cascading

LOG.trace( "no matcher edge between nodes: {}:{} -> {}:{}", node1, matchGraph.getVertex( node1 ), other1, matchGraph.getVertex( other1 ) );
LOG.trace( "no matcher edge between nodes: {}:{} -> {}:{}", other1, matchGraph.getVertex( other1 ), node1, matchGraph.getVertex( node1 ) );
cascading.flow.planner.iso.finderIndexedMatchGraphgetVertex

Popular methods of IndexedMatchGraph

  • <init>
  • containsEdge
  • getAllEdgesList
  • getPredecessors
  • getSuccessors

Popular in Java

  • Making http post requests using okhttp
  • compareTo (BigDecimal)
  • setScale (BigDecimal)
  • orElseThrow (Optional)
    Return the contained value, if present, otherwise throw an exception to be created by the provided s
  • Window (java.awt)
    A Window object is a top-level window with no borders and no menubar. The default layout for a windo
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • Path (java.nio.file)
  • Date (java.sql)
    A class which can consume and produce dates in SQL Date format. Dates are represented in SQL as yyyy
  • Vector (java.util)
    Vector is an implementation of List, backed by an array and synchronized. All optional operations in
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • Top PhpStorm plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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