Pane
public
final
class
Pane
extends Object
java.lang.Object | |
↳ | androidx.car.app.model.Pane |
Represents a list of rows used for displaying informational content and a set of Action
s
that users can perform based on such content.
Summary
Nested classes | |
---|---|
class |
Pane.Builder
A builder of |
Public methods | |
---|---|
boolean
|
equals(Object other)
|
List<Action>
|
getActions()
Returns the list of |
List<Row>
|
getRows()
|
int
|
hashCode()
|
boolean
|
isLoading()
Returns whether the pane is in a loading state. |
String
|
toString()
|
Inherited methods | |
---|---|
Public methods
equals
public boolean equals (Object other)
Parameters | |
---|---|
other |
Object |
Returns | |
---|---|
boolean |
getActions
public List<Action> getActions ()
Returns the list of Action
s displayed alongside the Row
s in this pane.
Returns | |
---|---|
List<Action> |
getRows
public List<Row> getRows ()
Returns the list of Row
objects that make up the Pane
.
Returns | |
---|---|
List<Row> |
hashCode
public int hashCode ()
Returns | |
---|---|
int |
isLoading
public boolean isLoading ()
Returns whether the pane is in a loading state.
Returns | |
---|---|
boolean |
See also:
toString
public String toString ()
Returns | |
---|---|
String |
Content and code samples on this page are subject to the licenses described in the Content License. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2021-02-24 UTC.