Enum PiisConsentSupported
- java.lang.Object
-
- java.lang.Enum<PiisConsentSupported>
-
- de.adorsys.psd2.xs2a.core.profile.PiisConsentSupported
-
- All Implemented Interfaces:
Serializable,Comparable<PiisConsentSupported>
public enum PiisConsentSupported extends Enum<PiisConsentSupported>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASPSP_CONSENT_SUPPORTEDNOT_SUPPORTEDTPP_CONSENT_SUPPORTED
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PiisConsentSupportedvalueOf(String name)Returns the enum constant of this type with the specified name.static PiisConsentSupported[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_SUPPORTED
public static final PiisConsentSupported NOT_SUPPORTED
-
TPP_CONSENT_SUPPORTED
public static final PiisConsentSupported TPP_CONSENT_SUPPORTED
-
ASPSP_CONSENT_SUPPORTED
public static final PiisConsentSupported ASPSP_CONSENT_SUPPORTED
-
-
Method Detail
-
values
public static PiisConsentSupported[] 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 (PiisConsentSupported c : PiisConsentSupported.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PiisConsentSupported 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
-
-