Enum AuditRecordSearchField
java.lang.Object
java.lang.Enum<AuditRecordSearchField>
com.microsoft.store.partnercenter.models.auditing.AuditRecordSearchField
- All Implemented Interfaces:
Serializable,Comparable<AuditRecordSearchField>,java.lang.constant.Constable
public enum AuditRecordSearchField extends Enum<AuditRecordSearchField>
Lists the supported audit search fields.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description COMPANY_NAMECustomer company name.CUSTOMER_IDCustomer identifier (GUID).RESOURCE_TYPEResource Type as defined in available Resource Types (Example: Order, Subscription). -
Method Summary
Modifier and Type Method Description StringtoString()Converts the object to a string.static AuditRecordSearchFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static AuditRecordSearchField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
COMPANY_NAME
Customer company name. -
CUSTOMER_ID
Customer identifier (GUID). -
RESOURCE_TYPE
Resource Type as defined in available Resource Types (Example: Order, Subscription).
-
-
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<AuditRecordSearchField>- Returns:
- A string that represents this object.
-