Enum Class LicenseMode

java.lang.Object
java.lang.Enum<LicenseMode>
com.inductiveautomation.ignition.common.licensing.LicenseMode
All Implemented Interfaces:
Serializable, Comparable<LicenseMode>, Constable

public enum LicenseMode extends Enum<LicenseMode> implements Serializable
  • Enum Constant Details

    • Free

      public static final LicenseMode Free
      The module is a free module
    • Trial

      public static final LicenseMode Trial
      The module is not free and is not activated: is in a temporary trial period.
    • Activated

      public static final LicenseMode Activated
      The module is licensed, possibly with restrictions.
    • Invalid

      public static final LicenseMode Invalid
      The module is not allowed to run under the current license conditions and will be unloaded (faulted)
  • Method Details

    • values

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