Package org.isda.cdm

Enum SimmExceptionEnum

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

    public enum SimmExceptionEnum
    extends java.lang.Enum<SimmExceptionEnum>
    The enumerated values to specify the SIMM normalized exceptions applicable to the ISDA 2018 Standard CSA. ISDA 2016 Credit Support Annex for Initial Margin, paragraph 13, General Principles. | ISDA 2018 Credit Support Annex for Initial Margin, paragraph 13, General Principles.
    Version:
    2.5.4
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      APPLICABLE
      The ISDA Standard Initial Margin Model exception is applicable.
      FALL_BACK_TO_MANDATORY_METHOD
      The ISDA Standard Initial Margin Model exception is applicable as a Fallback to Mandatory Method.
      MANDATORY_METHOD
      The ISDA Standard Initial Margin Model exception is applicable as a Mandatory Method.
      NOT_APPLICABLE
      The ISDA Standard Initial Margin Model exception is not applicable.
    • Method Summary

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

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

        getClass, notify, notifyAll, wait, wait, wait
    • Enum Constant Detail

      • APPLICABLE

        public static final SimmExceptionEnum APPLICABLE
        The ISDA Standard Initial Margin Model exception is applicable. ISDA 2016 Credit Support Annex for Initial Margin, paragraph 13, General Principles. | ISDA 2018 Credit Support Annex for Initial Margin, paragraph 13, General Principles.
      • NOT_APPLICABLE

        public static final SimmExceptionEnum NOT_APPLICABLE
        The ISDA Standard Initial Margin Model exception is not applicable. ISDA 2016 Credit Support Annex for Initial Margin, paragraph 13, General Principles. | ISDA 2018 Credit Support Annex for Initial Margin, paragraph 13, General Principles.
      • FALL_BACK_TO_MANDATORY_METHOD

        public static final SimmExceptionEnum FALL_BACK_TO_MANDATORY_METHOD
        The ISDA Standard Initial Margin Model exception is applicable as a Fallback to Mandatory Method. ISDA 2018 Credit Support Annex for Initial Margin, paragraph 13, General Principles.
      • MANDATORY_METHOD

        public static final SimmExceptionEnum MANDATORY_METHOD
        The ISDA Standard Initial Margin Model exception is applicable as a Mandatory Method. This means that the method applicable is to determine the Margin Amount (IM) by reference to the methodology prescribed pursuant to the applicable regulatory regime which uses a standardized initial margin schedule (such that prescribed percentages are applied to notional amounts before being adjusted, including by a net-to-gross ratio (NGR)). ISDA 2018 Credit Support Annex for Initial Margin, paragraph 13, General Principles.
    • Method Detail

      • values

        public static SimmExceptionEnum[] 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 (SimmExceptionEnum c : SimmExceptionEnum.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static SimmExceptionEnum 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
      • toString

        public java.lang.String toString()
        Overrides:
        toString in class java.lang.Enum<SimmExceptionEnum>