Enum CryptoAppIndex

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<CryptoAppIndex>

    public enum CryptoAppIndex
    extends java.lang.Enum<CryptoAppIndex>
    A crypto application defines a set of characteristics for generating one-time passwords and signatures. Such characteristics include the cryptographic algorithm used (AES, DES, etc), the length of the one-time password or the fact that a challenge can be added. When integrating the Orchestration SDK, you can have up to 8 crypto applications.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static CryptoAppIndex valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static CryptoAppIndex[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      • Methods inherited from class java.lang.Enum

        compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • Methods inherited from class java.lang.Object

        getClass, notify, notifyAll, wait, wait, wait
    • Method Detail

      • values

        public static CryptoAppIndex[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (CryptoAppIndex c : CryptoAppIndex.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CryptoAppIndex valueOf​(java.lang.String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null