public static enum ProfileDataCollection.Profile.Action extends Enum<ProfileDataCollection.Profile.Action>
Management actions that can be performed with a ProfileDataCollection.Profile
object.
Enum Constant and Description |
---|
CREATE
Profile import action representing the CREATE action.
|
REMOVE
Profile import action representing the REMOVE action.
|
REPLACE
Profile import action representing the REPLACE action.
|
Modifier and Type | Method and Description |
---|---|
static ProfileDataCollection.Profile.Action |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProfileDataCollection.Profile.Action[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileDataCollection.Profile.Action CREATE
Profile import action representing the CREATE action.
public static final ProfileDataCollection.Profile.Action REPLACE
Profile import action representing the REPLACE action.
public static final ProfileDataCollection.Profile.Action REMOVE
Profile import action representing the REMOVE action.
public static ProfileDataCollection.Profile.Action[] values()
for (ProfileDataCollection.Profile.Action c : ProfileDataCollection.Profile.Action.values()) System.out.println(c);
public static ProfileDataCollection.Profile.Action 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 null