public enum GroupEffectMode extends Enum<GroupEffectMode>
| Enum Constant and Description |
|---|
ADD_IF_GROUP_EXISTS
Identity will be added to the target group only if the group exists.
|
CREATE_GROUP_IF_MISSING
If a target group is missing then it will be created first, then the identity is added.
|
REQUIRE_EXISTING_GROUP
If the target group is missing translation will fail.
|
| Modifier and Type | Method and Description |
|---|---|
static GroupEffectMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GroupEffectMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupEffectMode REQUIRE_EXISTING_GROUP
public static final GroupEffectMode ADD_IF_GROUP_EXISTS
public static final GroupEffectMode CREATE_GROUP_IF_MISSING
public static GroupEffectMode[] values()
for (GroupEffectMode c : GroupEffectMode.values()) System.out.println(c);
public static GroupEffectMode 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 © 2018 Unity. All rights reserved.