class RelativePath extends PropertyPath
Constants
SINGULAR_SEPARATOR | Character used for separating between plural and singular of an element. |
Methods
__construct(FormInterface $root, PropertyPath|string $propertyPath) | ||
string | __toString() Returns the string representation of the property path | from PropertyPath |
integer | getLength() Returns the length of the property path, i.e. the number of elements. | from PropertyPath |
PropertyPath | getParent() Returns the parent property path. | from PropertyPath |
PropertyPathIteratorInterface | getIterator() Returns a new iterator for this path | from PropertyPath |
array | getElements() Returns the elements of the property path as array | from PropertyPath |
string | getElement(integer $index) Returns the element at the given index in the property path | from PropertyPath |
Boolean | isProperty(integer $index) Returns whether the element at the given index is a property | from PropertyPath |
Boolean | isIndex(integer $index) Returns whether the element at the given index is an array index | from PropertyPath |
FormInterface | getRoot() |
Details
__construct(FormInterface $root, PropertyPath|string $propertyPath)
string __toString()
Returns the string representation of the property path
integer getLength()
Returns the length of the property path, i.e. the number of elements.
PropertyPath getParent()
Returns the parent property path.
The parent property path is the one that contains the same items as this one except for the last one.
If this property path only contains one item, null is returned.
PropertyPathIteratorInterface getIterator()
Returns a new iterator for this path
array getElements()
Returns the elements of the property path as array
string getElement(integer $index)
Returns the element at the given index in the property path
Boolean isProperty(integer $index)
Returns whether the element at the given index is a property
Boolean isIndex(integer $index)
Returns whether the element at the given index is an array index
Please login to continue.