Package com.microsoft.graph.models
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.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionIndicates that the rule evaluates whether the specified registry key or value does not exist.Indicates that the rule evaluates whether the specified registry key or value exists.Indicates that the rule compares the value read at the given registry value against a provided comparison value by integer comparison.Default.Indicates that the rule compares the value read at the given registry value against a provided comparison value by string comparison.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). -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptiongetValue()Returns the enum constant of this class with the specified name.static Win32LobAppRegistryRuleOperationType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NotConfigured
Default. Indicates that the rule does not have the operation type configured. -
Exists
Indicates that the rule evaluates whether the specified registry key or value exists. -
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
Indicates that the rule compares the value read at the given registry value against a provided comparison value by string comparison. -
Integer
Indicates that the rule compares the value read at the given registry value against a provided comparison value by integer comparison. -
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
-
-
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
-
getValue
- Specified by:
getValuein interfacecom.microsoft.kiota.serialization.ValuedEnum
-
forValue
-