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