Package odata.msgraph.client.enums
Enum InstallIntent
- java.lang.Object
-
- java.lang.Enum<InstallIntent>
-
- odata.msgraph.client.enums.InstallIntent
-
- All Implemented Interfaces:
com.github.davidmoten.odata.client.Enum,Serializable,Comparable<InstallIntent>
public enum InstallIntent extends Enum<InstallIntent> implements com.github.davidmoten.odata.client.Enum
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AVAILABLEAVAILABLE_WITHOUT_ENROLLMENTREQUIREDUNINSTALL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringenumName()StringenumValue()static InstallIntentvalueOf(String name)Returns the enum constant of this type with the specified name.static InstallIntent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AVAILABLE
public static final InstallIntent AVAILABLE
-
REQUIRED
public static final InstallIntent REQUIRED
-
UNINSTALL
public static final InstallIntent UNINSTALL
-
AVAILABLE_WITHOUT_ENROLLMENT
public static final InstallIntent AVAILABLE_WITHOUT_ENROLLMENT
-
-
Method Detail
-
values
public static InstallIntent[] 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 (InstallIntent c : InstallIntent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InstallIntent 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
-
-