Enum PartnerRelationshipType
java.lang.Object
java.lang.Enum<PartnerRelationshipType>
com.microsoft.store.partnercenter.models.relationships.PartnerRelationshipType
- All Implemented Interfaces:
Serializable,Comparable<PartnerRelationshipType>,java.lang.constant.Constable
public enum PartnerRelationshipType extends Enum<PartnerRelationshipType>
The types of relationships between partners for two tier partner scenario.
-
Nested Class Summary
-
Enum Constant Summary
Enum Constants Enum Constant Description IS_INDIRECT_CLOUD_SOLUTION_PROVIDER_OFIs indirect cloud solution provider of.IS_INDIRECT_RESELLER_OFIs indirect reseller of. -
Method Summary
Modifier and Type Method Description StringtoString()Converts the object to a string.static PartnerRelationshipTypevalueOf(String name)Returns the enum constant of this type with the specified name.static PartnerRelationshipType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
IS_INDIRECT_RESELLER_OF
Is indirect reseller of. -
IS_INDIRECT_CLOUD_SOLUTION_PROVIDER_OF
Is indirect cloud solution provider of.
-
-
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<PartnerRelationshipType>- Returns:
- A string that represents this object.
-