public static enum AccountDirectory.FillOptions extends java.lang.Enum<AccountDirectory.FillOptions>
Enum Constant and Description |
---|
AVATARS
User profile images.
|
EMAIL
Preferred email address to contact the user at.
|
ID
Numeric account ID, may be deprecated.
|
NAME
Human friendly display name presented in the web interface.
|
SECONDARY_EMAILS
All secondary email addresses of the user.
|
STATUS
The user-settable status of this account (e.g.
|
USERNAME
Unique user identity to login to Gerrit, may be deprecated.
|
Modifier and Type | Method and Description |
---|---|
static AccountDirectory.FillOptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AccountDirectory.FillOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AccountDirectory.FillOptions NAME
public static final AccountDirectory.FillOptions EMAIL
public static final AccountDirectory.FillOptions SECONDARY_EMAILS
public static final AccountDirectory.FillOptions AVATARS
public static final AccountDirectory.FillOptions USERNAME
public static final AccountDirectory.FillOptions ID
public static final AccountDirectory.FillOptions STATUS
public static AccountDirectory.FillOptions[] values()
for (AccountDirectory.FillOptions c : AccountDirectory.FillOptions.values()) System.out.println(c);
public static AccountDirectory.FillOptions 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