Enum ClientPlatform
- java.lang.Object
-
- java.lang.Enum<ClientPlatform>
-
- odata.msgraph.client.callrecords.enums.ClientPlatform
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<ClientPlatform>
public enum ClientPlatform extends Enum<ClientPlatform> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ANDROIDHOLO_LENSI_OSIP_PHONEMAC_OSROOM_SYSTEMSURFACE_HUBUNKNOWNUNKNOWN_FUTURE_VALUEWEBWINDOWS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static ClientPlatformvalueOf(String name)Returns the enum constant of this type with the specified name.static ClientPlatform[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final ClientPlatform UNKNOWN
-
WINDOWS
public static final ClientPlatform WINDOWS
-
MAC_OS
public static final ClientPlatform MAC_OS
-
I_OS
public static final ClientPlatform I_OS
-
ANDROID
public static final ClientPlatform ANDROID
-
WEB
public static final ClientPlatform WEB
-
IP_PHONE
public static final ClientPlatform IP_PHONE
-
ROOM_SYSTEM
public static final ClientPlatform ROOM_SYSTEM
-
SURFACE_HUB
public static final ClientPlatform SURFACE_HUB
-
HOLO_LENS
public static final ClientPlatform HOLO_LENS
-
UNKNOWN_FUTURE_VALUE
public static final ClientPlatform UNKNOWN_FUTURE_VALUE
-
-
Method Detail
-
values
public static ClientPlatform[] 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 (ClientPlatform c : ClientPlatform.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ClientPlatform 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
-
-