public enum ShareState extends java.lang.Enum<ShareState>
| Enum Constant and Description |
|---|
FORMER_MEMBER
The user has left or been kicked out of the share, and cannot currently access it, or the
group has been removed
|
INVITED
The user has not yet accepted an invitation to the share, or the group has been invited to
the share
|
MEMBER
The user has accepted an invitation to the share, and is currently able to access it.
|
| Modifier and Type | Method and Description |
|---|---|
static ShareState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ShareState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShareState INVITED
public static final ShareState MEMBER
public static final ShareState FORMER_MEMBER
public static ShareState[] values()
for (ShareState c : ShareState.values()) System.out.println(c);
public static ShareState 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