Package com.commercetools.sync.products
Enum ActionGroup
- java.lang.Object
-
- java.lang.Enum<ActionGroup>
-
- com.commercetools.sync.products.ActionGroup
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ActionGroup>
public enum ActionGroup extends java.lang.Enum<ActionGroup>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASSETS
ATTRIBUTES
CATEGORIES
DESCRIPTION
IMAGES
METADESCRIPTION
METAKEYWORDS
METATITLE
NAME
PRICES
SEARCHKEYWORDS
SKU
SLUG
STATE
TAXCATEGORY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ActionGroup
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ActionGroup[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NAME
public static final ActionGroup NAME
-
DESCRIPTION
public static final ActionGroup DESCRIPTION
-
SLUG
public static final ActionGroup SLUG
-
CATEGORIES
public static final ActionGroup CATEGORIES
-
METATITLE
public static final ActionGroup METATITLE
-
METADESCRIPTION
public static final ActionGroup METADESCRIPTION
-
METAKEYWORDS
public static final ActionGroup METAKEYWORDS
-
TAXCATEGORY
public static final ActionGroup TAXCATEGORY
-
SEARCHKEYWORDS
public static final ActionGroup SEARCHKEYWORDS
-
STATE
public static final ActionGroup STATE
-
ATTRIBUTES
public static final ActionGroup ATTRIBUTES
-
PRICES
public static final ActionGroup PRICES
-
ASSETS
public static final ActionGroup ASSETS
-
IMAGES
public static final ActionGroup IMAGES
-
SKU
public static final ActionGroup SKU
-
-
Method Detail
-
values
public static ActionGroup[] 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 (ActionGroup c : ActionGroup.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActionGroup 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
-
-