public enum FieldUserSelectionMode extends java.lang.Enum<FieldUserSelectionMode>
| Enum Constant and Description |
|---|
NONE |
PEOPLE |
PEOPLE_AND_GROUPS |
| Modifier and Type | Method and Description |
|---|---|
static FieldUserSelectionMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FieldUserSelectionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FieldUserSelectionMode NONE
public static final FieldUserSelectionMode PEOPLE
public static final FieldUserSelectionMode PEOPLE_AND_GROUPS
public static FieldUserSelectionMode 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 nullpublic static FieldUserSelectionMode[] values()
for (FieldUserSelectionMode c : FieldUserSelectionMode.values()) System.out.println(c);