com.usebutton.sdk.purchasepath.CardList |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Appends a card to the end of the current list of cards in the card system.
| |||||||||||
Returns the card in the current card system that matches the given key.
| |||||||||||
The list of cards currently added to the card system, in the order they can
be displayed to the user.
| |||||||||||
Inserts a card into the current list of cards in the card system at a specific index.
| |||||||||||
Removes all cards in the current card system.
| |||||||||||
Removes the card in the current card system that matches the given key.
| |||||||||||
Replaces the card in the current card system that matches the given key with a new card.
| |||||||||||
Sets the cards to be maintained by the card list.
|
Appends a card to the end of the current list of cards in the card system.
card | The card to be added. |
---|
Returns the card in the current card system that matches the given key. Keys are meant to be unique. If multiple cards match the given key, the first in the list that matches will be returned.
key | The key of the card to be returned. |
---|
The list of cards currently added to the card system, in the order they can be displayed to the user.
Inserts a card into the current list of cards in the card system at a specific index.
card | The card to be added. |
---|---|
index | The location in the current list of cards to insert the card. |
Removes all cards in the current card system.
Removes the card in the current card system that matches the given key. Keys are meant to be unique. If multiple cards match the given key, the first in the list that matches will be removed.
key | The key of the card to be removed. |
---|
Replaces the card in the current card system that matches the given key with a new card. Keys are meant to be unique. If multiple cards match the given key, the first in the list that matches will be replaced. If no cards match, no replacement will occur.
key | The key of the card to be replaced. |
---|
Sets the cards to be maintained by the card list.
cards | The array of cards. |
---|