Enum WalletHealth

java.lang.Object
java.lang.Enum<WalletHealth>
org.knowm.xchange.dto.meta.WalletHealth
All Implemented Interfaces:
Serializable, Comparable<WalletHealth>, java.lang.constant.Constable

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

    • ONLINE

      public static final WalletHealth ONLINE
      You can deposit and withdraw founds from the exchange
    • DEPOSITS_DISABLED

      public static final WalletHealth DEPOSITS_DISABLED
    • WITHDRAWALS_DISABLED

      public static final WalletHealth WITHDRAWALS_DISABLED
    • OFFLINE

      public static final WalletHealth OFFLINE
      You cannot deposit nor withdraw founds from the exchange
    • UNKNOWN

      public static final WalletHealth UNKNOWN
      The exchange does not inform us about the health of this wallet
  • Method Details

    • values

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

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