Package cz.gopay.api.v3.model.common
Enum StatementGeneratingFormat
- java.lang.Object
-
- java.lang.Enum<StatementGeneratingFormat>
-
- cz.gopay.api.v3.model.common.StatementGeneratingFormat
-
- All Implemented Interfaces:
Serializable,Comparable<StatementGeneratingFormat>
public enum StatementGeneratingFormat extends Enum<StatementGeneratingFormat>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetContentType()static StatementGeneratingFormatvalueOf(String name)Returns the enum constant of this type with the specified name.static StatementGeneratingFormat[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
XLS_A
public static final StatementGeneratingFormat XLS_A
-
XLS_B
public static final StatementGeneratingFormat XLS_B
-
XLS_C
public static final StatementGeneratingFormat XLS_C
-
CSV_A
public static final StatementGeneratingFormat CSV_A
-
CSV_B
public static final StatementGeneratingFormat CSV_B
-
CSV_C
public static final StatementGeneratingFormat CSV_C
-
CSV_D
public static final StatementGeneratingFormat CSV_D
-
ABO_A
public static final StatementGeneratingFormat ABO_A
-
-
Method Detail
-
values
public static StatementGeneratingFormat[] 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 (StatementGeneratingFormat c : StatementGeneratingFormat.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static StatementGeneratingFormat 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
-
getContentType
public String getContentType()
-
-