Enum Currency

java.lang.Object
java.lang.Enum<Currency>
com.labs64.netlicensing.domain.vo.Currency
All Implemented Interfaces:
Serializable, Comparable<Currency>, java.lang.constant.Constable

public enum Currency extends Enum<Currency>
NetLicensing supported currencies.
  • Enum Constant Details

    • NONE

      public static final Currency NONE
    • EUR

      public static final Currency EUR
    • USD

      public static final Currency USD
  • Method Details

    • values

      public static Currency[] 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 Currency 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
    • value

      public String value()
      Get enum value.
      Returns:
      enum value
    • toString

      public String toString()
      Overrides:
      toString in class Enum<Currency>
    • parseValue

      public static Currency parseValue(String value)
      Parse currency value to Currency enum.
      Parameters:
      value - currency value
      Returns:
      Currency enum object or throws IllegalArgumentException if no corresponding Currency enum object found
    • parseValueSafe

      public static Currency parseValueSafe(String value)
      Parse currency value to Currency enum, nothrow version.
      Parameters:
      value - licenseType value as string
      Returns:
      Currency enum object or null if argument doesn't match any of the enum values