public static enum Member.MemberStatus extends Enum<Member.MemberStatus>
Enum Constant and Description |
---|
ACCEPTED
Accept member status on image to see details of image.
|
PENDING
Indicates to owner that image has not been updated.
|
REJECTED
Functionally the same as pending, but indicates awareness of the
member request and specifically denies it.
|
UNKNOWN
ImageStatus is not one of the reccognized statuses
|
Modifier and Type | Method and Description |
---|---|
static Member.MemberStatus |
forValue(String value) |
String |
value() |
static Member.MemberStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Member.MemberStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Member.MemberStatus PENDING
public static final Member.MemberStatus ACCEPTED
public static final Member.MemberStatus REJECTED
public static final Member.MemberStatus UNKNOWN
public static Member.MemberStatus[] values()
for (Member.MemberStatus c : Member.MemberStatus.values()) System.out.println(c);
public static Member.MemberStatus valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static Member.MemberStatus forValue(String value)
public String value()
Copyright © 2017. All rights reserved.