Class NodePatternFeatures

  • All Implemented Interfaces:
    java.io.Serializable

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

      • TYPE_NAME

        public static final Name TYPE_NAME
      • FIELD_NAME_MULTIPLE_LABELS

        public static final Name FIELD_NAME_MULTIPLE_LABELS
      • FIELD_NAME_PARAMETER

        public static final Name FIELD_NAME_PARAMETER
      • FIELD_NAME_PROPERTY_MAP

        public static final Name FIELD_NAME_PROPERTY_MAP
      • FIELD_NAME_VARIABLE_NODE

        public static final Name FIELD_NAME_VARIABLE_NODE
      • FIELD_NAME_WILDCARD_LABEL

        public static final Name FIELD_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)