Package odata.msgraph.client.beta.enums
Enum DeviceComplianceScriptRulesValidationError
- java.lang.Object
-
- java.lang.Enum<DeviceComplianceScriptRulesValidationError>
-
- odata.msgraph.client.beta.enums.DeviceComplianceScriptRulesValidationError
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<DeviceComplianceScriptRulesValidationError>
public enum DeviceComplianceScriptRulesValidationError extends Enum<DeviceComplianceScriptRulesValidationError> 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 DeviceComplianceScriptRulesValidationErrorvalueOf(String name)Returns the enum constant of this type with the specified name.static DeviceComplianceScriptRulesValidationError[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final DeviceComplianceScriptRulesValidationError NONE
-
JSON_FILE_INVALID
public static final DeviceComplianceScriptRulesValidationError JSON_FILE_INVALID
-
JSON_FILE_MISSING
public static final DeviceComplianceScriptRulesValidationError JSON_FILE_MISSING
-
JSON_FILE_TOO_LARGE
public static final DeviceComplianceScriptRulesValidationError JSON_FILE_TOO_LARGE
-
RULES_MISSING
public static final DeviceComplianceScriptRulesValidationError RULES_MISSING
-
DUPLICATE_RULES
public static final DeviceComplianceScriptRulesValidationError DUPLICATE_RULES
-
TOO_MANY_RULES_SPECIFIED
public static final DeviceComplianceScriptRulesValidationError TOO_MANY_RULES_SPECIFIED
-
OPERATOR_MISSING
public static final DeviceComplianceScriptRulesValidationError OPERATOR_MISSING
-
OPERATOR_NOT_SUPPORTED
public static final DeviceComplianceScriptRulesValidationError OPERATOR_NOT_SUPPORTED
-
DATATYPE_MISSING
public static final DeviceComplianceScriptRulesValidationError DATATYPE_MISSING
-
DATATYPE_NOT_SUPPORTED
public static final DeviceComplianceScriptRulesValidationError DATATYPE_NOT_SUPPORTED
-
OPERATOR_DATA_TYPE_COMBINATION_NOT_SUPPORTED
public static final DeviceComplianceScriptRulesValidationError OPERATOR_DATA_TYPE_COMBINATION_NOT_SUPPORTED
-
MORE_INFO_URI_MISSING
public static final DeviceComplianceScriptRulesValidationError MORE_INFO_URI_MISSING
-
MORE_INFO_URI_INVALID
public static final DeviceComplianceScriptRulesValidationError MORE_INFO_URI_INVALID
-
MORE_INFO_URI_TOO_LARGE
public static final DeviceComplianceScriptRulesValidationError MORE_INFO_URI_TOO_LARGE
-
DESCRIPTION_MISSING
public static final DeviceComplianceScriptRulesValidationError DESCRIPTION_MISSING
-
DESCRIPTION_INVALID
public static final DeviceComplianceScriptRulesValidationError DESCRIPTION_INVALID
-
DESCRIPTION_TOO_LARGE
public static final DeviceComplianceScriptRulesValidationError DESCRIPTION_TOO_LARGE
-
TITLE_MISSING
public static final DeviceComplianceScriptRulesValidationError TITLE_MISSING
-
TITLE_INVALID
public static final DeviceComplianceScriptRulesValidationError TITLE_INVALID
-
TITLE_TOO_LARGE
public static final DeviceComplianceScriptRulesValidationError TITLE_TOO_LARGE
-
OPERAND_MISSING
public static final DeviceComplianceScriptRulesValidationError OPERAND_MISSING
-
OPERAND_INVALID
public static final DeviceComplianceScriptRulesValidationError OPERAND_INVALID
-
OPERAND_TOO_LARGE
public static final DeviceComplianceScriptRulesValidationError OPERAND_TOO_LARGE
-
SETTING_NAME_MISSING
public static final DeviceComplianceScriptRulesValidationError SETTING_NAME_MISSING
-
SETTING_NAME_INVALID
public static final DeviceComplianceScriptRulesValidationError SETTING_NAME_INVALID
-
SETTING_NAME_TOO_LARGE
public static final DeviceComplianceScriptRulesValidationError SETTING_NAME_TOO_LARGE
-
ENGLISH_LOCALE_MISSING
public static final DeviceComplianceScriptRulesValidationError ENGLISH_LOCALE_MISSING
-
DUPLICATE_LOCALES
public static final DeviceComplianceScriptRulesValidationError DUPLICATE_LOCALES
-
UNRECOGNIZED_LOCALE
public static final DeviceComplianceScriptRulesValidationError UNRECOGNIZED_LOCALE
-
UNKNOWN
public static final DeviceComplianceScriptRulesValidationError UNKNOWN
-
REMEDIATION_STRINGS_MISSING
public static final DeviceComplianceScriptRulesValidationError REMEDIATION_STRINGS_MISSING
-
-
Method Detail
-
values
public static DeviceComplianceScriptRulesValidationError[] 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 (DeviceComplianceScriptRulesValidationError c : DeviceComplianceScriptRulesValidationError.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeviceComplianceScriptRulesValidationError 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
-
-