Enum Class ManagementState

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

@Generated("com.microsoft.kiota") public enum ManagementState extends Enum<ManagementState> implements com.microsoft.kiota.serialization.ValuedEnum
Management state of device in Microsoft Intune.
  • Enum Constant Details

    • Managed

      public static final ManagementState Managed
      The device is under management
    • RetirePending

      public static final ManagementState RetirePending
      A retire command is occuring on the device and in the process of unenrolling from management
    • RetireFailed

      public static final ManagementState RetireFailed
      Retire command failed on the device
    • WipePending

      public static final ManagementState WipePending
      A wipe command is occuring on the device and in the process of unenrolling from management
    • WipeFailed

      public static final ManagementState WipeFailed
      Wipe command failed on the device
    • Unhealthy

      public static final ManagementState Unhealthy
      The device is unhealthy.
    • DeletePending

      public static final ManagementState DeletePending
      A delete command is occuring on the device
    • RetireIssued

      public static final ManagementState RetireIssued
      A retire command was issued for the device
    • WipeIssued

      public static final ManagementState WipeIssued
      A wipe command was issued for the device
    • WipeCanceled

      public static final ManagementState WipeCanceled
      A wipe command for this device has been canceled
    • RetireCanceled

      public static final ManagementState RetireCanceled
      A retire command for this device has been canceled
    • Discovered

      public static final ManagementState Discovered
      The device is discovered but not fully enrolled.
    • UnknownFutureValue

      public static final ManagementState UnknownFutureValue
      Evolvable enumeration sentinel value. Do not use.
  • Field Details

    • value

      public final String value
  • Method Details

    • values

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