public enum ReachabilityGroup extends java.lang.Enum<ReachabilityGroup>
ReachabilityStatus) according to each mentioned user group and publish their status information for in each
iteration.| Enum Constant and Description |
|---|
BOSS
A user group containing all work related supervisors.
|
FAMILY
A user group containing all family related persons.
|
FRIENDS
A user group containing all friends.
|
WORK
A user group containing all work related persons.
|
| Modifier and Type | Method and Description |
|---|---|
static ReachabilityGroup |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReachabilityGroup[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReachabilityGroup WORK
public static final ReachabilityGroup BOSS
public static final ReachabilityGroup FAMILY
public static final ReachabilityGroup FRIENDS
public static ReachabilityGroup[] values()
for (ReachabilityGroup c : ReachabilityGroup.values()) System.out.println(c);
public static ReachabilityGroup valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant
with the specified namejava.lang.NullPointerException - if the argument is null