Enum Class ConfigurationCategory
java.lang.Object
java.lang.Enum<ConfigurationCategory>
dev.getelements.elements.sdk.model.application.ConfigurationCategory
- All Implemented Interfaces:
Serializable
,Comparable<ConfigurationCategory>
,Constable
Represents the platform with which SocialEngine integrates. Each platform
profile is a specific type which houses the necessary information to communicate
with the platform's web services API.
Created by patricktwohig on 7/10/15.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionRepresents an Android application configuration for Google PlayRepresents a Facebook application configurationRepresents the Firebase application configuration type.Represents an iOS application configuration for the Apple iTunes AppStoreRepresents a matchmaking profile.Represents an application profile for PlayStation(tm) Network for PS4 enabled titles.Represents an application profile for PlayStation(tm) Network for Vita enabled titles. -
Method Summary
Modifier and TypeMethodDescriptionClass
<? extends ApplicationConfiguration> Gets the modelClass
which represents theApplicationConfiguration
.static ConfigurationCategory
Returns the enum constant of this class with the specified name.static ConfigurationCategory[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
MATCHMAKING
Represents a matchmaking profile. -
PSN_PS4
Represents an application profile for PlayStation(tm) Network for PS4 enabled titles. -
PSN_VITA
Represents an application profile for PlayStation(tm) Network for Vita enabled titles. -
IOS_APP_STORE
Represents an iOS application configuration for the Apple iTunes AppStore -
ANDROID_GOOGLE_PLAY
Represents an Android application configuration for Google Play -
FACEBOOK
Represents a Facebook application configuration -
FIREBASE
Represents the Firebase application configuration type.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
getModelClass
Gets the modelClass
which represents theApplicationConfiguration
.- Returns:
- the
Class
for the model
-