Package org.isda.cdm
Enum CreditRatingAgencyEnum
- java.lang.Object
-
- java.lang.Enum<CreditRatingAgencyEnum>
-
- org.isda.cdm.CreditRatingAgencyEnum
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<CreditRatingAgencyEnum>
public enum CreditRatingAgencyEnum extends java.lang.Enum<CreditRatingAgencyEnum>
The enumerated values to specify the rating agencies.- Version:
- 2.5.4
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AM_BEST
A.CBRS
Canadian Bond Rating ServiceDBRS
Dominion Bond Rating ServiceFITCH
FitchJAPAN_AGENCY
Japan Credit Rating Agency, Ltd.MOODYS
Moody'sRATING_AND_INVESTMENT_INFORMATION
Rating And Investment Information, Inc.STANDARD_AND_POORS
Standard And Poor's
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
toString()
static CreditRatingAgencyEnum
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static CreditRatingAgencyEnum[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AM_BEST
@RosettaSynonym(value="AMBest", source="FpML_5_10") public static final CreditRatingAgencyEnum AM_BEST
A. M. Best
-
CBRS
@RosettaSynonym(value="CBRS", source="FpML_5_10") public static final CreditRatingAgencyEnum CBRS
Canadian Bond Rating Service
-
DBRS
@RosettaSynonym(value="DBRS",source="FpML_5_10") @RosettaSynonym(value="DBRS",source="AcadiaSoft_AM_1_0") public static final CreditRatingAgencyEnum DBRS
Dominion Bond Rating Service
-
FITCH
@RosettaSynonym(value="Fitch",source="FpML_5_10") @RosettaSynonym(value="FITCH",source="AcadiaSoft_AM_1_0") public static final CreditRatingAgencyEnum FITCH
Fitch
-
JAPAN_AGENCY
@RosettaSynonym(value="Japanagency", source="FpML_5_10") public static final CreditRatingAgencyEnum JAPAN_AGENCY
Japan Credit Rating Agency, Ltd.
-
MOODYS
@RosettaSynonym(value="Moodys",source="FpML_5_10") @RosettaSynonym(value="MOODYS",source="AcadiaSoft_AM_1_0") public static final CreditRatingAgencyEnum MOODYS
Moody's
-
RATING_AND_INVESTMENT_INFORMATION
@RosettaSynonym(value="RatingAndInvestmentInformation", source="FpML_5_10") public static final CreditRatingAgencyEnum RATING_AND_INVESTMENT_INFORMATION
Rating And Investment Information, Inc.
-
STANDARD_AND_POORS
@RosettaSynonym(value="StandardAndPoors",source="FpML_5_10") @RosettaSynonym(value="STANDARD_POORS",source="AcadiaSoft_AM_1_0") public static final CreditRatingAgencyEnum STANDARD_AND_POORS
Standard And Poor's
-
-
Method Detail
-
values
public static CreditRatingAgencyEnum[] 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 (CreditRatingAgencyEnum c : CreditRatingAgencyEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CreditRatingAgencyEnum 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 namejava.lang.NullPointerException
- if the argument is null
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Enum<CreditRatingAgencyEnum>
-
-