Package de.hybris.platform.b2b.services
Enum B2BWorkflowIntegrationService.ACTIONCODES
- java.lang.Object
-
- java.lang.Enum<B2BWorkflowIntegrationService.ACTIONCODES>
-
- de.hybris.platform.b2b.services.B2BWorkflowIntegrationService.ACTIONCODES
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<B2BWorkflowIntegrationService.ACTIONCODES>
- Enclosing interface:
- B2BWorkflowIntegrationService
public static enum B2BWorkflowIntegrationService.ACTIONCODES extends java.lang.Enum<B2BWorkflowIntegrationService.ACTIONCODES>
The Enum ACTIONCODES.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCEPT_SALES_QUOTES
APPROVAL
APPROVED
BACK_TO_PROCESSENGINE
END
REJECT_SALES_QUOTES
REJECTED
START
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static B2BWorkflowIntegrationService.ACTIONCODES
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static B2BWorkflowIntegrationService.ACTIONCODES[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPROVAL
public static final B2BWorkflowIntegrationService.ACTIONCODES APPROVAL
-
APPROVED
public static final B2BWorkflowIntegrationService.ACTIONCODES APPROVED
-
REJECTED
public static final B2BWorkflowIntegrationService.ACTIONCODES REJECTED
-
BACK_TO_PROCESSENGINE
public static final B2BWorkflowIntegrationService.ACTIONCODES BACK_TO_PROCESSENGINE
-
END
public static final B2BWorkflowIntegrationService.ACTIONCODES END
-
START
public static final B2BWorkflowIntegrationService.ACTIONCODES START
-
ACCEPT_SALES_QUOTES
public static final B2BWorkflowIntegrationService.ACTIONCODES ACCEPT_SALES_QUOTES
-
REJECT_SALES_QUOTES
public static final B2BWorkflowIntegrationService.ACTIONCODES REJECT_SALES_QUOTES
-
-
Method Detail
-
values
public static B2BWorkflowIntegrationService.ACTIONCODES[] 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 (B2BWorkflowIntegrationService.ACTIONCODES c : B2BWorkflowIntegrationService.ACTIONCODES.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static B2BWorkflowIntegrationService.ACTIONCODES 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
-
-