Enum GraphQlQueryResources
- java.lang.Object
-
- java.lang.Enum<GraphQlQueryResources>
-
- com.commercetools.sync.commons.models.GraphQlQueryResources
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GraphQlQueryResources>
public enum GraphQlQueryResources extends java.lang.Enum<GraphQlQueryResources>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CATEGORIES
CHANNELS
CUSTOM_OBJECTS
CUSTOMER_GROUPS
CUSTOMERS
PRODUCT_TYPES
PRODUCTS
SHOPPING_LISTS
STATES
TAX_CATEGORIES
TYPES
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
static GraphQlQueryResources
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GraphQlQueryResources[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CATEGORIES
public static final GraphQlQueryResources CATEGORIES
-
CHANNELS
public static final GraphQlQueryResources CHANNELS
-
CUSTOMER_GROUPS
public static final GraphQlQueryResources CUSTOMER_GROUPS
-
CUSTOMERS
public static final GraphQlQueryResources CUSTOMERS
-
PRODUCTS
public static final GraphQlQueryResources PRODUCTS
-
PRODUCT_TYPES
public static final GraphQlQueryResources PRODUCT_TYPES
-
STATES
public static final GraphQlQueryResources STATES
-
TAX_CATEGORIES
public static final GraphQlQueryResources TAX_CATEGORIES
-
TYPES
public static final GraphQlQueryResources TYPES
-
SHOPPING_LISTS
public static final GraphQlQueryResources SHOPPING_LISTS
-
CUSTOM_OBJECTS
public static final GraphQlQueryResources CUSTOM_OBJECTS
-
-
Method Detail
-
values
public static GraphQlQueryResources[] 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 (GraphQlQueryResources c : GraphQlQueryResources.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GraphQlQueryResources 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
-
getName
public java.lang.String getName()
-
-