@@ -61,7 +61,7 @@ public interface TreeNode
61
61
* and null values from JSON.
62
62
*<p>
63
63
* Note: one and only one of methods {@link #isValueNode},
64
- * {@link #isContainerNode } and {@link #isMissingNode} ever
64
+ * {@link #isContainer() } and {@link #isMissingNode} ever
65
65
* returns true for any given node.
66
66
*
67
67
* @return True if this node is considered a value node; something that
@@ -73,20 +73,20 @@ public interface TreeNode
73
73
* Method that returns true for container nodes: Arrays and Objects.
74
74
*<p>
75
75
* Note: one and only one of methods {@link #isValueNode},
76
- * {@link #isContainerNode } and {@link #isMissingNode} ever
76
+ * {@link #isContainer() } and {@link #isMissingNode} ever
77
77
* returns true for any given node.
78
78
*
79
79
* @return {@code True} for Array and Object nodes, {@code false} otherwise
80
80
*/
81
- boolean isContainerNode ();
81
+ boolean isContainer ();
82
82
83
83
/**
84
84
* Method that returns true for "virtual" nodes which represent
85
85
* missing entries constructed by path accessor methods when
86
86
* there is no actual node matching given criteria.
87
87
*<p>
88
88
* Note: one and only one of methods {@link #isValueNode},
89
- * {@link #isContainerNode } and {@link #isMissingNode} ever
89
+ * {@link #isContainer() } and {@link #isMissingNode} ever
90
90
* returns true for any given node.
91
91
*
92
92
* @return {@code True} if this node represents a "missing" node
@@ -96,7 +96,7 @@ public interface TreeNode
96
96
/**
97
97
* Method that returns true if this node is an Array node, false
98
98
* otherwise.
99
- * Note that if true is returned, {@link #isContainerNode }
99
+ * Note that if true is returned, {@link #isContainer() }
100
100
* must also return true.
101
101
*
102
102
* @return {@code True} for Array nodes, {@code false} for everything else
@@ -106,7 +106,7 @@ public interface TreeNode
106
106
/**
107
107
* Method that returns true if this node is an Object node, false
108
108
* otherwise.
109
- * Note that if true is returned, {@link #isContainerNode }
109
+ * Note that if true is returned, {@link #isContainer() }
110
110
* must also return true.
111
111
*
112
112
* @return {@code True} for Object nodes, {@code false} for everything else
0 commit comments