Package odata.msgraph.client.enums
Enum ConditionalAccessDevicePlatform
- java.lang.Object
-
- java.lang.Enum<ConditionalAccessDevicePlatform>
-
- odata.msgraph.client.enums.ConditionalAccessDevicePlatform
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<ConditionalAccessDevicePlatform>
public enum ConditionalAccessDevicePlatform extends Enum<ConditionalAccessDevicePlatform> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALLANDROIDI_OSLINUXMAC_OSUNKNOWN_FUTURE_VALUEWINDOWSWINDOWS_PHONE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static ConditionalAccessDevicePlatformvalueOf(String name)Returns the enum constant of this type with the specified name.static ConditionalAccessDevicePlatform[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ANDROID
public static final ConditionalAccessDevicePlatform ANDROID
-
I_OS
public static final ConditionalAccessDevicePlatform I_OS
-
WINDOWS
public static final ConditionalAccessDevicePlatform WINDOWS
-
WINDOWS_PHONE
public static final ConditionalAccessDevicePlatform WINDOWS_PHONE
-
MAC_OS
public static final ConditionalAccessDevicePlatform MAC_OS
-
ALL
public static final ConditionalAccessDevicePlatform ALL
-
UNKNOWN_FUTURE_VALUE
public static final ConditionalAccessDevicePlatform UNKNOWN_FUTURE_VALUE
-
LINUX
public static final ConditionalAccessDevicePlatform LINUX
-
-
Method Detail
-
values
public static ConditionalAccessDevicePlatform[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConditionalAccessDevicePlatform c : ConditionalAccessDevicePlatform.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConditionalAccessDevicePlatform valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
enumName
public String enumName()
- Specified by:
enumNamein interfacecom.github.davidmoten.odata.client.Enum
-
enumValue
public String enumValue()
- Specified by:
enumValuein interfacecom.github.davidmoten.odata.client.Enum
-
-