Class SelfLoopEdgePredicate<V,​E>

  • Type Parameters:
    V -
    E -
    All Implemented Interfaces:
    org.apache.commons.collections4.Predicate<edu.uci.ics.jung.graph.util.Context<edu.uci.ics.jung.graph.Graph<V,​E>,​E>>

    public class SelfLoopEdgePredicate<V,​E>
    extends java.lang.Object
    implements org.apache.commons.collections4.Predicate<edu.uci.ics.jung.graph.util.Context<edu.uci.ics.jung.graph.Graph<V,​E>,​E>>
    A Predicate that returns true if the input edge's endpoints in the input graph are identical. (Thus, an edge which connects its sole incident vertex to itself).
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      boolean evaluate​(edu.uci.ics.jung.graph.util.Context<edu.uci.ics.jung.graph.Graph<V,​E>,​E> context)  
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SelfLoopEdgePredicate

        public SelfLoopEdgePredicate()
    • Method Detail

      • evaluate

        public boolean evaluate​(edu.uci.ics.jung.graph.util.Context<edu.uci.ics.jung.graph.Graph<V,​E>,​E> context)
        Specified by:
        evaluate in interface org.apache.commons.collections4.Predicate<V>