Enum Class LicenseFeature

java.lang.Object
java.lang.Enum<LicenseFeature>
net.idrnd.voicesdk.core.LicenseFeature
All Implemented Interfaces:
Serializable, Comparable<LicenseFeature>, Constable

public enum LicenseFeature extends Enum<LicenseFeature>
VoiceSDK licensed features.
  • Enum Constant Details

    • CORE

      public static final LicenseFeature CORE
      Core functionality.
    • VERIFICATION

      public static final LicenseFeature VERIFICATION
      Voice verification.
    • LIVENESS_PRESENTATION_ATTACK_DETECTION

      public static final LicenseFeature LIVENESS_PRESENTATION_ATTACK_DETECTION
      Voice liveness (presentation/replay attack detection).
    • LIVENESS_VOICE_CLONES_DETECTION

      public static final LicenseFeature LIVENESS_VOICE_CLONES_DETECTION
      Voice liveness (voice clones detection).
    • QUALITY_CHECKING

      public static final LicenseFeature QUALITY_CHECKING
      Quality checking functionality (SNR, speech length etc.).
  • Method Details

    • values

      public static LicenseFeature[] 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 LicenseFeature 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
    • getCode

      public int getCode()
    • fromCode

      public static LicenseFeature fromCode(int code)