Enum Class Text

java.lang.Object
java.lang.Enum<Text>
org.umlg.sqlg.predicate.Text
All Implemented Interfaces:
Serializable, Comparable<Text>, Constable, BiPredicate<String,String>, org.apache.tinkerpop.gremlin.process.traversal.PBiPredicate<String,String>

public enum Text extends Enum<Text> implements org.apache.tinkerpop.gremlin.process.traversal.PBiPredicate<String,String>
Created by pieter on 2015/08/12.
  • Enum Constant Details

    • contains

      public static final Text contains
    • ncontains

      public static final Text ncontains
    • containsCIS

      public static final Text containsCIS
    • ncontainsCIS

      public static final Text ncontainsCIS
    • startsWith

      public static final Text startsWith
    • nstartsWith

      public static final Text nstartsWith
    • endsWith

      public static final Text endsWith
    • nendsWith

      public static final Text nendsWith
  • Method Details

    • values

      public static Text[] 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 Text 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
    • contains

      public static org.apache.tinkerpop.gremlin.process.traversal.P<String> contains(String value)
    • ncontains

      public static org.apache.tinkerpop.gremlin.process.traversal.P<String> ncontains(String value)
    • containsCIS

      public static org.apache.tinkerpop.gremlin.process.traversal.P<String> containsCIS(String value)
    • ncontainsCIS

      public static org.apache.tinkerpop.gremlin.process.traversal.P<String> ncontainsCIS(String value)
    • startsWith

      public static org.apache.tinkerpop.gremlin.process.traversal.P<String> startsWith(String value)
    • nstartsWith

      public static org.apache.tinkerpop.gremlin.process.traversal.P<String> nstartsWith(String value)
    • endsWith

      public static org.apache.tinkerpop.gremlin.process.traversal.P<String> endsWith(String value)
    • nendsWith

      public static org.apache.tinkerpop.gremlin.process.traversal.P<String> nendsWith(String value)