Enum Class License.Level

java.lang.Object
java.lang.Enum<License.Level>
com.seeq.utilities.license.License.Level
All Implemented Interfaces:
Serializable, Comparable<License.Level>, Constable
Enclosing class:
License

public static enum License.Level extends Enum<License.Level>
The level of the license indicates what features the user is "entitled" to.
  • Enum Constant Details

    • Standard

      public static final License.Level Standard
      Customer has paid for this license and will get standard Seeq capabilities.
    • Trial

      public static final License.Level Trial
      Customer has not yet paid us, they are trying out the software.
  • Method Details

    • values

      public static License.Level[] 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 License.Level 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