Package org.isda.cdm

Enum InterestAdjustmentPeriodicityEnum

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

    public enum InterestAdjustmentPeriodicityEnum
    extends java.lang.Enum<InterestAdjustmentPeriodicityEnum>
    The enumerated values to specify the interest adjustment periodicity election through standard language. ISDA 2016 Japanese Law Credit Support Annex for Initial Margin, paragraph 13, General Principles, (n)(ii).
    Version:
    2.5.4
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      EACH_DAY
      The interest adjustment takes place each day.
      LAST_LOCAL_BUSINESS_DAY_OF_MONTH
      The interest adjustment takes place on the last local business day of each calendar month
    • Enum Constant Detail

      • LAST_LOCAL_BUSINESS_DAY_OF_MONTH

        @RosettaSynonym(value="last_day",
                        source="ISDA_Create_1_0")
        public static final InterestAdjustmentPeriodicityEnum LAST_LOCAL_BUSINESS_DAY_OF_MONTH
        The interest adjustment takes place on the last local business day of each calendar month
      • EACH_DAY

        @RosettaSynonym(value="each_day",
                        source="ISDA_Create_1_0")
        public static final InterestAdjustmentPeriodicityEnum EACH_DAY
        The interest adjustment takes place each day.
    • Method Detail

      • values

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

        public static InterestAdjustmentPeriodicityEnum 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