Package org.isda.cdm

Enum ProductIdSourceEnum

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

    public enum ProductIdSourceEnum
    extends java.lang.Enum<ProductIdSourceEnum>
    The enumerated values to specify the product identifier source. FpML doesn't specify a list of values.
    Version:
    2.5.4
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
      CUSIP
      The Committee on Uniform Security Identification Procedures
      FIGI
      The Financial Instrument Global Identifier
      ISIN
      The ISO 6166 product identifier
      RIC
      The Reuters Instrument Code
      SEDOL
      The Stock Exchange Daily Official List, a list of security identifiers used in the United Kingdom and Ireland for clearing purposes.
      SICOVAM
      The identification code issued by the French Société Interprofessionnelle pour la Compensation des Valeurs Mobilières.
      WERTPAPIER
      The German Wertpapierkennnummer securities identification code.
    • Method Summary

      All Methods Static Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.String toString()  
      static ProductIdSourceEnum valueOf​(java.lang.String name)
      Returns the enum constant of this type with the specified name.
      static ProductIdSourceEnum[] 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

      • CUSIP

        public static final ProductIdSourceEnum CUSIP
        The Committee on Uniform Security Identification Procedures
      • SEDOL

        public static final ProductIdSourceEnum SEDOL
        The Stock Exchange Daily Official List, a list of security identifiers used in the United Kingdom and Ireland for clearing purposes.
      • FIGI

        public static final ProductIdSourceEnum FIGI
        The Financial Instrument Global Identifier
      • WERTPAPIER

        public static final ProductIdSourceEnum WERTPAPIER
        The German Wertpapierkennnummer securities identification code. It is composed of six digits or capital letters (excluding I and O), and no check digit.
      • SICOVAM

        public static final ProductIdSourceEnum SICOVAM
        The identification code issued by the French Société Interprofessionnelle pour la Compensation des Valeurs Mobilières.
    • Method Detail

      • values

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

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