Enum Class DepositLimitType

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

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

    • MIN_OPENING_AMOUNT

      public static final DepositLimitType MIN_OPENING_AMOUNT
      Minimum opening deposit amount.
    • MIN_ONE_TIME_DEPOSIT

      public static final DepositLimitType MIN_ONE_TIME_DEPOSIT
      Minimum one time deposit amount.
    • MAX_DEPOSIT_AMOUNT

      public static final DepositLimitType MAX_DEPOSIT_AMOUNT
      Maximum deposit amount.
    • MAX_DAILY_DEPOSIT

      public static final DepositLimitType MAX_DAILY_DEPOSIT
      Maximum daily deposit limit.
    • MAX_OPENING_AMOUNT

      public static final DepositLimitType MAX_OPENING_AMOUNT
      Maximum opening deposit amount.
  • Method Details

    • values

      public static DepositLimitType[] 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 DepositLimitType 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