Enum Class Mutability

java.lang.Object
java.lang.Enum<Mutability>
com.microsoft.graph.models.Mutability
All Implemented Interfaces:
Serializable, Comparable<Mutability>, Constable

public enum Mutability extends Enum<Mutability>
The Enum Mutability.
  • Enum Constant Details

    • READ_WRITE

      public static final Mutability READ_WRITE
      Read Write
    • READ_ONLY

      public static final Mutability READ_ONLY
      Read Only
    • IMMUTABLE

      public static final Mutability IMMUTABLE
      Immutable
    • WRITE_ONLY

      public static final Mutability WRITE_ONLY
      Write Only
    • UNEXPECTED_VALUE

      public static final Mutability UNEXPECTED_VALUE
      For Mutability values that were not expected from the service
  • Method Details

    • values

      public static Mutability[] 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 Mutability 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