public class DevicesActive extends Object
| Modifier and Type | Field and Description |
|---|---|
protected List<Long> |
android |
protected List<Long> |
ios |
protected List<Long> |
linux |
protected List<Long> |
macos |
protected List<Long> |
other |
protected List<Long> |
total |
protected List<Long> |
windows |
| Constructor and Description |
|---|
DevicesActive(List<Long> windows,
List<Long> macos,
List<Long> linux,
List<Long> ios,
List<Long> android,
List<Long> other,
List<Long> total)
Each of the items is an array of values, one value per day.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj) |
List<Long> |
getAndroid()
Array of number of linked android devices with activity.
|
List<Long> |
getIos()
Array of number of linked ios devices with activity.
|
List<Long> |
getLinux()
Array of number of linked linus (desktop) clients with activity.
|
List<Long> |
getMacos()
Array of number of linked mac (desktop) clients with activity.
|
List<Long> |
getOther()
Array of number of other linked devices (blackberry, windows phone, etc)
with activity.
|
List<Long> |
getTotal()
Array of total number of linked clients with activity.
|
List<Long> |
getWindows()
Array of number of linked windows (desktop) clients with activity.
|
int |
hashCode() |
String |
toString() |
String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
public DevicesActive(List<Long> windows, List<Long> macos, List<Long> linux, List<Long> ios, List<Long> android, List<Long> other, List<Long> total)
windows - Array of number of linked windows (desktop) clients with
activity. Must not contain a null item and not be null.macos - Array of number of linked mac (desktop) clients with
activity. Must not contain a null item and not be null.linux - Array of number of linked linus (desktop) clients with
activity. Must not contain a null item and not be null.ios - Array of number of linked ios devices with activity. Must not
contain a null item and not be null.android - Array of number of linked android devices with activity.
Must not contain a null item and not be null.other - Array of number of other linked devices (blackberry,
windows phone, etc) with activity. Must not contain a null
item and not be null.total - Array of total number of linked clients with activity. Must
not contain a null item and not be null.IllegalArgumentException - If any argument does not meet its
preconditions.public List<Long> getWindows()
null.public List<Long> getMacos()
null.public List<Long> getLinux()
null.public List<Long> getIos()
null.public List<Long> getAndroid()
null.public List<Long> getOther()
null.public List<Long> getTotal()
null.public String toStringMultiline()
The returned String may contain newlines.