public enum SsaiIntegration extends Enum<SsaiIntegration>
Enum Constant and Description |
---|
GOOGLE_DAI
The configuration with this identifier is a
GoogleDaiConfiguration . |
YOSPACE
The configuration with this identifier is a
YoSpaceDescription . |
Modifier and Type | Method and Description |
---|---|
static SsaiIntegration |
from(String ssaiIntegrationId)
Creates a SSAI integration from a textual representation.
|
static SsaiIntegration |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SsaiIntegration[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SsaiIntegration YOSPACE
YoSpaceDescription
.public static final SsaiIntegration GOOGLE_DAI
GoogleDaiConfiguration
.public static SsaiIntegration[] values()
for (SsaiIntegration c : SsaiIntegration.values()) System.out.println(c);
public static SsaiIntegration 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 nullpublic static SsaiIntegration from(String ssaiIntegrationId)
ssaiIntegrationId
- The textual representation of the SSAI integration identifier. (NonNull)