Enum BondCurve.Type

  • All Implemented Interfaces:
    Serializable, Comparable<BondCurve.Type>
    Enclosing class:
    BondCurve

    public static enum BondCurve.Type
    extends Enum<BondCurve.Type>
    Possible curve types, where the first term stands for the reference discount curve and the second term stands for the spread curve. Example: "DISCOUNTFACTOR_ZERORATE" means that the "getValue" method of the reference discount curve returns a value expressed as discount factor and the "getValue" method of the spread curve returns a value expressed as zero rate.
    Author:
    Moritz Scherrmann
    • Enum Constant Detail

      • DISCOUNTFACTOR_DISCOUNTFACTOR

        public static final BondCurve.Type DISCOUNTFACTOR_DISCOUNTFACTOR
      • ZERORATE_DISCOUNTFACTOR

        public static final BondCurve.Type ZERORATE_DISCOUNTFACTOR
      • DISCOUNTFACTOR_ZERORATE

        public static final BondCurve.Type DISCOUNTFACTOR_ZERORATE
      • ZERORATE_ZERORATE

        public static final BondCurve.Type ZERORATE_ZERORATE
    • Method Detail

      • values

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

        public static BondCurve.Type valueOf​(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:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null