public static enum ProfileManager.PROFILE_FLAG extends Enum<ProfileManager.PROFILE_FLAG>
ProfileManager.processProfile(String, PROFILE_FLAG, Document)
and ProfileManager.processProfile(String, PROFILE_FLAG, String[])
}is enumerated here.
Example Usage: PROFILE_FLAG.SET
Enum Constant and Description |
---|
CHECK_COMPATIBILITY
Validates the characteristic feature version in the existing profile if extraData is null, otherwise extra data profiles characteristic feature version.
|
GET
Retrieves a profile from internal repository.
|
RESET
Resets the modified profile data available on the application cache to default profile created during the application development.
|
SET
Creates a profile with given XML data.
|
Modifier and Type | Method and Description |
---|---|
static ProfileManager.PROFILE_FLAG |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ProfileManager.PROFILE_FLAG[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProfileManager.PROFILE_FLAG SET
public static final ProfileManager.PROFILE_FLAG GET
public static final ProfileManager.PROFILE_FLAG RESET
public static final ProfileManager.PROFILE_FLAG CHECK_COMPATIBILITY
public static ProfileManager.PROFILE_FLAG[] values()
for (ProfileManager.PROFILE_FLAG c : ProfileManager.PROFILE_FLAG.values()) System.out.println(c);
public static ProfileManager.PROFILE_FLAG 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