Package velox.api.layer1.messages.plugin
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAll currently active plugins.The latest compatible version of each plugin, including currently active plugins.The latest compatible version of each plugin allowed by the current license, including currently active plugins.The latest compatible version of each plugin that is not currently active.The latest compatible version of each plugin that is not currently active and is allowed by the current license. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static AvailablePluginsRequest.TargetGroup[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
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_LICENSEThe latest compatible version of each plugin that is not currently active and is allowed by the current license. -
COMPATIBLE_ALL
The latest compatible version of each plugin, including currently active plugins. License availability is not checked. -
COMPATIBLE_AND_ALLOWED_BY_LICENSE
The latest compatible version of each plugin allowed by the current license, including currently active plugins. -
ACTIVE_ALL
All currently active plugins.AvailablePluginsRequest.CacheModehas no effect for this target group.
-
-
Method Details
-
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
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 nameNullPointerException- if the argument is null
-