Enum Xs2aRequestBodyDateField
- java.lang.Object
-
- java.lang.Enum<Xs2aRequestBodyDateField>
-
- de.adorsys.psd2.xs2a.web.validator.constants.Xs2aRequestBodyDateField
-
- All Implemented Interfaces:
Serializable,Comparable<Xs2aRequestBodyDateField>
public enum Xs2aRequestBodyDateField extends Enum<Xs2aRequestBodyDateField>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description END_DATEREQUESTED_EXECUTION_DATEREQUESTED_EXECUTION_TIMESTART_DATEVALID_UNTIL
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetFieldName()Xs2aBodyDateFormattergetFormatter()static Xs2aRequestBodyDateFieldvalueOf(String name)Returns the enum constant of this type with the specified name.static Xs2aRequestBodyDateField[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REQUESTED_EXECUTION_DATE
public static final Xs2aRequestBodyDateField REQUESTED_EXECUTION_DATE
-
REQUESTED_EXECUTION_TIME
public static final Xs2aRequestBodyDateField REQUESTED_EXECUTION_TIME
-
START_DATE
public static final Xs2aRequestBodyDateField START_DATE
-
END_DATE
public static final Xs2aRequestBodyDateField END_DATE
-
VALID_UNTIL
public static final Xs2aRequestBodyDateField VALID_UNTIL
-
-
Method Detail
-
values
public static Xs2aRequestBodyDateField[] 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 (Xs2aRequestBodyDateField c : Xs2aRequestBodyDateField.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Xs2aRequestBodyDateField 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
-
getFieldName
public String getFieldName()
-
getFormatter
public Xs2aBodyDateFormatter getFormatter()
-
-