Package com.opencloud.slee.profile
Enum ProfileDataCollection.Profile.Action
- java.lang.Object
-
- java.lang.Enum<ProfileDataCollection.Profile.Action>
-
- com.opencloud.slee.profile.ProfileDataCollection.Profile.Action
-
- All Implemented Interfaces:
Serializable
,Comparable<ProfileDataCollection.Profile.Action>
- Enclosing class:
- ProfileDataCollection.Profile
public static enum ProfileDataCollection.Profile.Action extends Enum<ProfileDataCollection.Profile.Action>
Management actions that can be performed with a
ProfileDataCollection.Profile
object.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
CREATE
public static final ProfileDataCollection.Profile.Action CREATE
Profile import action representing the CREATE action.
-
REPLACE
public static final ProfileDataCollection.Profile.Action REPLACE
Profile import action representing the REPLACE action.
-
REMOVE
public static final ProfileDataCollection.Profile.Action REMOVE
Profile import action representing the REMOVE action.
-
-
Method Detail
-
values
public static ProfileDataCollection.Profile.Action[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ProfileDataCollection.Profile.Action c : ProfileDataCollection.Profile.Action.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProfileDataCollection.Profile.Action valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-