public enum InventoryParam extends Enum<InventoryParam> implements Param
Enum Constant and Description |
---|
SKIP_CHILDREN_NAMES |
WITH_CHILDREN |
WITH_PARENTS |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static InventoryParam |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static InventoryParam[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static QueryParam |
withChildren() |
static QueryParam |
withChildrenNames() |
static QueryParam |
withoutChildren() |
static QueryParam |
withoutChildrenNames() |
static QueryParam |
withoutParents() |
static QueryParam |
withParents() |
public static final InventoryParam WITH_PARENTS
public static final InventoryParam WITH_CHILDREN
public static final InventoryParam SKIP_CHILDREN_NAMES
public static InventoryParam[] values()
for (InventoryParam c : InventoryParam.values()) System.out.println(c);
public static InventoryParam valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static QueryParam withParents()
public static QueryParam withoutParents()
public static QueryParam withChildren()
public static QueryParam withoutChildren()
public static QueryParam withChildrenNames()
public static QueryParam withoutChildrenNames()
Copyright © 2020 (C) Cumulocity GmbH. All rights reserved.