Enum Class LoanFeePaymentType

java.lang.Object
java.lang.Enum<LoanFeePaymentType>
tech.corefinance.product.common.enums.LoanFeePaymentType
All Implemented Interfaces:
Serializable, Comparable<LoanFeePaymentType>, Constable

public enum LoanFeePaymentType extends Enum<LoanFeePaymentType>
  • Enum Constant Details

    • FLAT

      public static final LoanFeePaymentType FLAT
    • LOAN_AMOUNT_PERCENTAGE

      public static final LoanFeePaymentType LOAN_AMOUNT_PERCENTAGE
    • REPAYMENT_PRINCIPAL_AMOUNT_PERCENTAGE

      public static final LoanFeePaymentType REPAYMENT_PRINCIPAL_AMOUNT_PERCENTAGE
    • FLAT_NUMBER_OF_INSTALLMENTS

      public static final LoanFeePaymentType FLAT_NUMBER_OF_INSTALLMENTS
    • LOAN_AMOUNT_PERCENTAGE_NUMBER_OF_INSTALLMENTS

      public static final LoanFeePaymentType LOAN_AMOUNT_PERCENTAGE_NUMBER_OF_INSTALLMENTS
  • Method Details

    • values

      public static LoanFeePaymentType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LoanFeePaymentType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null