ListItem
Type name: ListItem
Extends Intangible
Name |
Type |
Description |
item |
Thing |
An entity represented by an entry in a list (e.g. an 'artist' in a list of 'artists')’. |
nextItem |
ListItem |
A link to the ListItem that follows the current one. |
position |
Integer or Text |
The position of an item in a series or sequence of items. |
previousItem |
ListItem |
A link to the ListItem that preceeds the current one. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-03 UTC.
[null,null,["Last updated 2024-09-03 UTC."],[[["`ListItem` is a type that represents an entry within a list and extends the `Intangible` type."],["It includes properties to define the item itself (`item`), its position in the list (`position`), and links to the next (`nextItem`) and previous (`previousItem`) items in the sequence."]]],["The `ListItem` type, extending `Intangible`, represents an entry in a list. Key properties include `item`, which is the entity in the list; `nextItem` and `previousItem`, which link to the next and preceding list items respectively; and `position`, which indicates the item's place in the sequence. The position can be an integer or text. This defines the structure of an item and its relational placement within a list.\n"]]