public static enum RateComponentType.RateComponentCategory extends java.lang.Enum<RateComponentType.RateComponentCategory>
| Enum Constant and Description |
|---|
intermediate
Represents an intermediate rate component of the tree (neither a root nor a leaf)
|
leaf
Represents the last rate component of the tree
|
root
Represents the first rate component of the tree
|
| Modifier and Type | Method and Description |
|---|---|
static RateComponentType.RateComponentCategory |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RateComponentType.RateComponentCategory[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RateComponentType.RateComponentCategory root
public static final RateComponentType.RateComponentCategory intermediate
public static final RateComponentType.RateComponentCategory leaf
public static RateComponentType.RateComponentCategory[] values()
for (RateComponentType.RateComponentCategory c : RateComponentType.RateComponentCategory.values()) System.out.println(c);
public static RateComponentType.RateComponentCategory valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null