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