Enum LicenseType

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

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

    • FEATURE

      public static final LicenseType FEATURE
      licenseType: feature.
    • TIMEVOLUME

      public static final LicenseType TIMEVOLUME
      licenseType: TimeVolume.
    • FLOATING

      public static final LicenseType FLOATING
      licenseType: TimeVolume.
    • QUANTITY

      public static final LicenseType QUANTITY
      licenseType: Quantity.
  • Method Details

    • values

      public static LicenseType[] 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 LicenseType 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<LicenseType>
    • parseValue

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

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