Enum Class Contains

java.lang.Object
java.lang.Enum<Contains>
org.apache.tinkerpop.gremlin.process.traversal.Contains
All Implemented Interfaces:
Serializable, Comparable<Contains>, Constable, BiPredicate<Object,Collection>, PBiPredicate<Object,Collection>

public enum Contains extends Enum<Contains> implements PBiPredicate<Object,Collection>
Contains is a BiPredicate that evaluates whether the first object is contained within (or not within) the second collection object. If the first object is a number, each element in the second collection will be compared to the first object using Compare's eq predicate. This will ensure, that numbers are matched by their value only, ignoring the number type. For example:

 gremlin Contains.within [gremlin, blueprints, furnace] == true
 gremlin Contains.without [gremlin, rexster] == false
 rexster Contains.without [gremlin, blueprints, furnace] == true
 123 Contains.within [1, 2, 3] == false
 100 Contains.within [1L, 10L, 100L] == true
 
Author:
Pierre De Wilde, Marko A. Rodriguez (http://markorodriguez.com)
  • Enum Constant Details

    • within

      public static final Contains within
      The first object is within the Collection provided in the second object. The second object may not be null.
      Since:
      3.0.0-incubating
    • without

      public static final Contains without
      The first object is not within the Collection provided in the second object. The second object may not be null.
      Since:
      3.0.0-incubating
  • Method Details

    • values

      public static Contains[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static Contains valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • test

      public abstract boolean test(Object first, Collection second)
      Specified by:
      test in interface BiPredicate<Object,Collection>