Package com.microsoft.graph.models
Enum Class Win32LobAppFileSystemOperationType
java.lang.Object
java.lang.Enum<Win32LobAppFileSystemOperationType>
com.microsoft.graph.models.Win32LobAppFileSystemOperationType
- All Implemented Interfaces:
com.microsoft.kiota.serialization.ValuedEnum,Serializable,Comparable<Win32LobAppFileSystemOperationType>,Constable
@Generated("com.microsoft.kiota")
public enum Win32LobAppFileSystemOperationType
extends Enum<Win32LobAppFileSystemOperationType>
implements com.microsoft.kiota.serialization.ValuedEnum
A list of possible operations for rules used to make determinations about an application based on files or folders. Unless noted, 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 compares the created date of the specified file against a provided comparison value by DateTime comparison.Indicates that the rule evaluates whether the specified file or folder exists.Indicates that the rule compares the modified date of the specified file against a provided comparison value by DateTime comparison.Default.Indicates that the rule compares the size of the file in MiB (rounded down) against a provided comparison value by integer comparison.Indicates that the rule compares the detected version of the specified file 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 Win32LobAppFileSystemOperationType[]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 file or folder exists. -
ModifiedDate
Indicates that the rule compares the modified date of the specified file against a provided comparison value by DateTime comparison. -
CreatedDate
Indicates that the rule compares the created date of the specified file against a provided comparison value by DateTime comparison. -
Version
Indicates that the rule compares the detected version of the specified file 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. -
SizeInMB
Indicates that the rule compares the size of the file in MiB (rounded down) against a provided comparison value by integer comparison.
-
-
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
-