Enum CapabilityProblemEntity.TypeEnum
- java.lang.Object
-
- java.lang.Enum<CapabilityProblemEntity.TypeEnum>
-
- com.adyen.model.legalentitymanagement.CapabilityProblemEntity.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<CapabilityProblemEntity.TypeEnum>
- Enclosing class:
- CapabilityProblemEntity
public static enum CapabilityProblemEntity.TypeEnum extends Enum<CapabilityProblemEntity.TypeEnum>
Gets or Sets type
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BANKACCOUNTDOCUMENTLEGALENTITYPRODUCT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static CapabilityProblemEntity.TypeEnumfromValue(String value)StringgetValue()StringtoString()static CapabilityProblemEntity.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static CapabilityProblemEntity.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BANKACCOUNT
public static final CapabilityProblemEntity.TypeEnum BANKACCOUNT
-
DOCUMENT
public static final CapabilityProblemEntity.TypeEnum DOCUMENT
-
LEGALENTITY
public static final CapabilityProblemEntity.TypeEnum LEGALENTITY
-
PRODUCT
public static final CapabilityProblemEntity.TypeEnum PRODUCT
-
-
Method Detail
-
values
public static CapabilityProblemEntity.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 (CapabilityProblemEntity.TypeEnum c : CapabilityProblemEntity.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 CapabilityProblemEntity.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<CapabilityProblemEntity.TypeEnum>
-
fromValue
public static CapabilityProblemEntity.TypeEnum fromValue(String value)
-
-