INNER CODE UNIT · Java
fromId
evrencoskun/TableView · tableview/src/main/java/com/evrencoskun/tableview/ITableView.java:181
static CornerViewLocation fromId(int id) {
for (CornerViewLocation c : values()) {
if (c.id == id) return c;
}
// If enum not found return default of Top Left
return TOP_LEFT;
}
}
CornerViewLocation getCornerViewLocation();
void setCornerViewLocation(CornerViewLocation cornerViewLocation);
int getGravity();
boolean getReverseLayout();
void setReverseLayout(boolean reverseLayout);