public enum ReceiverTypes extends Enum<ReceiverTypes>
| Enum Constant and Description |
|---|
EMAIL |
EXECUTOR |
GROUP |
OU_BY_NAME |
OU_BY_SYMBOL |
POSITION_BY_NAME |
POSITION_BY_SYMBOL |
ROLE |
USER |
VAR_EMAIL |
VAR_USER |
| Modifier and Type | Method and Description |
|---|---|
static ReceiverTypes |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReceiverTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReceiverTypes EMAIL
public static final ReceiverTypes USER
public static final ReceiverTypes GROUP
public static final ReceiverTypes ROLE
public static final ReceiverTypes POSITION_BY_NAME
public static final ReceiverTypes POSITION_BY_SYMBOL
public static final ReceiverTypes EXECUTOR
public static final ReceiverTypes OU_BY_NAME
public static final ReceiverTypes OU_BY_SYMBOL
public static final ReceiverTypes VAR_EMAIL
public static final ReceiverTypes VAR_USER
public static ReceiverTypes[] values()
for (ReceiverTypes c : ReceiverTypes.values()) System.out.println(c);
public static ReceiverTypes 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 nullCopyright © 2015 Suncode. All rights reserved.