public enum InterestCalcMethod extends java.lang.Enum<InterestCalcMethod>
| Enum Constant and Description |
|---|
FIRST_INTEREST_TO_SETTLEMENT |
ISSUE_TO_SETTLEMENT |
| Modifier and Type | Method and Description |
|---|---|
static InterestCalcMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InterestCalcMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InterestCalcMethod FIRST_INTEREST_TO_SETTLEMENT
public static final InterestCalcMethod ISSUE_TO_SETTLEMENT
public static InterestCalcMethod 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 nullpublic static InterestCalcMethod[] values()
for (InterestCalcMethod c : InterestCalcMethod.values()) System.out.println(c);
Copyright © 2017, 2025, Oracle and/or its affiliates. All rights reserved.