Package cz.gopay.api.v3.model.supercash
Enum SupercashBatchState.SupercashState
- java.lang.Object
-
- java.lang.Enum<SupercashBatchState.SupercashState>
-
- cz.gopay.api.v3.model.supercash.SupercashBatchState.SupercashState
-
- All Implemented Interfaces:
Serializable,Comparable<SupercashBatchState.SupercashState>
- Enclosing class:
- SupercashBatchState
public static enum SupercashBatchState.SupercashState extends Enum<SupercashBatchState.SupercashState>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SupercashBatchState.SupercashStatevalueOf(String name)Returns the enum constant of this type with the specified name.static SupercashBatchState.SupercashState[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
COMPLETED
public static final SupercashBatchState.SupercashState COMPLETED
-
FAILED
public static final SupercashBatchState.SupercashState FAILED
-
RUNNING
public static final SupercashBatchState.SupercashState RUNNING
-
CREATED
public static final SupercashBatchState.SupercashState CREATED
-
STOPPED
public static final SupercashBatchState.SupercashState STOPPED
-
QUEUED
public static final SupercashBatchState.SupercashState QUEUED
-
-
Method Detail
-
values
public static SupercashBatchState.SupercashState[] 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 (SupercashBatchState.SupercashState c : SupercashBatchState.SupercashState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SupercashBatchState.SupercashState 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
-
-