Class NodePatternFeatures

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<NodePatternFeatures>

    public class NodePatternFeatures
    extends java.lang.Object
    implements java.io.Serializable, java.lang.Comparable<NodePatternFeatures>
    Node patterns
    See Also:
    Serialized Form
    • Field Detail

      • TYPE_

        public static final Name TYPE_
      • MULTIPLE_LABELS

        public static final Name MULTIPLE_LABELS
      • PARAMETER

        public static final Name PARAMETER
      • PROPERTY_MAP

        public static final Name PROPERTY_MAP
      • VARIABLE_NODE

        public static final Name VARIABLE_NODE
      • WILDCARD_LABEL

        public static final Name WILDCARD_LABEL
      • multipleLabels

        public final java.lang.Boolean multipleLabels
        Specifying multiple labels in a node pattern
      • parameter

        public final java.lang.Boolean parameter
        Specifying a parameter as part of a node pattern
      • propertyMap

        public final java.lang.Boolean propertyMap
        Specifying a key/value map of properties in a node pattern
      • variableNode

        public final java.lang.Boolean variableNode
        Binding a variable to a node in a node pattern (note: included by most if not all implementations).
      • wildcardLabel

        public final java.lang.Boolean wildcardLabel
        Omitting labels from a node pattern
    • Constructor Detail

      • NodePatternFeatures

        public NodePatternFeatures​(java.lang.Boolean multipleLabels,
                                   java.lang.Boolean parameter,
                                   java.lang.Boolean propertyMap,
                                   java.lang.Boolean variableNode,
                                   java.lang.Boolean wildcardLabel)
    • Method Detail

      • equals

        public boolean equals​(java.lang.Object other)
        Overrides:
        equals in class java.lang.Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class java.lang.Object
      • withMultipleLabels

        public NodePatternFeatures withMultipleLabels​(java.lang.Boolean multipleLabels)
      • withPropertyMap

        public NodePatternFeatures withPropertyMap​(java.lang.Boolean propertyMap)
      • withVariableNode

        public NodePatternFeatures withVariableNode​(java.lang.Boolean variableNode)
      • withWildcardLabel

        public NodePatternFeatures withWildcardLabel​(java.lang.Boolean wildcardLabel)