public enum AttributeEffectMode extends Enum<AttributeEffectMode>
| Enum Constant and Description |
|---|
CREATE_ONLY
If the local attribute doesn't exist it will be created.
|
CREATE_OR_UPDATE
Local attribute will be created if doesn't exists.
|
UPDATE_ONLY
If a local attribute exists it will be updated.
|
| Modifier and Type | Method and Description |
|---|---|
static AttributeEffectMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AttributeEffectMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AttributeEffectMode CREATE_OR_UPDATE
public static final AttributeEffectMode UPDATE_ONLY
public static final AttributeEffectMode CREATE_ONLY
public static AttributeEffectMode[] values()
for (AttributeEffectMode c : AttributeEffectMode.values()) System.out.println(c);
public static AttributeEffectMode 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.