Enum Class AvailablePluginsRequest.TargetGroup

java.lang.Object
java.lang.Enum<AvailablePluginsRequest.TargetGroup>
velox.api.layer1.messages.plugin.AvailablePluginsRequest.TargetGroup
All Implemented Interfaces:
Serializable, Comparable<AvailablePluginsRequest.TargetGroup>, Constable
Enclosing class:
AvailablePluginsRequest

public static enum AvailablePluginsRequest.TargetGroup extends Enum<AvailablePluginsRequest.TargetGroup>
Defines which plugins are included in the result.
  • Enum Constant Details

    • COMPATIBLE_FOR_DOWNLOAD

      public static final AvailablePluginsRequest.TargetGroup COMPATIBLE_FOR_DOWNLOAD
      The latest compatible version of each plugin that is not currently active. License availability is not checked.
    • COMPATIBLE_FOR_DOWNLOAD_AND_ALLOWED_BY_LICENSE

      public static final AvailablePluginsRequest.TargetGroup COMPATIBLE_FOR_DOWNLOAD_AND_ALLOWED_BY_LICENSE
      The latest compatible version of each plugin that is not currently active and is allowed by the current license.
    • COMPATIBLE_ALL

      public static final AvailablePluginsRequest.TargetGroup COMPATIBLE_ALL
      The latest compatible version of each plugin, including currently active plugins. License availability is not checked.
    • COMPATIBLE_AND_ALLOWED_BY_LICENSE

      public static final AvailablePluginsRequest.TargetGroup COMPATIBLE_AND_ALLOWED_BY_LICENSE
      The latest compatible version of each plugin allowed by the current license, including currently active plugins.
    • ACTIVE_ALL

      public static final AvailablePluginsRequest.TargetGroup ACTIVE_ALL
      All currently active plugins. AvailablePluginsRequest.CacheMode has no effect for this target group.
  • Method Details

    • values

      public static AvailablePluginsRequest.TargetGroup[] 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 AvailablePluginsRequest.TargetGroup 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