Tabnine Logo
AbstractRoute.getNonForwarding
Code IndexAdd Tabnine to your IDE (free)

How to use
getNonForwarding
method
in
org.batfish.datamodel.AbstractRoute

Best Java code snippets using org.batfish.datamodel.AbstractRoute.getNonForwarding (Showing top 3 results out of 315)

origin: batfish/batfish

 @Override
 protected Boolean featureValueOf(AbstractRoute actual) {
  return actual.getNonForwarding();
 }
}
origin: batfish/batfish

/** Returns the forwarding routes stored in this node. */
private Set<R> getForwardingRoutes() {
 return _routes.stream()
   .filter(r -> !r.getNonForwarding())
   .collect(ImmutableSet.toImmutableSet());
}
origin: batfish/batfish

if (route.getNonForwarding()) {
 if (parentRoute == null) {
  return;
      .filter(r -> !r.getNonForwarding())
      .collect(ImmutableSet.toImmutableSet());
org.batfish.datamodelAbstractRoutegetNonForwarding

Javadoc

Returns true if this route is non-forwarding, i.e., it can be installed in the main RIB but not the FIB.

Popular methods of AbstractRoute

  • getMetric
  • getNetwork
    IPV4 network of this route
  • getNextHopIp
    Next hop IP for this route. If not known, Route#UNSET_ROUTE_NEXT_HOP_IP must be returned.
  • getProtocol
  • getNextHopInterface
    Name of the next-hop interface for this route. If not known, Route#UNSET_NEXT_HOP_INTERFACE must be
  • getTag
    Return the route's tag or #NO_TAG if no tag is present
  • getAdministrativeCost
  • getNonRouting
    Check if this route is "non-routing", i.e., should not be installed in the main RIB.
  • toBuilder
    Return a AbstractRouteBuilder pre-populated with the values for this route.

Popular in Java

  • Start an intent from android
  • getContentResolver (Context)
  • getApplicationContext (Context)
  • compareTo (BigDecimal)
  • PrintStream (java.io)
    Fake signature of an existing Java class.
  • String (java.lang)
  • JTable (javax.swing)
  • JTextField (javax.swing)
  • Get (org.apache.hadoop.hbase.client)
    Used to perform Get operations on a single row. To get everything for a row, instantiate a Get objec
  • Reflections (org.reflections)
    Reflections one-stop-shop objectReflections scans your classpath, indexes the metadata, allows you t
  • Top Vim 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