Enum PolicySettingsType
java.lang.Object
java.lang.Enum<PolicySettingsType>
com.microsoft.store.partnercenter.models.devicesdeployment.PolicySettingsType
- All Implemented Interfaces:
Serializable,Comparable<PolicySettingsType>,java.lang.constant.Constable
public enum PolicySettingsType extends Enum<PolicySettingsType>
Represents the settings for an OOBE(Out of box experience) policy.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description NoneDefault value for policy settings.OOBE_USER_NOT_LOCAL_ADMINOOBE(Out of box experience) user will not be a local admin on the configured device.REMOVE_OEM_PREINSTALLSRemove OEM Pre-installs.SKIP_EULASkip EULA settings.SKIP_EXPRESS_SETTINGSSkip express settings.SKIP_OEM_REGISTRATIONSkip OEM registration settings. -
Method Summary
Modifier and Type Method Description StringtoString()Converts the object to a string.static PolicySettingsTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PolicySettingsType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
None
Default value for policy settings. -
REMOVE_OEM_PREINSTALLS
Remove OEM Pre-installs. -
OOBE_USER_NOT_LOCAL_ADMIN
OOBE(Out of box experience) user will not be a local admin on the configured device. -
SKIP_EXPRESS_SETTINGS
Skip express settings. -
SKIP_OEM_REGISTRATION
Skip OEM registration settings. -
SKIP_EULA
Skip EULA settings.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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
-
toString
Converts the object to a string.- Overrides:
toStringin classEnum<PolicySettingsType>- Returns:
- A string that represents this object.
-