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.
  • Enum Constant Details

    • NotConfigured

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

      public static final Win32LobAppFileSystemOperationType Exists
      Indicates that the rule evaluates whether the specified file or folder exists.
    • ModifiedDate

      public static final Win32LobAppFileSystemOperationType ModifiedDate
      Indicates that the rule compares the modified date of the specified file against a provided comparison value by DateTime comparison.
    • CreatedDate

      public static final Win32LobAppFileSystemOperationType CreatedDate
      Indicates that the rule compares the created date of the specified file against a provided comparison value by DateTime comparison.
    • Version

      public static final Win32LobAppFileSystemOperationType 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

      public static final Win32LobAppFileSystemOperationType 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

      public final String value
  • Method Details

    • values

      public static Win32LobAppFileSystemOperationType[] 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 Win32LobAppFileSystemOperationType 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 Win32LobAppFileSystemOperationType forValue(@Nonnull String searchValue)