Enum AcceptTermsOfServiceResponse.TypeEnum
- java.lang.Object
-
- java.lang.Enum<AcceptTermsOfServiceResponse.TypeEnum>
-
- com.adyen.model.legalentitymanagement.AcceptTermsOfServiceResponse.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AcceptTermsOfServiceResponse.TypeEnum>
- Enclosing class:
- AcceptTermsOfServiceResponse
public static enum AcceptTermsOfServiceResponse.TypeEnum extends Enum<AcceptTermsOfServiceResponse.TypeEnum>
The type of Terms of Service. Possible values: * **adyenForPlatformsManage** * **adyenIssuing** * **adyenForPlatformsAdvanced** * **adyenCapital** * **adyenAccount** * **adyenCard** * **adyenFranchisee** * **adyenPccr**
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADYENACCOUNTADYENCAPITALADYENCARDADYENFORPLATFORMSADVANCEDADYENFORPLATFORMSMANAGEADYENFRANCHISEEADYENISSUINGADYENPCCR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AcceptTermsOfServiceResponse.TypeEnumfromValue(String value)StringgetValue()StringtoString()static AcceptTermsOfServiceResponse.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AcceptTermsOfServiceResponse.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ADYENACCOUNT
public static final AcceptTermsOfServiceResponse.TypeEnum ADYENACCOUNT
-
ADYENCAPITAL
public static final AcceptTermsOfServiceResponse.TypeEnum ADYENCAPITAL
-
ADYENCARD
public static final AcceptTermsOfServiceResponse.TypeEnum ADYENCARD
-
ADYENFORPLATFORMSADVANCED
public static final AcceptTermsOfServiceResponse.TypeEnum ADYENFORPLATFORMSADVANCED
-
ADYENFORPLATFORMSMANAGE
public static final AcceptTermsOfServiceResponse.TypeEnum ADYENFORPLATFORMSMANAGE
-
ADYENFRANCHISEE
public static final AcceptTermsOfServiceResponse.TypeEnum ADYENFRANCHISEE
-
ADYENISSUING
public static final AcceptTermsOfServiceResponse.TypeEnum ADYENISSUING
-
ADYENPCCR
public static final AcceptTermsOfServiceResponse.TypeEnum ADYENPCCR
-
-
Method Detail
-
values
public static AcceptTermsOfServiceResponse.TypeEnum[] 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 (AcceptTermsOfServiceResponse.TypeEnum c : AcceptTermsOfServiceResponse.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AcceptTermsOfServiceResponse.TypeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<AcceptTermsOfServiceResponse.TypeEnum>
-
fromValue
public static AcceptTermsOfServiceResponse.TypeEnum fromValue(String value)
-
-