Enum Class AmazonDomain

java.lang.Object
java.lang.Enum<AmazonDomain>
io.micronaut.aws.alexa.ssml.AmazonDomain
All Implemented Interfaces:
Serializable, Comparable<AmazonDomain>, Constable

public enum AmazonDomain extends Enum<AmazonDomain>
The name of the speaking style to apply to the speech.
See Also:
  • Enum Constant Details

    • MUSIC

      public static final AmazonDomain MUSIC
      Style the speech for talking about music, video, or other multi-media content (available in English (US)).
    • NEWS

      public static final AmazonDomain NEWS
      Style the speech similar to what you hear when listening to the news on the radio or television (available in English (US) and English (AU)).
  • Method Details

    • values

      public static AmazonDomain[] 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

      public static AmazonDomain valueOf(String name)
      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 name
      NullPointerException - if the argument is null
    • toString

      public String toString()
      Overrides:
      toString in class Enum<AmazonDomain>