Enum ReceiptItemDateFields
- java.lang.Object
-
- java.lang.Enum<ReceiptItemDateFields>
-
- pl.grizzlysoftware.dotykacka.client.v1.api.dto.sales.ReceiptItemDateFields
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ReceiptItemDateFields>
public enum ReceiptItemDateFields extends java.lang.Enum<ReceiptItemDateFields>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CANCELED_DATECOMPLETEDINSERTEDUPDATEDVERSION_DATE
-
Field Summary
Fields Modifier and Type Field Description java.lang.Stringname
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ReceiptItemDateFieldsvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ReceiptItemDateFields[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSERTED
public static final ReceiptItemDateFields INSERTED
-
COMPLETED
public static final ReceiptItemDateFields COMPLETED
-
UPDATED
public static final ReceiptItemDateFields UPDATED
-
VERSION_DATE
public static final ReceiptItemDateFields VERSION_DATE
-
CANCELED_DATE
public static final ReceiptItemDateFields CANCELED_DATE
-
-
Method Detail
-
values
public static ReceiptItemDateFields[] 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 (ReceiptItemDateFields c : ReceiptItemDateFields.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReceiptItemDateFields valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
-