| Package | org.granite.validation |
| Interface | public interface INode |
See also
| Property | Defined by | ||
|---|---|---|---|
| isInIterable : Boolean [read-only]
Is this node representing a collection or map element?
| INode | ||
| keyOrIndex : * [read-only]
The index (collection) or the key (map) of this node, if
it represents a collection or map element.
| INode | ||
| name : String [read-only]
The property name the node represents (may be null).
| INode | ||
| Method | Defined by | ||
|---|---|---|---|
|
toString():String
Returns a string representation of this node.
| INode | ||
| isInIterable | property |
isInIterable:Boolean [read-only]Is this node representing a collection or map element?
Implementation public function get isInIterable():Boolean
| keyOrIndex | property |
keyOrIndex:* [read-only]The index (collection) or the key (map) of this node, if it represents a collection or map element. Null otherwise.
Implementation public function get keyOrIndex():*
| name | property |
name:String [read-only]The property name the node represents (may be null).
Implementation public function get name():String
| toString | () | method |
public function toString():StringReturns a string representation of this node.
ReturnsString — a string representation of this node.
|