Package odata.msgraph.client.beta.enums
Enum ChassisType
- java.lang.Object
-
- java.lang.Enum<ChassisType>
-
- odata.msgraph.client.beta.enums.ChassisType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<ChassisType>
public enum ChassisType extends Enum<ChassisType> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DESKTOPENTERPRISE_SERVERLAPTOPMOBILE_OTHERMOBILE_UNKNOWNPHONETABLETUNKNOWNWORKS_WORKSTATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static ChassisTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ChassisType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNKNOWN
public static final ChassisType UNKNOWN
-
DESKTOP
public static final ChassisType DESKTOP
-
LAPTOP
public static final ChassisType LAPTOP
-
WORKS_WORKSTATION
public static final ChassisType WORKS_WORKSTATION
-
ENTERPRISE_SERVER
public static final ChassisType ENTERPRISE_SERVER
-
PHONE
public static final ChassisType PHONE
-
TABLET
public static final ChassisType TABLET
-
MOBILE_OTHER
public static final ChassisType MOBILE_OTHER
-
MOBILE_UNKNOWN
public static final ChassisType MOBILE_UNKNOWN
-
-
Method Detail
-
values
public static ChassisType[] 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 (ChassisType c : ChassisType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ChassisType 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
-
-