public enum MdmAuthority extends java.lang.Enum<MdmAuthority>
| Enum Constant and Description |
|---|
INTUNE
intune
|
OFFICE365
office365
|
SCCM
sccm
|
UNEXPECTED_VALUE
For MdmAuthority values that were not expected from the service
|
UNKNOWN
unknown
|
| Modifier and Type | Method and Description |
|---|---|
static MdmAuthority |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MdmAuthority[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MdmAuthority UNKNOWN
public static final MdmAuthority INTUNE
public static final MdmAuthority SCCM
public static final MdmAuthority OFFICE365
public static final MdmAuthority UNEXPECTED_VALUE
public static MdmAuthority[] values()
for (MdmAuthority c : MdmAuthority.values()) System.out.println(c);
public static MdmAuthority valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null