Enum TermsOfServiceAcceptanceInfo.TypeEnum
- java.lang.Object
-
- java.lang.Enum<TermsOfServiceAcceptanceInfo.TypeEnum>
-
- com.adyen.model.legalentitymanagement.TermsOfServiceAcceptanceInfo.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TermsOfServiceAcceptanceInfo.TypeEnum>
- Enclosing class:
- TermsOfServiceAcceptanceInfo
public static enum TermsOfServiceAcceptanceInfo.TypeEnum extends Enum<TermsOfServiceAcceptanceInfo.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 TermsOfServiceAcceptanceInfo.TypeEnumfromValue(String value)StringgetValue()StringtoString()static TermsOfServiceAcceptanceInfo.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TermsOfServiceAcceptanceInfo.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 TermsOfServiceAcceptanceInfo.TypeEnum ADYENACCOUNT
-
ADYENCAPITAL
public static final TermsOfServiceAcceptanceInfo.TypeEnum ADYENCAPITAL
-
ADYENCARD
public static final TermsOfServiceAcceptanceInfo.TypeEnum ADYENCARD
-
ADYENFORPLATFORMSADVANCED
public static final TermsOfServiceAcceptanceInfo.TypeEnum ADYENFORPLATFORMSADVANCED
-
ADYENFORPLATFORMSMANAGE
public static final TermsOfServiceAcceptanceInfo.TypeEnum ADYENFORPLATFORMSMANAGE
-
ADYENFRANCHISEE
public static final TermsOfServiceAcceptanceInfo.TypeEnum ADYENFRANCHISEE
-
ADYENISSUING
public static final TermsOfServiceAcceptanceInfo.TypeEnum ADYENISSUING
-
ADYENPCCR
public static final TermsOfServiceAcceptanceInfo.TypeEnum ADYENPCCR
-
-
Method Detail
-
values
public static TermsOfServiceAcceptanceInfo.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 (TermsOfServiceAcceptanceInfo.TypeEnum c : TermsOfServiceAcceptanceInfo.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 TermsOfServiceAcceptanceInfo.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<TermsOfServiceAcceptanceInfo.TypeEnum>
-
fromValue
public static TermsOfServiceAcceptanceInfo.TypeEnum fromValue(String value)
-
-