public static enum Publish.RatingCurveType extends Enum<Publish.RatingCurveType>
| Enum Constant and Description |
|---|
DescriptiveEquation |
LinearRegressionModel |
LinearTable |
LogarithmicTable |
StandardEquation |
| Modifier and Type | Method and Description |
|---|---|
static Publish.RatingCurveType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Publish.RatingCurveType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Publish.RatingCurveType LinearTable
public static final Publish.RatingCurveType LogarithmicTable
public static final Publish.RatingCurveType StandardEquation
public static final Publish.RatingCurveType DescriptiveEquation
public static final Publish.RatingCurveType LinearRegressionModel
public static Publish.RatingCurveType[] values()
for (Publish.RatingCurveType c : Publish.RatingCurveType.values()) System.out.println(c);
public static Publish.RatingCurveType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2022. All rights reserved.