Enum Class Win32LobAppRegistryRuleOperationType

java.lang.Object
java.lang.Enum<Win32LobAppRegistryRuleOperationType>
com.microsoft.graph.models.Win32LobAppRegistryRuleOperationType
All Implemented Interfaces:
com.microsoft.kiota.serialization.ValuedEnum, Serializable, Comparable<Win32LobAppRegistryRuleOperationType>, Constable

@Generated("com.microsoft.kiota") public enum Win32LobAppRegistryRuleOperationType extends Enum<Win32LobAppRegistryRuleOperationType> implements com.microsoft.kiota.serialization.ValuedEnum
A list of possible operations for rules used to make determinations about an application based on registry keys or values. Unless noted, the values can be used with either detection or requirement rules.
  • Enum Constant Details

    • NotConfigured

      public static final Win32LobAppRegistryRuleOperationType NotConfigured
      Default. Indicates that the rule does not have the operation type configured.
    • Exists

      public static final Win32LobAppRegistryRuleOperationType Exists
      Indicates that the rule evaluates whether the specified registry key or value exists.
    • DoesNotExist

      public static final Win32LobAppRegistryRuleOperationType DoesNotExist
      Indicates that the rule evaluates whether the specified registry key or value does not exist. It is the functional inverse of an equivalent rule that uses operation type `exists`.
    • String

      public static final Win32LobAppRegistryRuleOperationType String
      Indicates that the rule compares the value read at the given registry value against a provided comparison value by string comparison.
    • Integer

      public static final Win32LobAppRegistryRuleOperationType Integer
      Indicates that the rule compares the value read at the given registry value against a provided comparison value by integer comparison.
    • Version

      public static final Win32LobAppRegistryRuleOperationType Version
      Indicates that the rule compares the value read at the given registry value against a provided comparison value via version semantics (both operand values will be parsed as versions and directly compared). If the value read at the given registry value is not discovered to be in version-compatible format, a string comparison will be used instead.
  • Field Details

    • value

      public final String value
  • Method Details

    • values

      public static Win32LobAppRegistryRuleOperationType[] 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 Win32LobAppRegistryRuleOperationType 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
    • getValue

      @Nonnull public String getValue()
      Specified by:
      getValue in interface com.microsoft.kiota.serialization.ValuedEnum
    • forValue

      @Nullable public static Win32LobAppRegistryRuleOperationType forValue(@Nonnull String searchValue)