Uses of Class
com.atlassian.gadgets.dashboard.DashboardState.ColumnIndex

Packages that use DashboardState.ColumnIndex
com.atlassian.gadgets.dashboard This package contains the main APIs for interacting with dashboards and gadgets. 
 

Uses of DashboardState.ColumnIndex in com.atlassian.gadgets.dashboard
 

Methods in com.atlassian.gadgets.dashboard that return DashboardState.ColumnIndex
static DashboardState.ColumnIndex DashboardState.ColumnIndex.from(int index)
          Returns the column index as an instance of ColumnIndex.
 DashboardState.ColumnIndex DashboardState.ColumnIndex.next()
          Returns the next column index after this one if there is one, equivalent to doing i+1 when the index is an int.
static DashboardState.ColumnIndex DashboardState.ColumnIndex.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static DashboardState.ColumnIndex[] DashboardState.ColumnIndex.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.atlassian.gadgets.dashboard that return types with arguments of type DashboardState.ColumnIndex
 Iterable<DashboardState.ColumnIndex> Layout.getColumnRange()
          Return an immutable Iterable over the ColumnIndexes that exist in this layout.
static Iterable<DashboardState.ColumnIndex> DashboardState.ColumnIndex.range(DashboardState.ColumnIndex start, DashboardState.ColumnIndex end)
          Returns an immutable Iterable over ColumnIndexes starting from start and ending with end, inclusive.
 

Methods in com.atlassian.gadgets.dashboard with parameters of type DashboardState.ColumnIndex
 DashboardState DashboardState.appendGadgetToColumn(GadgetState gadgetState, DashboardState.ColumnIndex index)
          Returns a new DashboardState built with the same data as this, except that the column with index index has had a new gadget added to its bottom
 boolean Layout.contains(DashboardState.ColumnIndex column)
          Checks if the column exists in this layout.
 Iterable<GadgetState> DashboardState.getGadgetsInColumn(DashboardState.ColumnIndex column)
          Returns an immutable Iterable of the GadgetStates in the given column.
 boolean Layout.isColumnSizingFair(DashboardState.ColumnIndex column)
          Checks if the column shares the space with the other columns on the screen equally or if it is greedy and should take up more space.
 DashboardState DashboardState.prependGadgetToColumn(GadgetState gadgetState, DashboardState.ColumnIndex index)
          Returns a new DashboardState built with the same data as this, except that the column with index index has had a new gadget added to its top
static Iterable<DashboardState.ColumnIndex> DashboardState.ColumnIndex.range(DashboardState.ColumnIndex start, DashboardState.ColumnIndex end)
          Returns an immutable Iterable over ColumnIndexes starting from start and ending with end, inclusive.
 



Copyright © 2013 Atlassian. All Rights Reserved.