Package odata.msgraph.client.beta.enums
Enum Windows10EditionType
- java.lang.Object
-
- java.lang.Enum<Windows10EditionType>
-
- odata.msgraph.client.beta.enums.Windows10EditionType
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<Windows10EditionType>
public enum Windows10EditionType extends Enum<Windows10EditionType> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static Windows10EditionTypevalueOf(String name)Returns the enum constant of this type with the specified name.static Windows10EditionType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
WINDOWS10ENTERPRISE
public static final Windows10EditionType WINDOWS10ENTERPRISE
-
WINDOWS10ENTERPRISE_N
public static final Windows10EditionType WINDOWS10ENTERPRISE_N
-
WINDOWS10EDUCATION
public static final Windows10EditionType WINDOWS10EDUCATION
-
WINDOWS10EDUCATION_N
public static final Windows10EditionType WINDOWS10EDUCATION_N
-
WINDOWS10MOBILE_ENTERPRISE
public static final Windows10EditionType WINDOWS10MOBILE_ENTERPRISE
-
WINDOWS10HOLOGRAPHIC_ENTERPRISE
public static final Windows10EditionType WINDOWS10HOLOGRAPHIC_ENTERPRISE
-
WINDOWS10PROFESSIONAL
public static final Windows10EditionType WINDOWS10PROFESSIONAL
-
WINDOWS10PROFESSIONAL_N
public static final Windows10EditionType WINDOWS10PROFESSIONAL_N
-
WINDOWS10PROFESSIONAL_EDUCATION
public static final Windows10EditionType WINDOWS10PROFESSIONAL_EDUCATION
-
WINDOWS10PROFESSIONAL_EDUCATION_N
public static final Windows10EditionType WINDOWS10PROFESSIONAL_EDUCATION_N
-
WINDOWS10PROFESSIONAL_WORKSTATION
public static final Windows10EditionType WINDOWS10PROFESSIONAL_WORKSTATION
-
WINDOWS10PROFESSIONAL_WORKSTATION_N
public static final Windows10EditionType WINDOWS10PROFESSIONAL_WORKSTATION_N
-
NOT_CONFIGURED
public static final Windows10EditionType NOT_CONFIGURED
-
WINDOWS10HOME
public static final Windows10EditionType WINDOWS10HOME
-
WINDOWS10HOME_CHINA
public static final Windows10EditionType WINDOWS10HOME_CHINA
-
WINDOWS10HOME_N
public static final Windows10EditionType WINDOWS10HOME_N
-
WINDOWS10HOME_SINGLE_LANGUAGE
public static final Windows10EditionType WINDOWS10HOME_SINGLE_LANGUAGE
-
WINDOWS10MOBILE
public static final Windows10EditionType WINDOWS10MOBILE
-
WINDOWS10IO_TCORE
public static final Windows10EditionType WINDOWS10IO_TCORE
-
WINDOWS10IO_TCORE_COMMERCIAL
public static final Windows10EditionType WINDOWS10IO_TCORE_COMMERCIAL
-
-
Method Detail
-
values
public static Windows10EditionType[] 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 (Windows10EditionType c : Windows10EditionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Windows10EditionType 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
-
-