- calculateAppliedTaxes(TaxedItemPrice) - Static method in class io.sphere.sdk.products.PriceUtils
-
Calculates the taxes applied to the pricing.
- calculateDurationWithExponentialRandomBackoff(long, long, long) - Static method in interface io.sphere.sdk.retry.RetryAction
-
Computes a exponential backoff time delay in milliseconds to be used in retries, the delay grows with failed
retry attempts count with a randomness interval.
- calculateGrossPrice(MonetaryAmount, TaxRate) - Static method in class io.sphere.sdk.products.PriceUtils
-
Calculates the gross price of the given amount according to its tax rate.
- calculateNetPrice(MonetaryAmount, TaxRate) - Static method in class io.sphere.sdk.products.PriceUtils
-
Calculates the net price of the given amount according to its tax rate.
- calculateSubTotalPrice() - Method in interface io.sphere.sdk.carts.CartLike
-
Returns the subtotal price of the cart, which is calculated by adding the prices of line items and custom line items,
thus excluding shipping costs and discounts that are applied to the entire cart.
- calculateTotalAppliedTaxes() - Method in interface io.sphere.sdk.carts.CartLike
-
Tries to calculate all the taxes applied to the cart, without discriminating between different tax portions.
- canDeserialize(HttpResponse) - Method in class io.sphere.sdk.client.JavaAndHttpResponseSphereRequest
-
- canDeserialize(HttpResponse) - Method in class io.sphere.sdk.client.JavaAndJsonSphereRequest
-
- canDeserialize(HttpResponse) - Method in interface io.sphere.sdk.client.SphereRequest
-
- canDeserialize(HttpResponse) - Method in class io.sphere.sdk.client.SphereRequestDecorator
-
- canDeserialize(HttpResponse) - Method in class io.sphere.sdk.queries.MetaModelGetDslImpl
-
- canDeserialize(HttpResponse) - Method in class io.sphere.sdk.queries.MetaModelHeadDslImpl
-
- canHandle(AttributeDefinition) - Method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- carrier(String) - Method in class io.sphere.sdk.orders.TrackingDataBuilder
-
- Cart - Interface in io.sphere.sdk.carts
-
A shopping cart holds product variants and can be ordered.
- cart() - Method in interface io.sphere.sdk.customers.expansion.CustomerSignInResultExpansionModel
-
- cart() - Method in interface io.sphere.sdk.orders.expansion.OrderExpansionModel
-
- cart(ResourceIdentifier<Cart>) - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
Sets the cart
property of this builder.
- cart() - Method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- CartByCustomerIdGet - Interface in io.sphere.sdk.carts.queries
-
Gets a cart by the customer id.
- CartByIdGet - Interface in io.sphere.sdk.carts.queries
-
Gets a cart by ID.
- CartByKeyGet - Interface in io.sphere.sdk.carts.queries
-
Gets a cart by Key.
- CartClassification - Interface in io.sphere.sdk.projects
-
- CartClassification - Interface in io.sphere.sdk.shippingmethods
-
- CartClassificationBuilder - Class in io.sphere.sdk.shippingmethods
-
- CartClassificationDraft - Interface in io.sphere.sdk.projects
-
- CartClassificationDraftBuilder - Class in io.sphere.sdk.projects
-
- CartClassificationDraftDsl - Class in io.sphere.sdk.projects
-
- CartCreateCommand - Interface in io.sphere.sdk.carts.commands
-
Creates a cart.
- CartDeleteCommand - Interface in io.sphere.sdk.carts.commands
-
Deletes a cart
final CartDraft cartDraft = CartDraftBuilder.of(EUR).country(DE).build();
final Cart cart = client().executeBlocking(CartCreateCommand.of(cartDraft));
final String key = randomKey();
final Cart updatedCart = client().executeBlocking(CartUpdateCommand.of(cart, SetKey.of(key)));
assertThat(updatedCart.getKey()).isEqualTo(key);
client().executeBlocking(CartDeleteCommand.ofKey(key, updatedCart.getVersion()));
final PagedQueryResult<Cart> queryResult = client().executeBlocking(CartQuery.of().withPredicates(cartQueryModel -> cartQueryModel.key().is(updatedCart.getKey())));
assertThat(queryResult.getResults()).isEmpty();
See the test code.
- CartDiscount - Interface in io.sphere.sdk.cartdiscounts
-
Cart discounts are used to change the prices of different elements within a cart like Line Items.
- CartDiscountByIdGet - Interface in io.sphere.sdk.cartdiscounts.queries
-
- CartDiscountByKeyGet - Interface in io.sphere.sdk.cartdiscounts.queries
-
- CartDiscountCreateCommand - Interface in io.sphere.sdk.cartdiscounts.commands
-
- CartDiscountDeleteCommand - Interface in io.sphere.sdk.cartdiscounts.commands
-
- CartDiscountDraft - Interface in io.sphere.sdk.cartdiscounts
-
- CartDiscountDraftBuilder - Class in io.sphere.sdk.cartdiscounts
-
- CartDiscountDraftDsl - Class in io.sphere.sdk.cartdiscounts
-
- CartDiscountExpansionModel<T> - Interface in io.sphere.sdk.cartdiscounts.expansion
-
- CartDiscountPredicate - Interface in io.sphere.sdk.cartdiscounts
-
- CartDiscountQuery - Interface in io.sphere.sdk.cartdiscounts.queries
-
{@doc.gen summary cart discounts
- CartDiscountQueryBuilder - Class in io.sphere.sdk.cartdiscounts.queries
-
- CartDiscountQueryModel - Interface in io.sphere.sdk.cartdiscounts.queries
-
- cartDiscounts() - Method in interface io.sphere.sdk.discountcodes.expansion.DiscountCodeExpansionModel
-
- CartDiscountTarget - Interface in io.sphere.sdk.cartdiscounts
-
Defines what part of the cart will be discounted.
- CartDiscountUpdateCommand - Interface in io.sphere.sdk.cartdiscounts.commands
-
- CartDiscountValue - Interface in io.sphere.sdk.cartdiscounts
-
Defines cart discount type with the corresponding value.
- CartDraft - Interface in io.sphere.sdk.carts
-
- CartDraftBuilder - Class in io.sphere.sdk.carts
-
- CartDraftDsl - Class in io.sphere.sdk.carts
-
- CartEndpoint - Class in io.sphere.sdk.carts
-
- CartExpansionModel<T> - Interface in io.sphere.sdk.carts.expansion
-
Model to explore reference fields in a cart that can be expanded.
- CartInStoreByCustomerIdGet - Interface in io.sphere.sdk.carts.queries
-
- CartInStoreByIdGet - Interface in io.sphere.sdk.carts.queries
-
- CartInStoreByKeyGet - Interface in io.sphere.sdk.carts.queries
-
- CartInStoreCreateCommand - Interface in io.sphere.sdk.carts.commands
-
- CartInStoreDeleteCommand - Interface in io.sphere.sdk.carts.commands
-
- CartInStoreQuery - Interface in io.sphere.sdk.carts.queries
-
- CartInStoreQueryBuilder - Class in io.sphere.sdk.carts.queries
-
- CartInStoreReplicationCommand - Class in io.sphere.sdk.carts.commands
-
Creates a new cart based on an existing cart or order.
- CartInStoreUpdateCommand - Interface in io.sphere.sdk.carts.commands
-
- CartLike<T> - Interface in io.sphere.sdk.carts
-
Interface to collect the common stuff between carts and orders.
- CartLikeExpansionModel<T> - Interface in io.sphere.sdk.carts.expansion
-
Internal base interface
- CartLikeExpansionModelImpl<T> - Class in io.sphere.sdk.carts.expansion
-
Internal base class
- CartLikeExpansionModelImpl(List<String>, String) - Constructor for class io.sphere.sdk.carts.expansion.CartLikeExpansionModelImpl
-
- CartLikeExpansionModelImpl() - Constructor for class io.sphere.sdk.carts.expansion.CartLikeExpansionModelImpl
-
- CartLikeQueryModel<T> - Interface in io.sphere.sdk.carts.queries
-
- CartLikeQueryModelImpl<T> - Class in io.sphere.sdk.carts.queries
-
Base class to create predicates for
CartLike
resources.
- CartLikeQueryModelImpl(QueryModel<T>, String) - Constructor for class io.sphere.sdk.carts.queries.CartLikeQueryModelImpl
-
- CartOrigin - Enum in io.sphere.sdk.carts
-
An enumeration that allows to track cart's origin.
- cartPredicate(CartPredicate) - Method in class io.sphere.sdk.cartdiscounts.CartDiscountDraftBuilder
-
- CartPredicate - Interface in io.sphere.sdk.cartdiscounts
-
The predicate offers a flexible way to define whether the discount or shipping method can be applied to a cart.
- cartPredicate(CartPredicate) - Method in class io.sphere.sdk.discountcodes.DiscountCodeDraftBuilder
-
- CartQuery - Interface in io.sphere.sdk.carts.queries
-
{@doc.gen summary carts
- CartQueryBuilder - Class in io.sphere.sdk.carts.queries
-
- CartQueryModel - Interface in io.sphere.sdk.carts.queries
-
- CartReplicationCommand - Class in io.sphere.sdk.carts.commands
-
Creates a new cart based on an existing cart or order.
- CartReplicationDraft - Interface in io.sphere.sdk.carts.commands
-
- CartReplicationDraftBuilder - Class in io.sphere.sdk.carts.commands
-
- CartReplicationDraftDsl - Class in io.sphere.sdk.carts.commands
-
- CartsConfiguration - Interface in io.sphere.sdk.carts
-
- CartScore - Interface in io.sphere.sdk.projects
-
- CartScore - Interface in io.sphere.sdk.shippingmethods
-
- CartScoreBuilder - Class in io.sphere.sdk.shippingmethods
-
- CartScoreDraft - Interface in io.sphere.sdk.projects
-
- CartScoreDraftBuilder - Class in io.sphere.sdk.projects
-
- CartScoreDraftDsl - Class in io.sphere.sdk.projects
-
- CartShippingInfo - Interface in io.sphere.sdk.carts
-
Information concerning shipping in a cart.
- CartShippingInfoQueryModel<T> - Interface in io.sphere.sdk.carts.queries
-
- CartState - Enum in io.sphere.sdk.carts
-
CartState.
- cartState() - Method in interface io.sphere.sdk.carts.queries.CartQueryModel
-
- CartUpdateCommand - Interface in io.sphere.sdk.carts.commands
-
Updates a cart.
- CartValue - Interface in io.sphere.sdk.projects
-
- CartValue - Interface in io.sphere.sdk.shippingmethods
-
- CartValueBuilder - Class in io.sphere.sdk.shippingmethods
-
- CartValueDraft - Interface in io.sphere.sdk.projects
-
- CartValueDraftBuilder - Class in io.sphere.sdk.projects
-
- CartValueDraftDsl - Class in io.sphere.sdk.projects
-
- categories(Integer) - Method in interface io.sphere.sdk.products.expansion.ProductDataExpansionModel
-
- categories() - Method in interface io.sphere.sdk.products.expansion.ProductDataExpansionModel
-
- categories(int) - Method in interface io.sphere.sdk.products.expansion.ProductProjectionExpansionModel
-
- categories() - Method in interface io.sphere.sdk.products.expansion.ProductProjectionExpansionModel
-
- categories(List<Reference<Category>>) - Method in class io.sphere.sdk.products.ProductDraftBuilder
-
- categories() - Method in interface io.sphere.sdk.products.queries.ProductDataQueryModel
-
- categories() - Method in interface io.sphere.sdk.products.queries.ProductProjectionQueryModel
-
- categories() - Method in class io.sphere.sdk.products.search.ProductDataFacetedSearchSearchModel
-
- categories() - Method in class io.sphere.sdk.products.search.ProductDataFacetSearchModel
-
- categories() - Method in class io.sphere.sdk.products.search.ProductProjectionFacetedSearchSearchModel
-
- categories() - Method in class io.sphere.sdk.products.search.ProductProjectionFacetSearchModel
-
- categories() - Method in class io.sphere.sdk.products.search.ProductProjectionFilterSearchModel
-
- categoriesAsObjectList(List<Category>) - Method in class io.sphere.sdk.products.ProductDraftBuilder
-
Adds categories to this product draft.
- Category - Interface in io.sphere.sdk.categories
-
Categories are used to organize products in a hierarchical structure.
- category(String) - Method in interface io.sphere.sdk.products.queries.CategoryOrderHintsQueryModel
-
- category(String) - Method in class io.sphere.sdk.products.search.CategoryOrderHintsSortSearchModel
-
- CategoryByIdGet - Interface in io.sphere.sdk.categories.queries
-
Retrieves a category by a known ID.
- CategoryByKeyGet - Interface in io.sphere.sdk.categories.queries
-
Retrieves a category by a known Key.
- CategoryCreateCommand - Interface in io.sphere.sdk.categories.commands
-
- CategoryCreatedMessage - Class in io.sphere.sdk.categories.messages
-
- CategoryDeleteCommand - Interface in io.sphere.sdk.categories.commands
-
Deletes a category.
- CategoryDocumentation - Class in io.sphere.sdk.meta
-
Create a tree of categories
- CategoryDraft - Interface in io.sphere.sdk.categories
-
Template for a new category.
- CategoryDraftBuilder - Class in io.sphere.sdk.categories
-
- CategoryDraftBuilder(List<AssetDraft>, CustomFieldsDraft, LocalizedString, String, String, LocalizedString, LocalizedString, LocalizedString, LocalizedString, String, ResourceIdentifier<Category>, LocalizedString) - Constructor for class io.sphere.sdk.categories.CategoryDraftBuilder
-
- CategoryDraftDsl - Class in io.sphere.sdk.categories
-
- CategoryExpansionModel<T> - Interface in io.sphere.sdk.categories.expansion
-
DSL class to create expansion path expressions.
- CategoryOrderHints - Class in io.sphere.sdk.products
-
- categoryOrderHints() - Method in interface io.sphere.sdk.products.queries.ProductDataQueryModel
-
- categoryOrderHints() - Method in interface io.sphere.sdk.products.queries.ProductProjectionQueryModel
-
- categoryOrderHints() - Method in class io.sphere.sdk.products.search.ProductDataSortSearchModel
-
- categoryOrderHints() - Method in class io.sphere.sdk.products.search.ProductProjectionSortSearchModel
-
- CategoryOrderHintsQueryModel<T> - Interface in io.sphere.sdk.products.queries
-
- CategoryOrderHintsSortSearchModel - Class in io.sphere.sdk.products.search
-
- CategoryQuery - Interface in io.sphere.sdk.categories.queries
-
{@doc.gen summary categories
- CategoryQueryBuilder - Class in io.sphere.sdk.categories.queries
-
- CategoryQueryModel - Interface in io.sphere.sdk.categories.queries
-
- CategorySlugChangedMessage - Class in io.sphere.sdk.categories.messages
-
- CategoryTree - Interface in io.sphere.sdk.categories
-
All categories in the project, represented as an in-memory tree.
- CategoryUpdateCommand - Interface in io.sphere.sdk.categories.commands
-
Updates a category.
- centAmount() - Method in interface io.sphere.sdk.queries.MoneyQueryModel
-
- centAmount() - Method in class io.sphere.sdk.search.model.MoneyFacetedSearchSearchModel
-
- centAmount() - Method in class io.sphere.sdk.search.model.MoneyFacetSearchModel
-
- centAmount() - Method in class io.sphere.sdk.search.model.MoneyFilterSearchModel
-
- centAmount() - Method in class io.sphere.sdk.search.model.MoneySortSearchModel
-
- centAmountOf(MonetaryAmount) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
- ChangeAddress - Class in io.sphere.sdk.customers.commands.updateactions
-
Replaces the address with the given ID, with the new address in the customer's addresses array.
- ChangeAmountPlanned - Class in io.sphere.sdk.payments.commands.updateactions
-
Changes how much money this payment intends to receive from the customer.
- ChangeAssetName - Class in io.sphere.sdk.categories.commands.updateactions
-
Updates the
assets
property of a
Category
.
- ChangeAssetName - Class in io.sphere.sdk.products.commands.updateactions
-
Changes the name of an asset.
- ChangeAssetOrder - Class in io.sphere.sdk.categories.commands.updateactions
-
Changes the order of the assets list.
- ChangeAssetOrder - Class in io.sphere.sdk.products.commands.updateactions
-
Changes the order of the assets list.
- ChangeAttributeConstraint - Class in io.sphere.sdk.producttypes.commands.updateactions
-
- ChangeAttributeDefinitionLabel - Class in io.sphere.sdk.producttypes.commands.updateactions
-
Changes the attribute definition label.
- ChangeAttributeName - Class in io.sphere.sdk.producttypes.commands.updateactions
-
- ChangeAttributeOrder - Class in io.sphere.sdk.producttypes.commands.updateactions
-
- ChangeAttributeOrderByName - Class in io.sphere.sdk.producttypes.commands.updateactions
-
- ChangeCartDiscounts - Class in io.sphere.sdk.discountcodes.commands.updateactions
-
Changes the cart discounts.
- ChangeCartPredicate - Class in io.sphere.sdk.cartdiscounts.commands.updateactions
-
Changes the cart predicate.
- ChangeCartsConfiguration - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
carts
property of a
Project
.
- ChangeCountries - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
countries
property of a
Project
.
- ChangeCountryTaxRateFallbackEnabled - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
carts
property of a
Project
.
- ChangeCurrencies - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
currencies
property of a
Project
.
- ChangeCustomLineItemMoney - Class in io.sphere.sdk.carts.commands.updateactions
-
Sets the monetary amount of the given custom line item.
- ChangeCustomLineItemMoney - Class in io.sphere.sdk.orderedits.commands.stagedactions
-
- ChangeCustomLineItemQuantity - Class in io.sphere.sdk.carts.commands.updateactions
-
Sets the quantity of the given custom line item.
- ChangeCustomLineItemQuantity - Class in io.sphere.sdk.orderedits.commands.stagedactions
-
- ChangeDescription - Class in io.sphere.sdk.channels.commands.updateactions
-
Changes the description of a channel.
- ChangeDescription - Class in io.sphere.sdk.producttypes.commands.updateactions
-
Changes the description.
- ChangeDestination - Class in io.sphere.sdk.extensions.commands.updateactions
-
Updates the
destination
property of a
Extension
.
- ChangeDestination - Class in io.sphere.sdk.subscriptions.commands.updateactions
-
- ChangeEmail - Class in io.sphere.sdk.customers.commands.updateactions
-
Updates the
email
property of a
Customer
.
- ChangeEnumKey - Class in io.sphere.sdk.producttypes.commands.updateactions
-
- ChangeEnumValueLabel - Class in io.sphere.sdk.types.commands.updateactions
-
- ChangeEnumValueOrder - Class in io.sphere.sdk.producttypes.commands.updateactions
-
Changes the enum value order.
- ChangeEnumValueOrder - Class in io.sphere.sdk.types.commands.updateactions
-
This action changes the order of enum values in an EnumType field definition.
- ChangeFieldDefinitionLabel - Class in io.sphere.sdk.types.commands.updateactions
-
Changes the label.
- ChangeFieldDefinitionOrder - Class in io.sphere.sdk.types.commands.updateactions
-
Changes the order of the fields.
- ChangeGroups - Class in io.sphere.sdk.discountcodes.commands.updateactions
-
- ChangeInitial - Class in io.sphere.sdk.states.commands.updateactions
-
Configures if a state can be an initial state.
- ChangeInputHint - Class in io.sphere.sdk.producttypes.commands.updateactions
-
Change Attribute Definition InputHint.
- ChangeInputHint(String, TextInputHint) - Constructor for class io.sphere.sdk.producttypes.commands.updateactions.ChangeInputHint
-
- ChangeInputHint - Class in io.sphere.sdk.types.commands.updateactions
-
- ChangeIsActive - Class in io.sphere.sdk.cartdiscounts.commands.updateactions
-
- ChangeIsActive - Class in io.sphere.sdk.productdiscounts.commands.updateactions
-
Enables or disables the discount.
- ChangeIsDefault - Class in io.sphere.sdk.shippingmethods.commands.updateactions
-
Sets a shipping method as default or not.
- ChangeIsSearchable - Class in io.sphere.sdk.producttypes.commands.updateactions
-
Change Attribute Definition IsSearchable.
- ChangeKey - Class in io.sphere.sdk.channels.commands.updateactions
-
Changes the key of a channel.
- ChangeKey - Class in io.sphere.sdk.states.commands.updateactions
-
Changes the key of a state.
- ChangeKey - Class in io.sphere.sdk.types.commands.updateactions
-
Updates the
key
property of a
Type
.
- ChangeLanguages - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
languages
property of a
Project
.
- ChangeLineItemQuantity - Class in io.sphere.sdk.carts.commands.updateactions
-
Sets the quantity of the given line item.
- ChangeLineItemQuantity - Class in io.sphere.sdk.orderedits.commands.stagedactions
-
- ChangeLineItemQuantity - Class in io.sphere.sdk.shoppinglists.commands.updateactions
-
Changes the line item quantity.
- ChangeLineItemsOrder - Class in io.sphere.sdk.shoppinglists.commands.updateactions
-
Changes the order of the line items.
- ChangeLocalizedEnumValueLabel - Class in io.sphere.sdk.producttypes.commands.updateactions
-
This action changes the label of a single enum value in a LocalizableEnumType attribute definition.
- ChangeLocalizedEnumValueLabel - Class in io.sphere.sdk.types.commands.updateactions
-
- ChangeLocalizedEnumValueOrder - Class in io.sphere.sdk.producttypes.commands.updateactions
-
Changes the localized enum value order.
- ChangeLocalizedEnumValueOrder - Class in io.sphere.sdk.types.commands.updateactions
-
This action changes the order of localized enum values in a LocalizedEnumType field definition.
- ChangeMasterVariant - Class in io.sphere.sdk.products.commands.updateactions
-
Sets the given variant as the new master variant.
- ChangeMessages - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
messages
property of a
Project
.
- ChangeMessagesConfiguration - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
messages
property of a
Project
.
- ChangeMessagesEnabled - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
messages
property of a
Project
.
- ChangeName - Class in io.sphere.sdk.cartdiscounts.commands.updateactions
-
- ChangeName - Class in io.sphere.sdk.categories.commands.updateactions
-
Changes the name of a category.
- ChangeName - Class in io.sphere.sdk.channels.commands.updateactions
-
Changes the name of a channel.
- ChangeName - Class in io.sphere.sdk.customergroups.commands.updateactions
-
- ChangeName - Class in io.sphere.sdk.customers.commands.updateactions
-
Changes customer's firstName, lastName, middleName and title fields.
- ChangeName - Class in io.sphere.sdk.productdiscounts.commands.updateactions
-
Changes the name.
- ChangeName - Class in io.sphere.sdk.products.commands.updateactions
-
Updates the name of a product.
- ChangeName - Class in io.sphere.sdk.productselections.commands.updateactions
-
- ChangeName - Class in io.sphere.sdk.producttypes.commands.updateactions
-
Changes the name of a product type.
- ChangeName - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
name
property of a
Project
.
- ChangeName - Class in io.sphere.sdk.shippingmethods.commands.updateactions
-
- ChangeName - Class in io.sphere.sdk.shoppinglists.commands.updateactions
-
Changes the name of the shopping list.
- ChangeName - Class in io.sphere.sdk.taxcategories.commands.updateactions
-
- ChangeName - Class in io.sphere.sdk.types.commands.updateactions
-
Changes the name of the type.
- ChangeName - Class in io.sphere.sdk.zones.commands.updateactions
-
Updates the name of a zone.
- ChangeOrderHint - Class in io.sphere.sdk.categories.commands.updateactions
-
Changes the order hint of a category.
- ChangeOrderState - Class in io.sphere.sdk.orders.commands.updateactions
-
Changes the order state.
- ChangeParent - Class in io.sphere.sdk.categories.commands.updateactions
-
Sets a concrete parent for the category.
- ChangePaymentState - Class in io.sphere.sdk.orders.commands.updateactions
-
Changes the payment state.
- ChangePlainEnumValueLabel - Class in io.sphere.sdk.producttypes.commands.updateactions
-
This action changes the label of a single enum value in an EnumType attribute definition.
- ChangePredicate - Class in io.sphere.sdk.productdiscounts.commands.updateactions
-
Changes the predicate of a discount.
- ChangePrice - Class in io.sphere.sdk.products.commands.updateactions
-
Replaces a price in the product variant's prices set.
- ChangeProductSearchIndexingEnabled - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
searchIndexing
property of a
Project
.
- ChangeProductSelection - Class in io.sphere.sdk.stores.commands.updateactions
-
Change a Product Selection.
- ChangeQuantity - Class in io.sphere.sdk.inventory.commands.updateactions
-
Changes the absolute quantity.
- ChangeRequiresDiscountCode - Class in io.sphere.sdk.cartdiscounts.commands.updateactions
-
Updates the
requiringDiscountCode
property of a
CartDiscount
.
- changes(List<ChangeSubscription>) - Method in class io.sphere.sdk.subscriptions.SubscriptionDraftBuilder
-
Sets the changes
property of this builder.
- ChangeShipmentState - Class in io.sphere.sdk.orders.commands.updateactions
-
Changes the shipment state.
- ChangeShoppingListsConfiguration - Class in io.sphere.sdk.projects.commands.updateactions
-
Updates the
shoppingLists
property of a
Project
.
- ChangeSlug - Class in io.sphere.sdk.categories.commands.updateactions
-
Changes the slug of a category.
- ChangeSlug - Class in io.sphere.sdk.products.commands.updateactions
-
Updates the slug of a product.
- ChangeSortOrder - Class in io.sphere.sdk.cartdiscounts.commands.updateactions
-
- ChangeSortOrder - Class in io.sphere.sdk.productdiscounts.commands.updateactions
-
Changes the sort order of a discount.
- ChangeStackingMode - Class in io.sphere.sdk.cartdiscounts.commands.updateactions
-
- ChangeSubscription - Interface in io.sphere.sdk.subscriptions
-
- ChangeTarget - Class in io.sphere.sdk.cartdiscounts.commands.updateactions
-
- ChangeTaxCalculationMode - Class in io.sphere.sdk.carts.commands.updateactions
-
Updates the
taxCalculationMode
property of a
Cart
.
- ChangeTaxCalculationMode - Class in io.sphere.sdk.orderedits.commands.stagedactions
-
- ChangeTaxCategory - Class in io.sphere.sdk.shippingmethods.commands.updateactions
-
Changes the tax category.
- ChangeTaxMode - Class in io.sphere.sdk.carts.commands.updateactions
-
- ChangeTaxMode - Class in io.sphere.sdk.orderedits.commands.stagedactions
-
- ChangeTaxRoundingMode - Class in io.sphere.sdk.carts.commands.updateactions
-
- ChangeTaxRoundingMode - Class in io.sphere.sdk.orderedits.commands.stagedactions
-
- ChangeTextLineItemName - Class in io.sphere.sdk.shoppinglists.commands.updateactions
-
Changes the text line item name.
- ChangeTextLineItemQuantity - Class in io.sphere.sdk.shoppinglists.commands.updateactions
-
Changes the text line item quantity.
- ChangeTextLineItemsOrder - Class in io.sphere.sdk.shoppinglists.commands.updateactions
-
Changes the order of the text line items.
- ChangeTransactionInteractionId - Class in io.sphere.sdk.payments.commands.updateactions
-
Changes the interactionId of a transaction.
- ChangeTransactionState - Class in io.sphere.sdk.payments.commands.updateactions
-
Changes state of a transaction.
- ChangeTransactionTimestamp - Class in io.sphere.sdk.payments.commands.updateactions
-
Changes timestamp of a transaction.
- ChangeTriggers - Class in io.sphere.sdk.extensions.commands.updateactions
-
Updates the
triggers
property of a
Extension
.
- ChangeType - Class in io.sphere.sdk.states.commands.updateactions
-
Changes the type for which the state can be used.
- ChangeValue - Class in io.sphere.sdk.cartdiscounts.commands.updateactions
-
- ChangeValue - Class in io.sphere.sdk.productdiscounts.commands.updateactions
-
Changes the value of the discount.
- Channel - Interface in io.sphere.sdk.channels
-
Channels represent a source or destination of different entities.
- channel() - Method in interface io.sphere.sdk.orders.expansion.SyncInfoExpansionModel
-
- channel() - Method in interface io.sphere.sdk.orders.queries.SyncInfoQueryModel
-
- channel() - Method in interface io.sphere.sdk.products.expansion.PriceExpansionModel
-
- channel(Referenceable<Channel>) - Method in class io.sphere.sdk.products.PriceBuilder
-
Sets the channel
property of this builder.
- channel(Referenceable<Channel>) - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- channel(ResourceIdentifier<Channel>) - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- channel() - Method in interface io.sphere.sdk.products.queries.PriceCollectionQueryModel
-
- channel() - Method in interface io.sphere.sdk.products.queries.PriceQueryModel
-
- ChannelByIdGet - Interface in io.sphere.sdk.channels.queries
-
Fetches a channel by a known ID.
- ChannelCreateCommand - Interface in io.sphere.sdk.channels.commands
-
Creates a channel.
- ChannelDeleteCommand - Interface in io.sphere.sdk.channels.commands
-
Deletes a channel.
- ChannelDraft - Interface in io.sphere.sdk.channels
-
Template to create a new Channel.
- ChannelDraftBuilder - Class in io.sphere.sdk.channels
-
- ChannelDraftDsl - Class in io.sphere.sdk.channels
-
- ChannelExpansionModel<T> - Interface in io.sphere.sdk.channels.expansion
-
DSL class to create expansion path expressions.
- channelId(String) - Method in interface io.sphere.sdk.products.search.ChannelsProductVariantAvailabilityFacetSearchModel
-
- channelId(String) - Method in interface io.sphere.sdk.products.search.ChannelsProductVariantAvailabilityFilterSearchModel
-
- channelId(String) - Method in interface io.sphere.sdk.products.search.ChannelsProductVariantAvailabilitySortSearchModel
-
- ChannelProductVariantAvailabilityFacetSearchModel<T> - Interface in io.sphere.sdk.products.search
-
- ChannelProductVariantAvailabilityFilterSearchModel<T> - Interface in io.sphere.sdk.products.search
-
- ChannelProductVariantAvailabilitySortSearchModel<T> - Interface in io.sphere.sdk.products.search
-
- ChannelQuery - Interface in io.sphere.sdk.channels.queries
-
{@doc.gen summary channels
- ChannelQueryBuilder - Class in io.sphere.sdk.channels.queries
-
- ChannelQueryModel - Interface in io.sphere.sdk.channels.queries
-
- ChannelRole - Enum in io.sphere.sdk.channels
-
Role of a channel.
- channels() - Method in interface io.sphere.sdk.products.search.ProductVariantAvailabilityFacetSearchModel
-
- channels() - Method in interface io.sphere.sdk.products.search.ProductVariantAvailabilityFilterSearchModel
-
- channels() - Method in interface io.sphere.sdk.products.search.ProductVariantAvailabilitySortSearchModel
-
- ChannelsProductVariantAvailabilityFacetSearchModel<T> - Interface in io.sphere.sdk.products.search
-
- ChannelsProductVariantAvailabilityFilterSearchModel<T> - Interface in io.sphere.sdk.products.search
-
- ChannelsProductVariantAvailabilitySortSearchModel<T> - Interface in io.sphere.sdk.products.search
-
- ChannelUpdateCommand - Interface in io.sphere.sdk.channels.commands
-
Updates a channel.
- city(String) - Method in class io.sphere.sdk.models.AddressBuilder
-
- city() - Method in interface io.sphere.sdk.queries.AddressQueryModel
-
- ClassificationShippingRateInput - Interface in io.sphere.sdk.carts
-
- ClassificationShippingRateInputDraft - Interface in io.sphere.sdk.carts
-
- ClassificationShippingRateInputDraftBuilder - Class in io.sphere.sdk.carts
-
- ClassificationShippingRateInputDraftDsl - Class in io.sphere.sdk.carts
-
- clazz - Variable in class io.sphere.sdk.annotations.processors.AbstractAnnotationProcessor
-
- clazz() - Method in class io.sphere.sdk.messages.MessageDerivateHint
-
- ClientErrorException - Exception in io.sphere.sdk.client
-
Exceptions for Composable Commerce HTTP responses with an error code 4xx.
- ClientErrorException(Integer) - Constructor for exception io.sphere.sdk.client.ClientErrorException
-
- ClientErrorException(String, Integer) - Constructor for exception io.sphere.sdk.client.ClientErrorException
-
- ClientErrorException(String, Throwable, Integer) - Constructor for exception io.sphere.sdk.client.ClientErrorException
-
- clientId(String) - Method in class io.sphere.sdk.client.SphereClientConfigBuilder
-
- ClientLogging - Interface in io.sphere.sdk.models
-
- clientSecret(String) - Method in class io.sphere.sdk.client.SphereClientConfigBuilder
-
- close() - Method in interface io.sphere.sdk.client.BlockingSphereClient
-
- close() - Method in class io.sphere.sdk.client.QueueSphereClientDecorator
-
- close(Throwable) - Method in interface io.sphere.sdk.client.ReasonAutoClosable
-
- close() - Method in interface io.sphere.sdk.client.SphereAccessTokenSupplier
-
- close() - Method in interface io.sphere.sdk.client.SphereClient
-
Shuts down the client to save resources like connections and threads.
- close() - Method in class io.sphere.sdk.client.SphereClientDecorator
-
- close() - Method in class io.sphere.sdk.client.TimeoutSphereClientDecorator
-
- close() - Method in interface io.sphere.sdk.client.TokensSupplier
-
- close() - Method in interface io.sphere.sdk.http.HttpClient
-
- close() - Method in class io.sphere.sdk.http.HttpClientAdapterBase
-
- close() - Method in interface io.sphere.sdk.retry.AsyncRetrySupervisor
-
- closeDelegate() - Method in class io.sphere.sdk.http.HttpClientAdapterBase
-
- CODE - Static variable in class io.sphere.sdk.customers.errors.CustomerInvalidCredentials
-
- CODE - Static variable in class io.sphere.sdk.customers.errors.CustomerInvalidCurrentPassword
-
- CODE - Static variable in class io.sphere.sdk.customers.errors.CustomerMissingTaxRateForCountry
-
- CODE - Static variable in class io.sphere.sdk.customers.errors.CustomerWeakPassword
-
- code() - Method in interface io.sphere.sdk.discountcodes.queries.DiscountCodeQueryModel
-
- CODE - Static variable in class io.sphere.sdk.extensions.errors.ExtensionBadResponseError
-
- CODE - Static variable in class io.sphere.sdk.extensions.errors.ExtensionNoResponseError
-
- CODE - Static variable in class io.sphere.sdk.extensions.errors.ExtensionUpdateActionsFailedError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.AnonymousIdAlreadyInUseError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.ConcurrentModificationError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.DuplicateFieldError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.DuplicateFieldWithConflictingResourceError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.ExternalOAuthFailedError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.FeatureRemovedError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.GeneralError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.InternalConstraintViolatedError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.InvalidField
-
- CODE - Static variable in class io.sphere.sdk.models.errors.InvalidInputError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.InvalidJsonInputError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.InvalidOperationError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.MaxResourceLimitExceededError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.ObjectNotFoundError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.OverCapacityError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.PendingOperationError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.QueryComplexityLimitExceededError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.QueryTimedOutError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.ReferencedResourceNotFoundError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.ReferenceExistsError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.RequiredField
-
- CODE - Static variable in class io.sphere.sdk.models.errors.ResourceNotFoundError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.SemanticError
-
- CODE - Static variable in class io.sphere.sdk.models.errors.SyntaxError
-
- CODE - Static variable in class io.sphere.sdk.orders.errors.DiscountCodeNonApplicableError
-
- CODE - Static variable in class io.sphere.sdk.orders.errors.InvalidItemShippingDetailsError
-
- CODE - Static variable in class io.sphere.sdk.orders.errors.MatchingPriceNotFoundError
-
- CODE - Static variable in class io.sphere.sdk.orders.errors.MissingTaxRateForCountryError
-
- CODE - Static variable in class io.sphere.sdk.orders.errors.OutOfStockError
-
- CODE - Static variable in class io.sphere.sdk.orders.errors.PriceChangedError
-
- CODE - Static variable in class io.sphere.sdk.orders.errors.ShippingMethodDoesNotMatchCartError
-
- CODE - Static variable in exception io.sphere.sdk.productdiscounts.errors.NoMatchingProductDiscountFoundError
-
- CODE - Static variable in class io.sphere.sdk.products.errors.DuplicateAttributeValueError
-
- CODE - Static variable in class io.sphere.sdk.products.errors.DuplicateAttributeValuesError
-
- CODE - Static variable in class io.sphere.sdk.products.errors.DuplicatePriceScopeError
-
- CODE - Static variable in class io.sphere.sdk.products.errors.DuplicateVariantValuesError
-
- CODE - Static variable in class io.sphere.sdk.products.errors.SearchDeactivatedError
-
- CODE - Static variable in class io.sphere.sdk.products.errors.SearchExecutionFailureError
-
- CODE - Static variable in class io.sphere.sdk.products.errors.SearchFacetPathNotFoundError
-
- CODE - Static variable in class io.sphere.sdk.products.errors.SearchIndexingInProgressError
-
- CODE - Static variable in class io.sphere.sdk.producttypes.errors.AttributeDefinitionAlreadyExistsError
-
- CODE - Static variable in class io.sphere.sdk.producttypes.errors.AttributeDefinitionTypeConflictError
-
- CODE - Static variable in class io.sphere.sdk.producttypes.errors.AttributeNameDoesNotExistError
-
- CODE - Static variable in class io.sphere.sdk.producttypes.errors.DuplicateEnumValuesError
-
- CODE - Static variable in class io.sphere.sdk.producttypes.errors.EnumKeyAlreadyExistsError
-
- CODE - Static variable in class io.sphere.sdk.producttypes.errors.EnumKeyDoesNotExistError
-
- CODE - Static variable in class io.sphere.sdk.producttypes.errors.EnumValueIsUsedError
-
- CODE - Static variable in class io.sphere.sdk.producttypes.errors.EnumValuesMustMatchError
-
- CODE - Static variable in class io.sphere.sdk.projects.error.LanguageUsedInStores
-
- CODE - Static variable in class io.sphere.sdk.shippingmethods.errors.EditPreviewFailedError
-
- CODE - Static variable in class io.sphere.sdk.shippingmethods.errors.InvalidItemShippingDetailsError
-
- CODE - Static variable in class io.sphere.sdk.stores.error.MissingRoleOnChannelError
-
- CODE - Static variable in class io.sphere.sdk.stores.error.ProjectNotConfiguredForLanguagesError
-
- collection(String, Integer) - Static method in class io.sphere.sdk.expansion.ExpansionModelImpl
-
- CollectionQueryModel<T> - Interface in io.sphere.sdk.queries
-
- Command<T> - Interface in io.sphere.sdk.commands
-
A command represents a request to update the state of Composable Commerce entities.
- CommandEndpointAnnotationProcessor<A extends Annotation> - Class in io.sphere.sdk.annotations.processors
-
- CommandEndpointAnnotationProcessor(Class<A>) - Constructor for class io.sphere.sdk.annotations.processors.CommandEndpointAnnotationProcessor
-
- CommandImpl<T> - Class in io.sphere.sdk.commands
-
Base class to implement commands using the Jackson JSON mapper.
- CommandImpl() - Constructor for class io.sphere.sdk.commands.CommandImpl
-
- comment(String) - Method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
Sets the comment
property of this builder.
- comment() - Method in interface io.sphere.sdk.orderedits.queries.OrderEditQueryModel
-
- comment(String) - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftBuilder
-
Sets the comment
property of this builder.
- comment(String) - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftBuilder
-
Sets the comment
property of this builder.
- company(String) - Method in class io.sphere.sdk.models.AddressBuilder
-
- company() - Method in interface io.sphere.sdk.queries.AddressQueryModel
-
- compareServices(Object, Object) - Static method in class javax.money.spi.OSGiPriorityAwareServiceProvider
-
- compareTo(MonetaryAmount) - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- compareTo(MonetaryAmount) - Method in class io.sphere.sdk.utils.MoneyImpl
-
- comparingCategoryOrderHints(String) - Static method in class io.sphere.sdk.products.ProductProjectionComparators
-
- CompletableFutureUtils - Class in io.sphere.sdk.utils
-
- completedAt(ZonedDateTime) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- ConcurrentModificationError - Class in io.sphere.sdk.models.errors
-
Version conflict error.
- ConcurrentModificationException - Exception in io.sphere.sdk.client
-
HTTP code 409 response.
- ConcurrentModificationException() - Constructor for exception io.sphere.sdk.client.ConcurrentModificationException
-
- ConcurrentModificationException(ErrorResponse) - Constructor for exception io.sphere.sdk.client.ConcurrentModificationException
-
- configureObjectMapper(ObjectMapper) - Static method in class io.sphere.sdk.json.SphereJsonUtils
-
Configures an existing external Jackson ObjectMapper
with all modules and settings required
to serialize and deserialize according to JVM SDK conventions and capabilities:
Jackson Parameter Names Module (requires Java compiler flag -parameters)
Jackson JavaTime Module
Jackson config: do not fail on unknown properties
Jackson config: do not fail on empty beans
Jackson config: do not use getters as setters
Jackson config: do not serialize null value properties
Serialize LinkedHashSet as Set
Composable Commerce LocalizedString
Composable Commerce Time, Date, DateTime
Composable Commerce Money for Java MonetaryAmount
Composable Commerce Enum
- CONFLICT_409 - Static variable in class io.sphere.sdk.http.HttpStatusCode
-
- ConstructionDocumentation - Class in io.sphere.sdk.meta
-
This documentation is about creating objects.
- container() - Method in interface io.sphere.sdk.customobjects.queries.CustomObjectQueryModel
-
- container(String) - Method in class io.sphere.sdk.sequencegenerators.CustomObjectBigIntegerNumberGeneratorConfigBuilder
-
Sets the container for the
CustomObject
storing the last used sequence number.
- ContainerAndKey - Interface in io.sphere.sdk.models
-
- contains(CountryCode) - Method in interface io.sphere.sdk.zones.Zone
-
Looks up the locations and checks if the country is present.
- containsAll(Iterable<String>) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFilterSearchModel
-
Creates filters for a product which needs to be in all categories directly (categoryIds
).
- containsAll(Iterable<E>) - Method in interface io.sphere.sdk.queries.SphereEnumerationCollectionQueryModel
-
- containsAll(Iterable<String>) - Method in interface io.sphere.sdk.queries.StringCollectionQueryModel
-
- containsAll(Iterable<String>) - Method in interface io.sphere.sdk.search.model.FacetedSearchSearchModel
-
Generates an expression to select all elements with attributes matching all the given values, along with the facet for all terms for this attribute.
- containsAll(Iterable<V>) - Method in interface io.sphere.sdk.search.model.FilterSearchModel
-
Generates an expression to select all elements with attributes matching all the given values.
- containsAll(Iterable<String>) - Method in class io.sphere.sdk.search.model.RangeTermFacetedSearchSearchModel
-
Generates an expression to select all elements with attributes matching all the given values, along with the facet for all terms for this attribute.
- containsAll(Iterable<V>) - Method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Generates an expression to select all elements with attributes matching all the given values.
- containsAll(Iterable<String>) - Method in class io.sphere.sdk.search.model.TermFacetedSearchSearchModel
-
- containsAll(Iterable<V>) - Method in interface io.sphere.sdk.search.model.TermFilterExistsAndMissingSearchModel
-
- containsAll(Iterable<V>) - Method in interface io.sphere.sdk.search.model.TermFilterSearchModel
-
- containsAll(Iterable<V>) - Method in class io.sphere.sdk.search.model.TermFilterSearchModelImpl
-
Generates an expression to select all elements with attributes matching all the given values.
- containsAllAsString(Iterable<String>) - Method in interface io.sphere.sdk.search.model.FilterSearchModel
-
Generates an expression to select all elements with attributes matching all the given values.
- containsAllAsString(Iterable<String>) - Method in interface io.sphere.sdk.search.model.TermFilterExistsAndMissingSearchModel
-
- containsAllAsString(Iterable<String>) - Method in interface io.sphere.sdk.search.model.TermFilterSearchModel
-
- containsAllIncludingSubtrees(Iterable<String>) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFilterSearchModel
-
Creates filters for a product which needs to be in all categories or its descendants.
- containsAny(Iterable<String>) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFilterSearchModel
-
Creates filters for a product which needs to be in any of the given categories directly (categoryIds
).
- containsAny(Iterable<E>) - Method in interface io.sphere.sdk.queries.SphereEnumerationCollectionQueryModel
-
- containsAny(Iterable<String>) - Method in interface io.sphere.sdk.queries.StringCollectionQueryModel
-
- containsAny(Iterable<String>) - Method in interface io.sphere.sdk.search.model.FacetedSearchSearchModel
-
Generates an expression to select all elements with attributes matching any of the given values, along with the facet for all terms for this attribute.
- containsAny(Iterable<V>) - Method in interface io.sphere.sdk.search.model.FilterSearchModel
-
Generates an expression to select all elements with attributes matching any of the given values.
- containsAny(Iterable<String>) - Method in class io.sphere.sdk.search.model.RangeTermFacetedSearchSearchModel
-
Generates an expression to select all elements with attributes matching any of the given values, along with the facet for all terms for this attribute.
- containsAny(Iterable<V>) - Method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Generates an expression to select all elements with attributes matching any of the given values.
- containsAny(Iterable<String>) - Method in class io.sphere.sdk.search.model.TermFacetedSearchSearchModel
-
- containsAny(Iterable<V>) - Method in interface io.sphere.sdk.search.model.TermFilterExistsAndMissingSearchModel
-
- containsAny(Iterable<V>) - Method in interface io.sphere.sdk.search.model.TermFilterSearchModel
-
- containsAny(Iterable<V>) - Method in class io.sphere.sdk.search.model.TermFilterSearchModelImpl
-
Generates an expression to select all elements with attributes matching any of the given values.
- containsAnyAsString(Iterable<String>) - Method in interface io.sphere.sdk.search.model.FilterSearchModel
-
Generates an expression to select all elements with attributes matching any of the given values.
- containsAnyAsString(Iterable<String>) - Method in interface io.sphere.sdk.search.model.TermFilterExistsAndMissingSearchModel
-
- containsAnyAsString(Iterable<String>) - Method in interface io.sphere.sdk.search.model.TermFilterSearchModel
-
- containsAnyIncludingSubtrees(Iterable<String>) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFilterSearchModel
-
Creates filters for a product which needs to be in any of the given categories or its descendants.
- CONTENT_ENCODING - Static variable in class io.sphere.sdk.http.HttpHeaders
-
- CONTENT_LENGTH - Static variable in class io.sphere.sdk.http.HttpHeaders
-
- CONTENT_TYPE - Static variable in class io.sphere.sdk.http.HttpHeaders
-
- contentType(String) - Method in class io.sphere.sdk.models.AssetSourceBuilder
-
- ContributorDocumentation - Class in io.sphere.sdk.meta
-
Developing the SDK
- convert(Attribute, Referenceable<ProductType>) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
Formats a product attribute as String.
- convert(Attribute, Referenceable<ProductType>) - Method in interface io.sphere.sdk.products.attributes.ProductAttributeConverter
-
- convert(Attribute, Referenceable<ProductType>) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertBoolean(Boolean, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertBoolean(Boolean, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertBooleanSet(Set<Boolean>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertBooleanSet(Set<Boolean>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertCategoryReference(Reference<Category>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertCategoryReference(Reference<Category>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertCategoryReferenceSet(Set<Reference<Category>>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertCategoryReferenceSet(Set<Reference<Category>>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertChannelReference(Reference<Channel>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertChannelReference(Reference<Channel>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertChannelReferenceSet(Set<Reference<Channel>>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertChannelReferenceSet(Set<Reference<Channel>>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertDate(LocalDate, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertDate(LocalDate, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertDateSet(Set<LocalDate>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertDateSet(Set<LocalDate>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertDateTime(ZonedDateTime, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertDateTime(ZonedDateTime, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertDateTimeSet(Set<ZonedDateTime>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertDateTimeSet(Set<ZonedDateTime>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertDouble(Double, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertDouble(Double, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertDoubleSet(Set<Double>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertDoubleSet(Set<Double>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertEnumValue(EnumValue, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertEnumValue(EnumValue, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertEnumValueSet(Set<EnumValue>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertEnumValueSet(Set<EnumValue>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertGrossToNetPrice(MonetaryAmount, double) - Static method in class io.sphere.sdk.products.PriceUtils
-
Converts the given gross amount (i.e.
- convertInteger(Integer, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertInteger(Integer, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertIntegerSet(Set<Integer>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertIntegerSet(Set<Integer>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertLocalizedEnumValue(LocalizedEnumValue, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertLocalizedEnumValue(LocalizedEnumValue, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertLocalizedEnumValueSet(Set<LocalizedEnumValue>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertLocalizedEnumValueSet(Set<LocalizedEnumValue>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertLocalizedString(LocalizedString, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertLocalizedString(LocalizedString, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertLocalizedStringSet(Set<LocalizedString>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertLocalizedStringSet(Set<LocalizedString>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertLong(Long, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertLong(Long, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertLongSet(Set<Long>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertLongSet(Set<Long>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertMoney(MonetaryAmount, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertMoney(MonetaryAmount, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertMoneySet(Set<MonetaryAmount>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertMoneySet(Set<MonetaryAmount>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertNetToGrossPrice(MonetaryAmount, double) - Static method in class io.sphere.sdk.products.PriceUtils
-
Converts the given net amount (i.e.
- convertProductReference(Reference<Product>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertProductReference(Reference<Product>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertProductReferenceSet(Set<Reference<Product>>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertProductReferenceSet(Set<Reference<Product>>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertProductTypeReference(Reference<ProductType>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertProductTypeReference(Reference<ProductType>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertProductTypeReferenceSet(Set<Reference<ProductType>>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertProductTypeReferenceSet(Set<Reference<ProductType>>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertReference(Reference<X>, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertReferenceSet(Set<Reference<X>>, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertString(String, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertString(String, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertStringListMapToList(Map<String, List<String>>) - Static method in interface io.sphere.sdk.http.NameValuePair
-
- convertStringMapToList(Map<String, String>) - Static method in interface io.sphere.sdk.http.NameValuePair
-
- convertStringSet(Set<String>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertStringSet(Set<String>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertTime(LocalTime, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertTime(LocalTime, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertTimeSet(Set<LocalTime>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- convertTimeSet(Set<LocalTime>, Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- convertToJavaType(TypeReference<T>) - Static method in class io.sphere.sdk.json.SphereJsonUtils
-
- convertToJavaType(Class<?>) - Static method in class io.sphere.sdk.json.SphereJsonUtils
-
- convertToStringListMap(List<NameValuePair>) - Static method in interface io.sphere.sdk.http.NameValuePair
-
- convertToStringMap(List<NameValuePair>) - Static method in interface io.sphere.sdk.http.NameValuePair
-
- convertWithProductType(Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- copyAttributes(List<AttributeDefinition>) - Static method in interface io.sphere.sdk.producttypes.ProductTypeDraft
-
- copyBuilder() - Method in class io.sphere.sdk.commands.MetaModelByIdDeleteCommandImpl
-
- copyBuilder() - Method in class io.sphere.sdk.commands.MetaModelCreateCommandImpl
-
- copyBuilder() - Method in class io.sphere.sdk.commands.MetaModelUpdateCommandDslImpl
-
- copyBuilder() - Method in class io.sphere.sdk.queries.MetaModelGetDslImpl
-
- copyBuilder() - Method in class io.sphere.sdk.queries.MetaModelHeadDslImpl
-
- copyBuilder() - Method in class io.sphere.sdk.queries.MetaModelQueryDslImpl
-
- copyBuilder() - Method in class io.sphere.sdk.search.MetaModelSearchDslImpl
-
- CopyFactoryMethod - Annotation Type in io.sphere.sdk.annotations
-
- copyOf(Map<K, V>) - Static method in class io.sphere.sdk.utils.SphereInternalUtils
-
- CorrelationIdGenerator - Interface in io.sphere.sdk.client
-
Generates correlation ids for each request.
- correlationIdGenerator(CorrelationIdGenerator) - Method in class io.sphere.sdk.client.SphereClientConfigBuilder
-
- CorrelationIdRequestDecorator<T> - Class in io.sphere.sdk.client.correlationid
-
- count - Variable in class io.sphere.sdk.queries.PagedResultBase
-
- count() - Method in interface io.sphere.sdk.reviews.queries.ReviewRatingStatisticsQueryModel
-
- count() - Method in class io.sphere.sdk.reviews.search.ReviewRatingStatisticsFacetedSearchSearchModel
-
- count() - Method in class io.sphere.sdk.reviews.search.ReviewRatingStatisticsFacetSearchModel
-
- count() - Method in class io.sphere.sdk.reviews.search.ReviewRatingStatisticsFilterSearchModel
-
- count() - Method in class io.sphere.sdk.reviews.search.ReviewRatingStatisticsSortSearchModel
-
- country() - Method in interface io.sphere.sdk.carts.queries.CartLikeQueryModel
-
- country() - Method in class io.sphere.sdk.carts.queries.CartLikeQueryModelImpl
-
- country() - Method in interface io.sphere.sdk.carts.queries.CartQueryModel
-
- country(CountryCode) - Method in class io.sphere.sdk.models.AddressBuilder
-
- country(CountryCode) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- country() - Method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- country(CountryCode) - Method in class io.sphere.sdk.products.PriceBuilder
-
Sets the country
property of this builder.
- country(CountryCode) - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- country() - Method in interface io.sphere.sdk.products.queries.PriceCollectionQueryModel
-
- country() - Method in interface io.sphere.sdk.products.queries.PriceQueryModel
-
- country() - Method in interface io.sphere.sdk.queries.AddressQueryModel
-
- country() - Method in interface io.sphere.sdk.taxcategories.queries.TaxRateQueryModel
-
- country() - Method in interface io.sphere.sdk.zones.queries.EmbeddedLocationsCollectionQueryModel
-
- country() - Method in interface io.sphere.sdk.zones.queries.LocationsCollectionQueryModel
-
- countryCode(String) - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- CountryQueryModel<T> - Interface in io.sphere.sdk.queries
-
- countryQueryModel(String) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- create() - Static method in class io.sphere.sdk.client.SphereApacheHttpClientFactory
-
- create() - Static method in class io.sphere.sdk.client.SphereAsyncHttpClientFactory
-
Deprecated.
- CREATE_ANONYMOUS_TOKEN - Static variable in class io.sphere.sdk.client.SphereProjectScope
-
Grants access to the access tokens for Anonymous Sessions.
- createAttributeEntry(Attribute, Referenceable<ProductType>) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
Creates an entry for a single attribute with translated and formatted label and value by requiring a reference to the product type.
- createAttributeEntryList(ProductVariant, Reference<ProductType>, List<String>) - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
Creates a list of attribute translated and formatted labels and values.
- createBuilderMethod(TypeName, List<ExecutableElement>) - Method in class io.sphere.sdk.annotations.processors.generators.ResourceDraftValueGenerator
-
- createClient(SphereClientConfig) - Method in interface io.sphere.sdk.client.SphereClientFactory
-
Creates a standard client with configurable service URLs.
- createClient(SphereApiConfig, SphereAccessTokenSupplier) - Method in interface io.sphere.sdk.client.SphereClientFactory
-
Creates a client with a custom service to provide access tokens.
- createClient(String, String, String) - Method in interface io.sphere.sdk.client.SphereClientFactory
-
Creates a standard client suitable for online shops.
- createClient(String, String, String, String, String) - Method in interface io.sphere.sdk.client.SphereClientFactory
-
Creates a standard client suitable for online shops.
- createClientOfApiConfigAndAccessToken(SphereApiConfig, String, HttpClient) - Method in interface io.sphere.sdk.client.SphereClientFactory
-
Creates a client which relies on an access token and does not refresh it, it reuses an existing http client.
- createClientOfApiConfigAndAccessToken(SphereApiConfig, String) - Method in interface io.sphere.sdk.client.SphereClientFactory
-
Creates a client which relies on an access token and does not refresh it.
- CreateCommand<T> - Interface in io.sphere.sdk.commands
-
Command to create a resource in Composable Commerce.
- CreateCommandEndpointAnnotationProcessor<A extends Annotation> - Class in io.sphere.sdk.annotations.processors
-
- CreateCommandEndpointAnnotationProcessor() - Constructor for class io.sphere.sdk.annotations.processors.CreateCommandEndpointAnnotationProcessor
-
- CreateCommandImpl<T,D> - Class in io.sphere.sdk.commands
-
Base class to implement commands which create a resource in Composable Commerce.
- CreateCommandImpl(D, String, JavaType) - Constructor for class io.sphere.sdk.commands.CreateCommandImpl
-
- createConstructor(List<PropertyGenModel>, ClassName, String, Modifier...) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionGenerator
-
- createCopyFactoryMethod(TypeElement, ClassName, List<ExecutableElement>) - Method in class io.sphere.sdk.annotations.processors.generators.DraftBuilderGenerator
-
- createCurrencyByCode(String) - Static method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- createCurrencyByCode(String) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
- createCustomObjectJavaType(Class<?>, Class<?>) - Static method in class io.sphere.sdk.json.SphereJsonUtils
-
- CREATED_201 - Static variable in class io.sphere.sdk.http.HttpStatusCode
-
- createdAt() - Method in interface io.sphere.sdk.apiclient.queries.ApiClientQueryModel
-
- createdAt() - Method in class io.sphere.sdk.products.search.ProductDataFacetedSearchSearchModel
-
- createdAt() - Method in class io.sphere.sdk.products.search.ProductDataFacetSearchModel
-
- createdAt() - Method in class io.sphere.sdk.products.search.ProductDataSortSearchModel
-
- createdAt() - Method in class io.sphere.sdk.products.search.ProductProjectionFacetedSearchSearchModel
-
- createdAt() - Method in class io.sphere.sdk.products.search.ProductProjectionFacetSearchModel
-
- createdAt() - Method in class io.sphere.sdk.products.search.ProductProjectionFilterSearchModel
-
- createdAt() - Method in class io.sphere.sdk.products.search.ProductProjectionSortSearchModel
-
- createdAt() - Method in interface io.sphere.sdk.queries.ResourceQueryModel
-
- createdAt() - Method in class io.sphere.sdk.queries.ResourceQueryModelImpl
-
- CreatedBy - Interface in io.sphere.sdk.models
-
- createField(PropertyGenModel, Modifier) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionGenerator
-
- createFieldBuilder(PropertyGenModel, Modifier) - Method in class io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator
-
- createGetMethod(PropertyGenModel) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionGenerator
-
- createHttpClient() - Method in interface io.sphere.sdk.client.SphereClientFactory
-
- createHttpTestDouble(Function<HttpRequestIntent, HttpResponse>) - Static method in class io.sphere.sdk.client.TestDoubleSphereClientFactory
-
Creates a test double for a Composable Commerce client which enables to fake http responses from the API.
- createMethodElementStream() - Method in class io.sphere.sdk.annotations.processors.GenerationRules
-
- createObjectTestDouble(Function<HttpRequestIntent, Object>) - Static method in class io.sphere.sdk.client.TestDoubleSphereClientFactory
-
Creates a test double for a Composable Commerce client which enables to fake the results of the client as Java object.
- createWithMethod(List<PropertyGenModel>, PropertyGenModel, ClassName) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionGenerator
-
- CreationTimestamped - Interface in io.sphere.sdk.models
-
Interface for objects which have a timestamp for their creation time.
- currency() - Method in class io.sphere.sdk.search.model.MoneyFacetedSearchSearchModel
-
- currency() - Method in class io.sphere.sdk.search.model.MoneyFacetSearchModel
-
- currency() - Method in class io.sphere.sdk.search.model.MoneyFilterSearchModel
-
- currency() - Method in class io.sphere.sdk.search.model.MoneySortSearchModel
-
- currencyCode() - Method in interface io.sphere.sdk.queries.MoneyQueryModel
-
- currencyCode(String) - Method in class io.sphere.sdk.shippingmethods.PriceFunctionBuilder
-
Sets the currencyCode
property of this builder.
- currencyCodeModel(String) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- CurrencyCodeQueryModel<T> - Interface in io.sphere.sdk.queries
-
- CurrencySearchModel<T> - Class in io.sphere.sdk.search.model
-
- CurrencySearchModel(SearchModel<T>, String) - Constructor for class io.sphere.sdk.search.model.CurrencySearchModel
-
- current() - Method in interface io.sphere.sdk.products.expansion.ProductCatalogExpansionModel
-
- current() - Method in interface io.sphere.sdk.products.queries.ProductCatalogDataQueryModel
-
- currentValue() - Method in class io.sphere.sdk.products.search.ScopedPriceFilterSearchModel
-
- currentValue() - Method in interface io.sphere.sdk.products.search.ScopedPriceSortSearchModel
-
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.customergroups.CustomerGroupDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.orders.LineItemImportDraftBuilder
-
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.orders.ParcelDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFields) - Method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFields) - Method in class io.sphere.sdk.products.PriceBuilder
-
Sets the custom
property of this builder.
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- custom() - Method in interface io.sphere.sdk.products.queries.PriceCollectionQueryModel
-
- custom(CustomFields) - Method in class io.sphere.sdk.shoppinglists.LineItemDraftBuilder
-
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder
-
Sets the custom
property of this builder.
- custom(CustomFieldsDraft) - Method in class io.sphere.sdk.stores.StoreDraftBuilder
-
Sets the custom
property of this builder.
- Custom - Interface in io.sphere.sdk.types
-
Interface to mark objects which can have custom fields, it has nothing to do with CustomObjects.
- custom() - Method in class io.sphere.sdk.types.queries.CustomResourceQueryModelImpl
-
- custom() - Method in interface io.sphere.sdk.types.queries.WithCustomQueryModel
-
- CustomDraft - Interface in io.sphere.sdk.types
-
Interface for draft objects which include custom fields.
- Customer - Interface in io.sphere.sdk.customers
-
A customer is a person purchasing products.
- customer() - Method in interface io.sphere.sdk.customers.expansion.CustomerSignInResultExpansionModel
-
- customer() - Method in interface io.sphere.sdk.payments.expansion.PaymentExpansionModel
-
- customer(Referenceable<Customer>) - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
Sets the customer
property of this builder.
- customer() - Method in interface io.sphere.sdk.payments.queries.PaymentQueryModel
-
- customer() - Method in interface io.sphere.sdk.reviews.expansion.ReviewExpansionModel
-
- customer() - Method in interface io.sphere.sdk.reviews.queries.ReviewQueryModel
-
- customer(ResourceIdentifiable<Customer>) - Method in class io.sphere.sdk.reviews.ReviewDraftBuilder
-
- customer() - Method in interface io.sphere.sdk.shoppinglists.expansion.ShoppingListExpansionModel
-
- customer() - Method in interface io.sphere.sdk.shoppinglists.queries.ShoppingListQueryModel
-
- customer(Referenceable<Customer>) - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftBuilder
-
- CustomerAddressAddedMessage - Class in io.sphere.sdk.customers.messages
-
This message is the result of the
AddAddress
update action.
- CustomerAddressChangedMessage - Class in io.sphere.sdk.customers.messages
-
- CustomerAddressRemovedMessage - Class in io.sphere.sdk.customers.messages
-
- CustomerByEmailTokenGet - Interface in io.sphere.sdk.customers.queries
-
Fetches a customer by a known email token.
- CustomerByIdGet - Interface in io.sphere.sdk.customers.queries
-
Fetches a customer by a known ID.
- CustomerByKeyGet - Interface in io.sphere.sdk.customers.queries
-
Fetches a customer by a known key.
- CustomerByPasswordTokenGet - Interface in io.sphere.sdk.customers.queries
-
Fetches a cusomter by a known password reset token.
- CustomerChangePasswordCommand - Class in io.sphere.sdk.customers.commands
-
Updates the password of a customer.
- CustomerCompanyNameSetMessage - Class in io.sphere.sdk.customers.messages
-
- CustomerCreateCommand - Interface in io.sphere.sdk.customers.commands
-
Creates/signs up a customer.
- CustomerCreatedMessage - Class in io.sphere.sdk.customers.messages
-
- CustomerCreateEmailTokenCommand - Class in io.sphere.sdk.customers.commands
-
Creates a token for verifying the customer's email.
- CustomerCreatePasswordTokenCommand - Class in io.sphere.sdk.customers.commands
-
- CustomerDateOfBirthSetMessage - Class in io.sphere.sdk.customers.messages
-
- CustomerDeleteCommand - Interface in io.sphere.sdk.customers.commands
-
Deletes a customer.
- CustomerDeletedMessage - Class in io.sphere.sdk.customers.messages
-
- CustomerDraft - Interface in io.sphere.sdk.customers
-
- CustomerDraftBuilder - Class in io.sphere.sdk.customers
-
- CustomerDraftDsl - Class in io.sphere.sdk.customers
-
- customerEmail() - Method in interface io.sphere.sdk.carts.queries.CartLikeQueryModel
-
- customerEmail() - Method in class io.sphere.sdk.carts.queries.CartLikeQueryModelImpl
-
- customerEmail() - Method in interface io.sphere.sdk.carts.queries.CartQueryModel
-
- customerEmail(String) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- customerEmail() - Method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- CustomerEmailChangedMessage - Class in io.sphere.sdk.customers.messages
-
This message is the result of the
ChangeEmail
update action.
- CustomerEmailVerifiedMessage - Class in io.sphere.sdk.customers.messages
-
- CustomerExpansionModel<T> - Interface in io.sphere.sdk.customers.expansion
-
- customerGroup() - Method in interface io.sphere.sdk.carts.expansion.CartExpansionModel
-
- customerGroup() - Method in interface io.sphere.sdk.carts.expansion.CartLikeExpansionModel
-
- customerGroup() - Method in class io.sphere.sdk.carts.expansion.CartLikeExpansionModelImpl
-
- customerGroup() - Method in interface io.sphere.sdk.carts.queries.CartLikeQueryModel
-
- customerGroup() - Method in class io.sphere.sdk.carts.queries.CartLikeQueryModelImpl
-
- customerGroup() - Method in interface io.sphere.sdk.carts.queries.CartQueryModel
-
- CustomerGroup - Interface in io.sphere.sdk.customergroups
-
A Customer can be a member of a customer group (e.g.
- customerGroup() - Method in interface io.sphere.sdk.customers.expansion.CustomerExpansionModel
-
- customerGroup() - Method in interface io.sphere.sdk.customers.queries.CustomerQueryModel
-
- customerGroup() - Method in interface io.sphere.sdk.orders.expansion.OrderExpansionModel
-
- customerGroup(Referenceable<CustomerGroup>) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- customerGroup() - Method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- customerGroup() - Method in interface io.sphere.sdk.products.expansion.PriceExpansionModel
-
- customerGroup(Referenceable<CustomerGroup>) - Method in class io.sphere.sdk.products.PriceBuilder
-
Sets the customerGroup
property of this builder.
- customerGroup(Referenceable<CustomerGroup>) - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- customerGroup(ResourceIdentifier<CustomerGroup>) - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- customerGroup() - Method in interface io.sphere.sdk.products.queries.PriceCollectionQueryModel
-
- customerGroup() - Method in interface io.sphere.sdk.products.queries.PriceQueryModel
-
- CustomerGroupByIdGet - Interface in io.sphere.sdk.customergroups.queries
-
Fetches a customer group based on a known ID.
- CustomerGroupByKeyGet - Interface in io.sphere.sdk.customergroups.queries
-
Fetches a customer group based on a known key.
- CustomerGroupCreateCommand - Interface in io.sphere.sdk.customergroups.commands
-
Creates a new customer group
final String name = "creation demo customer group name";
final CustomerGroup customerGroup = client().executeBlocking(CustomerGroupCreateCommand.of(name));
assertThat(customerGroup.getName()).isEqualTo(name);
See the test code.
- CustomerGroupDeleteCommand - Interface in io.sphere.sdk.customergroups.commands
-
Deletes a customer group.
- CustomerGroupDraft - Interface in io.sphere.sdk.customergroups
-
Draft for a customer group.
- CustomerGroupDraftBuilder - Class in io.sphere.sdk.customergroups
-
- CustomerGroupDraftDsl - Class in io.sphere.sdk.customergroups
-
- CustomerGroupExpansionModel<T> - Interface in io.sphere.sdk.customergroups.expansion
-
DSL class to create expansion path expressions.
- customerGroupId(String) - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- CustomerGroupQuery - Interface in io.sphere.sdk.customergroups.queries
-
{@doc.gen summary customer groups
- CustomerGroupQueryBuilder - Class in io.sphere.sdk.customergroups.queries
-
- CustomerGroupQueryModel - Interface in io.sphere.sdk.customergroups.queries
-
- CustomerGroupSetMessage - Class in io.sphere.sdk.customers.messages
-
- CustomerGroupUpdateCommand - Interface in io.sphere.sdk.customergroups.commands
-
Updates a customer group.
- customerId() - Method in interface io.sphere.sdk.carts.queries.CartLikeQueryModel
-
- customerId() - Method in class io.sphere.sdk.carts.queries.CartLikeQueryModelImpl
-
- customerId() - Method in interface io.sphere.sdk.carts.queries.CartQueryModel
-
- customerId(String) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- customerId() - Method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- CustomerInStoreByEmailTokenGet - Interface in io.sphere.sdk.customers.queries
-
- CustomerInStoreByIdGet - Interface in io.sphere.sdk.customers.queries
-
- CustomerInStoreByKeyGet - Interface in io.sphere.sdk.customers.queries
-
- CustomerInStoreByPasswordTokenGet - Interface in io.sphere.sdk.customers.queries
-
- CustomerInStoreChangePasswordCommand - Class in io.sphere.sdk.customers.commands
-
Updates the password of a customer with a store.
- CustomerInStoreCreateCommand - Interface in io.sphere.sdk.customers.commands
-
- CustomerInStoreCreateEmailTokenCommand - Class in io.sphere.sdk.customers.commands
-
- CustomerInStoreCreatePasswordTokenCommand - Class in io.sphere.sdk.customers.commands
-
- CustomerInStoreDeleteCommand - Interface in io.sphere.sdk.customers.commands
-
- CustomerInStorePasswordResetCommand - Class in io.sphere.sdk.customers.commands
-
- CustomerInStoreQuery - Interface in io.sphere.sdk.customers.queries
-
- CustomerInStoreQueryBuilder - Class in io.sphere.sdk.customers.queries
-
- CustomerInStoreSignInCommand - Class in io.sphere.sdk.customers.commands
-
- CustomerInStoreUpdateCommand - Interface in io.sphere.sdk.customers.commands
-
- CustomerInStoreVerifyEmailCommand - Class in io.sphere.sdk.customers.commands
-
- CustomerInvalidCredentials - Class in io.sphere.sdk.customers.errors
-
A customer endpoint specific error, the account with the given credentials have not been found.
- CustomerInvalidCurrentPassword - Class in io.sphere.sdk.customers.errors
-
- CustomerMissingTaxRateForCountry - Class in io.sphere.sdk.customers.errors
-
- CustomerName - Class in io.sphere.sdk.customers
-
Parameter object for customer title, firstName, middleName and lastName.
- customerNumber() - Method in interface io.sphere.sdk.customers.queries.CustomerQueryModel
-
- CustomerPasswordResetCommand - Class in io.sphere.sdk.customers.commands
-
Sets a new password for the customer.
- CustomerPasswordUpdatedMessage - Class in io.sphere.sdk.customers.messages
-
- CustomerQuery - Interface in io.sphere.sdk.customers.queries
-
{@doc.gen summary customers
- CustomerQueryBuilder - Class in io.sphere.sdk.customers.queries
-
- CustomerQueryModel - Interface in io.sphere.sdk.customers.queries
-
- CustomerSignInCommand - Class in io.sphere.sdk.customers.commands
-
Retrieves the authenticated customer (a customer that matches the given email/password pair).
- CustomerSignInResult - Interface in io.sphere.sdk.customers
-
A return type to contain a customer and the corresponding cart if there is any.
- CustomerSignInResultExpansionModel<T> - Interface in io.sphere.sdk.customers.expansion
-
- CustomerToken - Interface in io.sphere.sdk.customers
-
A token belonging to a customer to verify an email address or resetting the password.
- CustomerUpdateCommand - Interface in io.sphere.sdk.customers.commands
-
Updates a customer.
- CustomerVerifyEmailCommand - Class in io.sphere.sdk.customers.commands
-
Verifies customer's email using a token.
- CustomerWeakPassword - Class in io.sphere.sdk.customers.errors
-
- customFields(CustomFields) - Method in class io.sphere.sdk.models.AddressBuilder
-
- customFields(CustomFieldsDraft) - Method in class io.sphere.sdk.models.AddressBuilder
-
- CustomFields - Interface in io.sphere.sdk.types
-
Custom fields for object extending
Custom
.
- CustomFieldsDraft - Interface in io.sphere.sdk.types
-
- CustomFieldsDraftBuilder - Class in io.sphere.sdk.types
-
- CustomLineItem - Interface in io.sphere.sdk.carts
-
A custom line item is a generic item that can be added to the cart but is not bound to a product.
- CustomLineItemCollectionQueryModel<T> - Interface in io.sphere.sdk.carts.queries
-
- CustomLineItemDraft - Interface in io.sphere.sdk.carts
-
Draft for adding a custom line item to the cart.
- CustomLineItemExpansionModel<T> - Interface in io.sphere.sdk.carts.expansion
-
- customLineItemId(String) - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftBuilder
-
Sets the customLineItemId
property of this builder.
- CustomLineItemImportDraft - Interface in io.sphere.sdk.orders
-
- CustomLineItemImportDraftBuilder - Class in io.sphere.sdk.orders
-
- CustomLineItemReturnItem - Interface in io.sphere.sdk.orders
-
- CustomLineItemReturnItemDraft - Interface in io.sphere.sdk.orders
-
- CustomLineItemReturnItemDraftBuilder - Class in io.sphere.sdk.orders
-
- CustomLineItemReturnItemDraftDsl - Class in io.sphere.sdk.orders
-
- customLineItems() - Method in interface io.sphere.sdk.carts.expansion.CartExpansionModel
-
- customLineItems(int) - Method in interface io.sphere.sdk.carts.expansion.CartExpansionModel
-
- customLineItems() - Method in interface io.sphere.sdk.carts.expansion.CartLikeExpansionModel
-
- customLineItems(int) - Method in interface io.sphere.sdk.carts.expansion.CartLikeExpansionModel
-
- customLineItems() - Method in class io.sphere.sdk.carts.expansion.CartLikeExpansionModelImpl
-
- customLineItems(int) - Method in class io.sphere.sdk.carts.expansion.CartLikeExpansionModelImpl
-
- customLineItems() - Method in interface io.sphere.sdk.carts.queries.CartLikeQueryModel
-
- customLineItems() - Method in class io.sphere.sdk.carts.queries.CartLikeQueryModelImpl
-
- customLineItems() - Method in interface io.sphere.sdk.carts.queries.CartQueryModel
-
- customLineItems(List<CustomLineItemImportDraft>) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- customLineItems() - Method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- CustomLineItemsTarget - Class in io.sphere.sdk.cartdiscounts
-
- CustomLineItemStateTransitionMessage - Class in io.sphere.sdk.orders.messages
-
- CustomObject<T> - Interface in io.sphere.sdk.customobjects
-
Custom objects are a way to store arbitrary JSON-formatted data in Composable Commerce.
- CustomObjectBigIntegerNumberGenerator - Class in io.sphere.sdk.sequencegenerators
-
Creates an incremental sequence of BigInteger numbers, storing the last used number in a CustomObject.
- CustomObjectBigIntegerNumberGeneratorConfig - Class in io.sphere.sdk.sequencegenerators
-
Configuration for the Sequential number generator.
- CustomObjectBigIntegerNumberGeneratorConfigBuilder - Class in io.sphere.sdk.sequencegenerators
-
- CustomObjectByIdGet<T> - Interface in io.sphere.sdk.customobjects.queries
-
- CustomObjectByKeyGet<T> - Interface in io.sphere.sdk.customobjects.queries
-
- CustomObjectCustomJsonMappingByKeyGet<T> - Class in io.sphere.sdk.customobjects.queries
-
- CustomObjectCustomJsonMappingByKeyGet(String, String) - Constructor for class io.sphere.sdk.customobjects.queries.CustomObjectCustomJsonMappingByKeyGet
-
- CustomObjectCustomJsonMappingUpsertCommand<T> - Class in io.sphere.sdk.customobjects.commands
-
Command for creating or updating a custom object using a custom JSON mapper.
- CustomObjectCustomJsonMappingUpsertCommand() - Constructor for class io.sphere.sdk.customobjects.commands.CustomObjectCustomJsonMappingUpsertCommand
-
- CustomObjectDeleteCommand<T> - Interface in io.sphere.sdk.customobjects.commands
-
Deletes a custom object in Composable Commerce.
- CustomObjectDocumentation - Class in io.sphere.sdk.meta
-
- CustomObjectDraft<T> - Class in io.sphere.sdk.customobjects
-
A draft for creating or updating custom objects.
- CustomObjectExpansionModel<T> - Interface in io.sphere.sdk.customobjects.expansion
-
Placeholder for custom object reference expansion.
- CustomObjectQuery<T> - Interface in io.sphere.sdk.customobjects.queries
-
Queries custom objects.
- CustomObjectQueryBuilder<T> - Class in io.sphere.sdk.customobjects.queries
-
- CustomObjectQueryModel<T extends CustomObject<?>> - Interface in io.sphere.sdk.customobjects.queries
-
Meta model to explore for which fields can be queried in a CustomObject.
- CustomObjectUpsertCommand<T> - Interface in io.sphere.sdk.customobjects.commands
-
Command for creating or updating a custom object.
- CustomObjectUtils - Class in io.sphere.sdk.customobjects
-
Internal utility class.
- CustomQueryModel<T> - Interface in io.sphere.sdk.types.queries
-
- CustomResourceQueryModelImpl<T> - Class in io.sphere.sdk.types.queries
-
Internal base class
- CustomResourceQueryModelImpl(QueryModel<T>, String) - Constructor for class io.sphere.sdk.types.queries.CustomResourceQueryModelImpl
-
- CustomSuggestTokenizer - Class in io.sphere.sdk.search.tokenizer
-
- CustomUpdateActionsGenerator - Class in io.sphere.sdk.annotations.processors.generators
-
- CustomUpdateActionsGenerator(Elements, Types, Messager) - Constructor for class io.sphere.sdk.annotations.processors.generators.CustomUpdateActionsGenerator
-
- GATEWAY_TIMEOUT_504 - Static variable in class io.sphere.sdk.http.HttpStatusCode
-
- GatewayTimeoutException - Exception in io.sphere.sdk.client
-
This error might occur on long running processes
such as deletion of resources with connections to other resources.
- GatewayTimeoutException(String) - Constructor for exception io.sphere.sdk.client.GatewayTimeoutException
-
- GatewayTimeoutException() - Constructor for exception io.sphere.sdk.client.GatewayTimeoutException
-
- GeneralError - Class in io.sphere.sdk.models.errors
-
- generate(TypeElement) - Method in class io.sphere.sdk.annotations.processors.CommandEndpointAnnotationProcessor
-
- generate(TypeElement) - Method in class io.sphere.sdk.annotations.processors.HasBuilderAnnotationProcessor
-
- generate(TypeElement) - Method in class io.sphere.sdk.annotations.processors.HasByFieldGetEndpointAnnotationProcessor
-
- generate(ExecutableElement) - Method in class io.sphere.sdk.annotations.processors.HasCustomUpdateActionsProcessor
-
- generate(TypeElement) - Method in class io.sphere.sdk.annotations.processors.HasQueryEndpointAnnotationProcessor
-
- generate(TypeElement) - Method in class io.sphere.sdk.annotations.processors.HasQueryModelAnnotationProcessor
-
- generate(TypeElement) - Method in class io.sphere.sdk.annotations.processors.HasQueryModelImplementationAnnotationProcessor
-
- generate(ExecutableElement) - Method in class io.sphere.sdk.annotations.processors.HasUpdateActionProcessor
-
- generate(TypeElement) - Method in class io.sphere.sdk.annotations.processors.HasUpdateActionsProcessor
-
- generate(TypeElement) - Method in class io.sphere.sdk.annotations.processors.ResourceDraftValueAnnotationProcessor
-
- generate(TypeElement) - Method in class io.sphere.sdk.annotations.processors.ResourceValueAnnotationProcessor
-
- generateCodeGeneratedInfo(TypeElement, String) - Method in class io.sphere.sdk.annotations.processors.AbstractAnnotationProcessor
-
- generateCodeGeneratedInfo(TypeElement) - Method in class io.sphere.sdk.annotations.processors.AbstractAnnotationProcessor
-
- generateCodeGeneratedInfoForHandlebarsTemplate(TypeElement, String) - Method in class io.sphere.sdk.annotations.processors.AbstractAnnotationProcessor
-
- generateType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.generators.DraftBuilderGenerator
-
- generateType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.generators.HasBuilderGenerator
-
- generateType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.generators.ResourceDraftValueGenerator
-
- generateType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.generators.ResourceValueImplGenerator
-
- generateType(ExecutableElement) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionGenerator
-
- generateTypes(ExecutableElement) - Method in class io.sphere.sdk.annotations.processors.generators.CustomUpdateActionsGenerator
-
- generateTypes(TypeElement) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionsGenerator
-
- generateUpdateAction(ExecutableElement) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionGenerator
-
- generateUpdateAction(ExecutableElement, HasUpdateAction) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionGenerator
-
- generateUpdateAction(TypeElement, ExecutableElement) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionsGenerator
-
- GenerationRules - Class in io.sphere.sdk.annotations.processors
-
Some rules to apply while generating a class model with a ClassModelBuilder
.
- GenerationRules(TypeElement, ClassModelBuilder) - Constructor for class io.sphere.sdk.annotations.processors.GenerationRules
-
- GenerationRules.InterfaceRule - Class in io.sphere.sdk.annotations.processors
-
A rule concerning the interface of a class which is processed.
- GenerationRules.MethodRule - Class in io.sphere.sdk.annotations.processors
-
A rule concerning a bean getter of a class which is processed.
- GenericMessage<T> - Interface in io.sphere.sdk.messages
-
Message for a certain Java type.
- GenericMessageImpl<R> - Class in io.sphere.sdk.messages
-
- GenericMessageImpl(String, Long, ZonedDateTime, ZonedDateTime, JsonNode, Long, Long, String, UserProvidedIdentifiers, Class<R>) - Constructor for class io.sphere.sdk.messages.GenericMessageImpl
-
- GeoJSON - Interface in io.sphere.sdk.models
-
Base class for GeoJSON objects that provides the required annotation
to map to the correct sub type via the type
property.
- GeoJSONQueryModel<T> - Interface in io.sphere.sdk.queries
-
- geoJSONQueryModel(String) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- geoLocation(GeoJSON) - Method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
Sets the geoLocation
property of this builder.
- geoLocation() - Method in interface io.sphere.sdk.channels.queries.ChannelQueryModel
-
- get() - Method in interface io.sphere.sdk.client.CorrelationIdGenerator
-
Creates a new correlation id.
- get() - Method in interface io.sphere.sdk.client.SphereAccessTokenSupplier
-
Returns the OAuth access token.
- get() - Method in interface io.sphere.sdk.client.TokensSupplier
-
- get() - Method in interface io.sphere.sdk.models.Builder
-
- get(Locale) - Method in class io.sphere.sdk.models.LocalizedString
-
Searches the translation for an exact locale by using null
in the case the locale ist not present.
- get(String) - Method in class io.sphere.sdk.models.LocalizedString
-
Searches the translation for a locale specified in IETF BCP 47 by language tag string.
- get(Iterable<Locale>) - Method in class io.sphere.sdk.models.LocalizedString
-
Searches the translation for some exact locales in the order they appear and using null as result if no match could be found.
- get(String) - Method in class io.sphere.sdk.products.CategoryOrderHints
-
- get(ProductProjectionType) - Method in interface io.sphere.sdk.products.ProductCatalogData
-
- Get<T> - Interface in io.sphere.sdk.queries
-
- getAccessKey() - Method in class io.sphere.sdk.subscriptions.AwsCredentials
-
- getAccessKey() - Method in interface io.sphere.sdk.subscriptions.SnsDestination
-
- getAccessKey() - Method in interface io.sphere.sdk.subscriptions.SqsDestination
-
- getAccessSecret() - Method in class io.sphere.sdk.subscriptions.AwsCredentials
-
- getAccessSecret() - Method in interface io.sphere.sdk.subscriptions.SnsDestination
-
- getAccessSecret() - Method in interface io.sphere.sdk.subscriptions.SqsDestination
-
- getAccessToken() - Method in interface io.sphere.sdk.client.Tokens
-
- getAccessTokenValiditySeconds() - Method in interface io.sphere.sdk.apiclient.ApiClient
-
- getAccessTokenValiditySeconds() - Method in interface io.sphere.sdk.apiclient.ApiClientDraft
-
- getAccessTokenValiditySeconds() - Method in class io.sphere.sdk.apiclient.ApiClientDraftDsl
-
- getAction() - Method in interface io.sphere.sdk.commands.StagedUpdateAction
-
- getAction() - Method in class io.sphere.sdk.commands.StagedUpdateActionBase
-
- getAction() - Method in interface io.sphere.sdk.commands.UpdateAction
-
- getAction() - Method in class io.sphere.sdk.commands.UpdateActionImpl
-
- getActions() - Method in interface io.sphere.sdk.extensions.Trigger
-
- getActions() - Method in interface io.sphere.sdk.projects.commands.ProjectUpdateCommand
-
The list of update actions to be performed on the project.
- getActive() - Method in class io.sphere.sdk.stores.commands.updateactions.ChangeProductSelection
-
- getActive() - Method in interface io.sphere.sdk.stores.ProductSelectionSetting
-
- getActive() - Method in interface io.sphere.sdk.stores.ProductSelectionSettingDraft
-
- getActive() - Method in class io.sphere.sdk.stores.ProductSelectionSettingDraftBuilder
-
- getActive() - Method in class io.sphere.sdk.stores.ProductSelectionSettingDraftDsl
-
- getAddedAt() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getAddedAt() - Method in interface io.sphere.sdk.carts.LineItem
-
- getAddedAt() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getAddedAt() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddLineItem
-
- getAddedAt() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddTextLineItem
-
- getAddedAt() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getAddedAt() - Method in interface io.sphere.sdk.shoppinglists.LineItemDraft
-
- getAddedAt() - Method in class io.sphere.sdk.shoppinglists.LineItemDraftDsl
-
- getAddedAt() - Method in interface io.sphere.sdk.shoppinglists.TextLineItem
-
- getAddedAt() - Method in interface io.sphere.sdk.shoppinglists.TextLineItemDraft
-
- getAddedAt() - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder
-
- getAddedAt() - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftDsl
-
- getAddedProductSelections() - Method in class io.sphere.sdk.stores.messages.StoreProductSelectionsChangedMessage
-
- getAdditionalAddressInfo() - Method in class io.sphere.sdk.models.Address
-
- getAdditionalNotes() - Method in exception io.sphere.sdk.models.SphereException
-
- getAdditionalStreetInfo() - Method in class io.sphere.sdk.models.Address
-
- getAddress() - Method in class io.sphere.sdk.carts.commands.updateactions.AddItemShippingAddress
-
- getAddress() - Method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddress
-
- getAddress() - Method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddress
-
- getAddress() - Method in class io.sphere.sdk.carts.commands.updateactions.UpdateItemShippingAddress
-
- getAddress() - Method in interface io.sphere.sdk.channels.Channel
-
The address of a channel.
- getAddress() - Method in interface io.sphere.sdk.channels.ChannelDraft
-
- getAddress() - Method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
- getAddress() - Method in class io.sphere.sdk.channels.commands.updateactions.SetAddress
-
- getAddress() - Method in class io.sphere.sdk.customers.commands.updateactions.AddAddress
-
- getAddress() - Method in class io.sphere.sdk.customers.commands.updateactions.ChangeAddress
-
- getAddress() - Method in class io.sphere.sdk.customers.messages.CustomerAddressAddedMessage
-
- getAddress() - Method in class io.sphere.sdk.customers.messages.CustomerAddressChangedMessage
-
- getAddress() - Method in class io.sphere.sdk.customers.messages.CustomerAddressRemovedMessage
-
- getAddress() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddItemShippingAddress
-
- getAddress() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetBillingAddress
-
- getAddress() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddress
-
- getAddress() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndCustomShippingMethod
-
- getAddress() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndShippingMethod
-
- getAddress() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.UpdateItemShippingAddress
-
- getAddress() - Method in class io.sphere.sdk.orders.commands.updateactions.AddDelivery
-
- getAddress() - Method in class io.sphere.sdk.orders.commands.updateactions.AddItemShippingAddress
-
- getAddress() - Method in class io.sphere.sdk.orders.commands.updateactions.SetBillingAddress
-
- getAddress() - Method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryAddress
-
- getAddress() - Method in class io.sphere.sdk.orders.commands.updateactions.SetShippingAddress
-
- getAddress() - Method in class io.sphere.sdk.orders.commands.updateactions.UpdateItemShippingAddress
-
- getAddress() - Method in interface io.sphere.sdk.orders.Delivery
-
- getAddress() - Method in class io.sphere.sdk.orders.messages.DeliveryAddressSetMessage
-
- getAddress() - Method in class io.sphere.sdk.orders.messages.OrderBillingAddressSetMessage
-
- getAddress() - Method in class io.sphere.sdk.orders.messages.OrderShippingAddressSetMessage
-
- getAddressById(String) - Method in interface io.sphere.sdk.customers.Customer
-
- getAddresses() - Method in interface io.sphere.sdk.customers.Customer
-
Addresses related to this customer.
- getAddresses() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getAddressId() - Method in class io.sphere.sdk.customers.commands.updateactions.AddBillingAddressId
-
- getAddressId() - Method in class io.sphere.sdk.customers.commands.updateactions.AddShippingAddressId
-
- getAddressId() - Method in class io.sphere.sdk.customers.commands.updateactions.ChangeAddress
-
- getAddressId() - Method in class io.sphere.sdk.customers.commands.updateactions.RemoveAddress
-
- getAddressId() - Method in class io.sphere.sdk.customers.commands.updateactions.RemoveBillingAddressId
-
- getAddressId() - Method in class io.sphere.sdk.customers.commands.updateactions.RemoveShippingAddressId
-
- getAddressId() - Method in class io.sphere.sdk.customers.commands.updateactions.SetAddressCustomType
-
- getAddressId() - Method in class io.sphere.sdk.customers.commands.updateactions.SetDefaultBillingAddress
-
- getAddressId() - Method in class io.sphere.sdk.customers.commands.updateactions.SetDefaultShippingAddress
-
- getAddressKey() - Method in class io.sphere.sdk.carts.commands.updateactions.RemoveItemShippingAddress
-
- getAddressKey() - Method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomField
-
- getAddressKey() - Method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomType
-
- getAddressKey() - Method in interface io.sphere.sdk.carts.ItemShippingTarget
-
- getAddressKey() - Method in class io.sphere.sdk.customers.commands.updateactions.AddBillingAddressId
-
- getAddressKey() - Method in class io.sphere.sdk.customers.commands.updateactions.AddShippingAddressId
-
- getAddressKey() - Method in class io.sphere.sdk.customers.commands.updateactions.ChangeAddress
-
- getAddressKey() - Method in class io.sphere.sdk.customers.commands.updateactions.RemoveAddress
-
- getAddressKey() - Method in class io.sphere.sdk.customers.commands.updateactions.RemoveBillingAddressId
-
- getAddressKey() - Method in class io.sphere.sdk.customers.commands.updateactions.RemoveShippingAddressId
-
- getAddressKey() - Method in class io.sphere.sdk.customers.commands.updateactions.SetDefaultBillingAddress
-
- getAddressKey() - Method in class io.sphere.sdk.customers.commands.updateactions.SetDefaultShippingAddress
-
- getAddressKey() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveItemShippingAddress
-
- getAddressKey() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetItemShippingAddressCustomField
-
- getAddressKey() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetItemShippingAddressCustomType
-
- getAddressKey() - Method in class io.sphere.sdk.orders.commands.updateactions.RemoveItemShippingAddress
-
- getAlias() - Method in interface io.sphere.sdk.search.model.FacetSearchModel
-
The alias related to the facet.
- getAll() - Method in interface io.sphere.sdk.producttypes.ProductTypeLocalRepository
-
- getAllAsFlatList() - Method in interface io.sphere.sdk.categories.CategoryTree
-
All categories as a flat list.
- getAllPropertyMethods(TypeElement) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
Returns all property methods - including inherited methods - as stream.
- getAllVariants() - Method in interface io.sphere.sdk.products.ProductData
-
- getAllVariants() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getAmount() - Method in interface io.sphere.sdk.carts.TaxPortion
-
- getAmount() - Method in class io.sphere.sdk.payments.commands.updateactions.ChangeAmountPlanned
-
- getAmount() - Method in class io.sphere.sdk.payments.commands.updateactions.SetAmountPaid
-
Deprecated.
- getAmount() - Method in class io.sphere.sdk.payments.commands.updateactions.SetAmountRefunded
-
Deprecated.
- getAmount() - Method in class io.sphere.sdk.payments.commands.updateactions.SetAuthorization
-
Deprecated.
- getAmount() - Method in interface io.sphere.sdk.payments.Transaction
-
- getAmount() - Method in interface io.sphere.sdk.payments.TransactionDraft
-
- getAmount() - Method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
- getAmount() - Method in interface io.sphere.sdk.taxcategories.ExternalTaxRateDraft
-
Percentage in the range of [0..1].
- getAmount() - Method in interface io.sphere.sdk.taxcategories.SubRate
-
- getAmount() - Method in interface io.sphere.sdk.taxcategories.TaxRate
-
- getAmount() - Method in interface io.sphere.sdk.taxcategories.TaxRateDraft
-
- getAmountAuthorized() - Method in interface io.sphere.sdk.payments.Payment
-
- getAmountAuthorized() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getAmountAuthorized() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getAmountAuthorized() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getAmountPaid() - Method in interface io.sphere.sdk.payments.Payment
-
- getAmountPaid() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getAmountPaid() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getAmountPaid() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getAmountPlanned() - Method in interface io.sphere.sdk.payments.Payment
-
- getAmountPlanned() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getAmountPlanned() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getAmountPlanned() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getAmountRefunded() - Method in interface io.sphere.sdk.payments.Payment
-
- getAmountRefunded() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getAmountRefunded() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getAmountRefunded() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getAncestors() - Method in interface io.sphere.sdk.categories.Category
-
- getAnnotationClass() - Method in class io.sphere.sdk.annotations.processors.AbstractAnnotationProcessor
-
- getAnnotationMirror(Element, Class<? extends Annotation>) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getAnnotations() - Method in class io.sphere.sdk.annotations.processors.FieldModel
-
- getAnnotationValue(Element, Class<? extends Annotation>, String) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getAnonymousCart() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreSignInCommand
-
- getAnonymousCart() - Method in class io.sphere.sdk.customers.commands.CustomerSignInCommand
-
- getAnonymousCart() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getAnonymousCartId() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreSignInCommand
-
- getAnonymousCartId() - Method in class io.sphere.sdk.customers.commands.CustomerSignInCommand
-
- getAnonymousCartId() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getAnonymousCartSignInMode() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreSignInCommand
-
- getAnonymousCartSignInMode() - Method in class io.sphere.sdk.customers.commands.CustomerSignInCommand
-
- getAnonymousId() - Method in interface io.sphere.sdk.carts.Cart
-
- getAnonymousId() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getAnonymousId() - Method in interface io.sphere.sdk.carts.CartLike
-
Identifies carts and orders belonging to an anonymous session (the customer has not signed up/in yet).
- getAnonymousId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetAnonymousId
-
- getAnonymousId() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreSignInCommand
-
- getAnonymousId() - Method in class io.sphere.sdk.customers.commands.CustomerSignInCommand
-
- getAnonymousId() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getAnonymousId() - Method in interface io.sphere.sdk.models.ClientLogging
-
- getAnonymousId() - Method in class io.sphere.sdk.payments.commands.updateactions.SetAnonymousId
-
- getAnonymousId() - Method in interface io.sphere.sdk.payments.Payment
-
Identifies payments belonging to an anonymous session (the customer has not signed up/in yet).
- getAnonymousId() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
Identifies payments belonging to an anonymous session (the customer has not signed up/in yet).
- getAnonymousId() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getAnonymousId() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getAnonymousId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetAnonymousId
-
- getAnonymousId() - Method in interface io.sphere.sdk.shoppinglists.ShoppingList
-
- getAnonymousId() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getAnonymousId() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getApartment() - Method in class io.sphere.sdk.models.Address
-
- getApiUrl() - Method in interface io.sphere.sdk.client.SphereApiConfig
-
- getApiUrl() - Method in class io.sphere.sdk.client.SphereClientConfig
-
- getAppliedAt() - Method in interface io.sphere.sdk.orderedits.OrderEditApplied
-
- getArn() - Method in interface io.sphere.sdk.extensions.AWSLambdaDestination
-
- getAsMap() - Method in class io.sphere.sdk.products.CategoryOrderHints
-
- getAsset() - Method in class io.sphere.sdk.categories.commands.updateactions.AddAsset
-
- getAsset() - Method in class io.sphere.sdk.products.commands.updateactions.AddAsset
-
- getAssetId() - Method in class io.sphere.sdk.categories.commands.updateactions.ChangeAssetName
-
- getAssetId() - Method in class io.sphere.sdk.categories.commands.updateactions.RemoveAsset
-
- getAssetId() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetCustomField
-
- getAssetId() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetCustomType
-
- getAssetId() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetDescription
-
- getAssetId() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetKey
-
- getAssetId() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetSources
-
- getAssetId() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetTags
-
- getAssetId() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- getAssetId() - Method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- getAssetId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- getAssetId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- getAssetId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- getAssetId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetKey
-
- getAssetId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- getAssetId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- getAssetKey() - Method in class io.sphere.sdk.categories.commands.updateactions.ChangeAssetName
-
- getAssetKey() - Method in class io.sphere.sdk.categories.commands.updateactions.RemoveAsset
-
- getAssetKey() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetCustomField
-
- getAssetKey() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetCustomType
-
- getAssetKey() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetDescription
-
- getAssetKey() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetKey
-
- getAssetKey() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetSources
-
- getAssetKey() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetTags
-
- getAssetKey() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- getAssetKey() - Method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- getAssetKey() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- getAssetKey() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- getAssetKey() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- getAssetKey() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetKey
-
- getAssetKey() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- getAssetKey() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- getAssetOrder() - Method in class io.sphere.sdk.categories.commands.updateactions.ChangeAssetOrder
-
- getAssetOrder() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetOrder
-
- getAssets() - Method in interface io.sphere.sdk.categories.Category
-
- getAssets() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getAssets() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getAssets() - Method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
Deprecated.
- getAssets() - Method in interface io.sphere.sdk.products.ProductVariant
-
- getAssets() - Method in interface io.sphere.sdk.products.ProductVariantDraft
-
- getAssets() - Method in class io.sphere.sdk.products.ProductVariantDraftDsl
-
- getAssetsDrafts() - Method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
- getAssociatedRequest() - Method in interface io.sphere.sdk.http.HttpResponse
-
- getAttempt() - Method in interface io.sphere.sdk.retry.RetryContext
-
Counts the failed attempts so far for one original service method call.
- getAttribute(String) - Method in interface io.sphere.sdk.products.AttributeContainer
-
- getAttribute() - Method in class io.sphere.sdk.products.errors.DuplicateAttributeValueError
-
- getAttribute(String) - Method in interface io.sphere.sdk.producttypes.AttributeDefinitionContainer
-
- getAttribute() - Method in class io.sphere.sdk.producttypes.commands.updateactions.AddAttributeDefinition
-
- getAttribute(String) - Method in interface io.sphere.sdk.producttypes.ProductType
-
- getAttributeConstraint() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinition
-
Describes how an attribute or a set of attributes should be validated across all variants of a product.
- getAttributeConstraint() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- getAttributeConstraint() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinitionDraft
-
- getAttributeConstraint() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftDsl
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.AddEnumValue
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.AddLocalizedEnumValue
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeConstraint
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeDefinitionLabel
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeName
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeEnumKey
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeEnumValueOrder
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeInputHint
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeIsSearchable
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeLocalizedEnumValueLabel
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeLocalizedEnumValueOrder
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangePlainEnumValueLabel
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.RemoveEnumValues
-
- getAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.SetInputTip
-
- getAttributeNames() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeOrderByName
-
- getAttributes() - Method in interface io.sphere.sdk.orders.ProductVariantImportDraft
-
- getAttributes() - Method in interface io.sphere.sdk.products.AttributeContainer
-
- getAttributes() - Method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
- getAttributes() - Method in class io.sphere.sdk.products.errors.DuplicateAttributeValuesError
-
- getAttributes() - Method in interface io.sphere.sdk.products.ProductVariantDraft
-
- getAttributes() - Method in class io.sphere.sdk.products.ProductVariantDraftDsl
-
- getAttributes() - Method in interface io.sphere.sdk.producttypes.AttributeDefinitionContainer
-
- getAttributes() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeOrder
-
Deprecated.
- getAttributes() - Method in interface io.sphere.sdk.producttypes.ProductType
-
- getAttributes() - Method in interface io.sphere.sdk.producttypes.ProductTypeDraft
-
- getAttributes() - Method in class io.sphere.sdk.producttypes.ProductTypeDraftBuilder
-
- getAttributes() - Method in class io.sphere.sdk.producttypes.ProductTypeDraftDsl
-
- getAttributeType() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinition
-
Describes the type of the attribute.
- getAttributeType() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- getAttributeType() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinitionDraft
-
- getAttributeType() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftDsl
-
- getAuthentication() - Method in interface io.sphere.sdk.extensions.HttpDestination
-
- getAuthenticationMode() - Method in interface io.sphere.sdk.customers.Customer
-
- getAuthenticationMode() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getAuthMode() - Method in class io.sphere.sdk.customers.commands.updateactions.SetAuthenticationMode
-
- getAuthorizationHeader() - Method in interface io.sphere.sdk.projects.ExternalOAuth
-
- getAuthorizedUntil() - Method in interface io.sphere.sdk.payments.Payment
-
- getAuthorizedUntil() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getAuthorizedUntil() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getAuthorizedUntil() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getAuthorName() - Method in class io.sphere.sdk.reviews.commands.updateactions.SetAuthorName
-
- getAuthorName() - Method in interface io.sphere.sdk.reviews.Review
-
The name of the author which created this review or null.
- getAuthorName() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
- getAuthorName() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getAuthUrl() - Method in interface io.sphere.sdk.client.SphereAuthConfig
-
The url of the OAuth server including http protocol and ports.
- getAuthUrl() - Method in class io.sphere.sdk.client.SphereClientConfig
-
- getAvailability() - Method in interface io.sphere.sdk.products.ProductVariant
-
The availability is set if the variant is tracked by the inventory.
- getAvailableQuantity() - Method in interface io.sphere.sdk.inventory.AvailabilityInfo
-
- getAvailableQuantity() - Method in class io.sphere.sdk.inventory.AvailabilityInfoBuilder
-
- getAvailableQuantity() - Method in interface io.sphere.sdk.inventory.InventoryEntry
-
Available amount of stock.
- getAvailableQuantity() - Method in interface io.sphere.sdk.products.ProductVariantAvailability
-
- getAverageRating() - Method in interface io.sphere.sdk.reviews.ReviewRatingStatistics
-
- getAwsCredentials() - Method in interface io.sphere.sdk.extensions.AWSLambdaDestination
-
- getBasisPoint() - Method in class io.sphere.sdk.cartdiscounts.RelativeCartDiscountValue
-
- getBasisPoint() - Method in class io.sphere.sdk.productdiscounts.RelativeProductDiscountValue
-
- getBillingAddress() - Method in interface io.sphere.sdk.carts.Cart
-
- getBillingAddress() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getBillingAddress() - Method in interface io.sphere.sdk.carts.CartLike
-
Address for the bill.
- getBillingAddress() - Method in interface io.sphere.sdk.orders.Order
-
The billing address.
- getBillingAddress() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getBillingAddresses() - Method in interface io.sphere.sdk.customers.Customer
-
- getBillingAddresses() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getBillingAddressIds() - Method in interface io.sphere.sdk.customers.Customer
-
- getBody() - Method in class io.sphere.sdk.client.HttpRequestIntent
-
- getBody() - Method in interface io.sphere.sdk.http.HttpRequest
-
- getBodyAsString(HttpResponse) - Static method in class io.sphere.sdk.client.SphereRequestUtils
-
- getBuilderReturnType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getBuilderType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getBuilding() - Method in class io.sphere.sdk.models.Address
-
- getCapitalizedName() - Method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
- getCarrier() - Method in interface io.sphere.sdk.orders.TrackingData
-
- getCart() - Method in interface io.sphere.sdk.customers.CustomerSignInResult
-
A cart belonging to the customer or null.
- getCart() - Method in interface io.sphere.sdk.orders.Order
-
Set when this order was created from a cart.
- getCart() - Method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- getCart() - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
- getCart() - Method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
- getCartDiscounts() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.ChangeCartDiscounts
-
- getCartDiscounts() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
The referenced matching cart discounts can be applied to the cart once the discount code is added (
AddDiscountCode
).
- getCartDiscounts() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getCartPredicate() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
Predicate where the discounts should be applied to.
- getCartPredicate() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- getCartPredicate() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeCartPredicate
-
- getCartPredicate() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.SetCartPredicate
-
- getCartPredicate() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
The discount code can only be applied to carts that match this predicate.
- getCartPredicate() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getCartReplicationDraft() - Method in class io.sphere.sdk.carts.commands.CartInStoreReplicationCommand
-
- getCartReplicationDraft() - Method in class io.sphere.sdk.carts.commands.CartReplicationCommand
-
- getCarts() - Method in interface io.sphere.sdk.projects.Project
-
- getCartsConfiguration() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeCartsConfiguration
-
- getCartState() - Method in interface io.sphere.sdk.carts.Cart
-
State in the perspective if the cart is active, merged with another cart or ordered.
- getCategories() - Method in interface io.sphere.sdk.products.ProductData
-
- getCategories() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getCategories() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getCategories() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getCategory() - Method in class io.sphere.sdk.categories.messages.CategoryCreatedMessage
-
Gets the category object at creation time.
- getCategory() - Method in class io.sphere.sdk.products.commands.updateactions.AddToCategory
-
- getCategory() - Method in class io.sphere.sdk.products.commands.updateactions.RemoveFromCategory
-
- getCategory() - Method in class io.sphere.sdk.products.messages.ProductAddedToCategoryMessage
-
- getCategory() - Method in class io.sphere.sdk.products.messages.ProductRemovedFromCategoryMessage
-
- getCategoryId() - Method in class io.sphere.sdk.products.commands.updateactions.SetCategoryOrderHint
-
- getCategoryOrderHints() - Method in interface io.sphere.sdk.products.ProductData
-
- getCategoryOrderHints() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getCategoryOrderHints() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getCategoryOrderHints() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getChanges() - Method in class io.sphere.sdk.subscriptions.commands.updateactions.SetChanges
-
- getChanges() - Method in interface io.sphere.sdk.subscriptions.Subscription
-
- getChanges() - Method in interface io.sphere.sdk.subscriptions.SubscriptionDraft
-
- getChanges() - Method in class io.sphere.sdk.subscriptions.SubscriptionDraftBuilder
-
- getChanges() - Method in class io.sphere.sdk.subscriptions.SubscriptionDraftDsl
-
- getChannel() - Method in class io.sphere.sdk.orders.commands.updateactions.UpdateSyncInfo
-
- getChannel() - Method in class io.sphere.sdk.orders.errors.MatchingPriceNotFoundError
-
- getChannel() - Method in interface io.sphere.sdk.orders.SyncInfo
-
- getChannel() - Method in interface io.sphere.sdk.products.Price
-
- getChannel() - Method in interface io.sphere.sdk.products.PriceDraft
-
- getChannel() - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- getChannel() - Method in class io.sphere.sdk.products.PriceDraftDsl
-
- getChannel() - Method in interface io.sphere.sdk.products.PriceLike
-
- getChannel() - Method in interface io.sphere.sdk.products.ScopedPrice
-
- getChannel() - Method in class io.sphere.sdk.stores.error.MissingRoleOnChannelError
-
- getChannels() - Method in interface io.sphere.sdk.products.ProductVariantAvailability
-
- getCity() - Method in class io.sphere.sdk.models.Address
-
- getClassNameTemplateNameList(String) - Method in class io.sphere.sdk.annotations.processors.CommandEndpointAnnotationProcessor
-
- getClassNameTemplateNameList(String) - Method in class io.sphere.sdk.annotations.processors.CreateCommandEndpointAnnotationProcessor
-
- getClassNameTemplateNameList(String) - Method in class io.sphere.sdk.annotations.processors.DeleteCommandEndpointAnnotationProcessor
-
- getClassNameTemplateNameList(String) - Method in class io.sphere.sdk.annotations.processors.UpdateCommandEndpointAnnotationProcessor
-
- getClient() - Method in class io.sphere.sdk.client.SphereApacheHttpClientFactory
-
- getClient() - Method in class io.sphere.sdk.client.SphereAsyncHttpClientFactory
-
- getClient() - Method in class io.sphere.sdk.client.SphereHttpClientFactory
-
- getClientId() - Method in interface io.sphere.sdk.client.SphereAuthConfig
-
- getClientId() - Method in class io.sphere.sdk.client.SphereClientConfig
-
- getClientId() - Method in interface io.sphere.sdk.models.ClientLogging
-
- getClientSecret() - Method in interface io.sphere.sdk.client.SphereAuthConfig
-
- getClientSecret() - Method in class io.sphere.sdk.client.SphereClientConfig
-
- getClosingReason() - Method in interface io.sphere.sdk.client.ReasonAutoClosable
-
- getCode() - Method in class io.sphere.sdk.carts.commands.updateactions.AddDiscountCode
-
- getCode() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
Unique identifier of this discount code.
- getCode() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getCode() - Method in class io.sphere.sdk.models.errors.SphereError
-
- getCode() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddDiscountCode
-
- getComment() - Method in class io.sphere.sdk.orderedits.commands.updateactions.SetComment
-
- getComment() - Method in interface io.sphere.sdk.orderedits.OrderEdit
-
- getComment() - Method in interface io.sphere.sdk.orderedits.OrderEditDraft
-
- getComment() - Method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
- getComment() - Method in class io.sphere.sdk.orderedits.OrderEditDraftDsl
-
- getComment() - Method in interface io.sphere.sdk.orders.CustomLineItemReturnItemDraft
-
- getComment() - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftBuilder
-
- getComment() - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftDsl
-
- getComment() - Method in interface io.sphere.sdk.orders.LineItemReturnItemDraft
-
- getComment() - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftBuilder
-
- getComment() - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftDsl
-
- getComment() - Method in interface io.sphere.sdk.orders.ReturnItem
-
- getComment() - Method in interface io.sphere.sdk.orders.ReturnItemDraft
-
- getCompany() - Method in class io.sphere.sdk.models.Address
-
- getCompanyName() - Method in class io.sphere.sdk.customers.commands.updateactions.SetCompanyName
-
- getCompanyName() - Method in interface io.sphere.sdk.customers.Customer
-
Name of the company this customer belongs to.
- getCompanyName() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getCompanyName() - Method in class io.sphere.sdk.customers.messages.CustomerCompanyNameSetMessage
-
- getCompletedAt() - Method in interface io.sphere.sdk.orders.Order
-
- getCompletedAt() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getConcreteBuilderType(TypeMirror) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getConcreteBuilderType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getConcreteBuilderType(TypeName) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getConfig() - Method in interface io.sphere.sdk.client.SphereClient
-
Getter for the SphereApiConfig used for this client
- getConfig() - Method in class io.sphere.sdk.client.SphereClientDecorator
-
- getConflictingAttributeName() - Method in class io.sphere.sdk.producttypes.errors.AttributeDefinitionAlreadyExistsError
-
- getConflictingAttributeName() - Method in class io.sphere.sdk.producttypes.errors.AttributeDefinitionTypeConflictError
-
- getConflictingAttributeName() - Method in class io.sphere.sdk.producttypes.errors.EnumKeyAlreadyExistsError
-
- getConflictingAttributeName() - Method in class io.sphere.sdk.producttypes.errors.EnumKeyDoesNotExistError
-
- getConflictingEnumKey() - Method in class io.sphere.sdk.producttypes.errors.EnumKeyAlreadyExistsError
-
- getConflictingEnumKey() - Method in class io.sphere.sdk.producttypes.errors.EnumKeyDoesNotExistError
-
- getConflictingPrices() - Method in class io.sphere.sdk.products.errors.DuplicatePriceScopeError
-
- getConflictingProductTypeId() - Method in class io.sphere.sdk.producttypes.errors.AttributeDefinitionAlreadyExistsError
-
- getConflictingProductTypeId() - Method in class io.sphere.sdk.producttypes.errors.AttributeDefinitionTypeConflictError
-
- getConflictingProductTypeName() - Method in class io.sphere.sdk.producttypes.errors.AttributeDefinitionAlreadyExistsError
-
- getConflictingProductTypeName() - Method in class io.sphere.sdk.producttypes.errors.AttributeDefinitionTypeConflictError
-
- getConflictingResource() - Method in class io.sphere.sdk.models.errors.DuplicateFieldWithConflictingResourceError
-
- getConnectionString() - Method in interface io.sphere.sdk.subscriptions.AzureServiceBusDestination
-
The connection string for either one of the two generated keys for the Shared Access Policy
the strcture of this String is as follow
"Endpoint={Endpoint obtained from azure portal};SharedAccessKey={can be also obtained fro the azure portal};EntityPath={name of the referred entity in our case its the name of the queue}";
- getContainer() - Method in interface io.sphere.sdk.customobjects.CustomObject
-
The container is part of the custom object namespace to find it
- getContainer() - Method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
- getContainer() - Method in interface io.sphere.sdk.models.ContainerAndKey
-
- getContainer() - Method in class io.sphere.sdk.sequencegenerators.CustomObjectBigIntegerNumberGeneratorConfig
-
- getContainerAndKey() - Method in interface io.sphere.sdk.messages.UserProvidedIdentifiers
-
- getContent() - Method in interface io.sphere.sdk.search.SearchKeywords
-
- getContentType() - Method in interface io.sphere.sdk.models.AssetSource
-
- getContext() - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- getContext() - Method in class io.sphere.sdk.utils.MoneyImpl
-
- getCorrelationId() - Method in class io.sphere.sdk.client.metrics.ObservedDeserializationDuration
-
- getCorrelationId() - Method in class io.sphere.sdk.client.metrics.ObservedTotalDuration
-
- getCorrelationIdGenerator() - Method in class io.sphere.sdk.client.SphereClientConfig
-
- getCorrelationIdGenerator() - Method in interface io.sphere.sdk.client.SphereCorrelationIdConfig
-
- getCount() - Method in interface io.sphere.sdk.queries.PagedQueryResult
-
The actual number of results returned.
- getCount() - Method in interface io.sphere.sdk.queries.PagedResult
-
The actual number of results returned.
- getCount() - Method in class io.sphere.sdk.queries.PagedResultBase
-
The actual number of results returned.
- getCount() - Method in interface io.sphere.sdk.reviews.ReviewRatingStatistics
-
- getCount() - Method in class io.sphere.sdk.search.FilteredFacetResult
-
The number of variants matching the filter value.
- getCount() - Method in class io.sphere.sdk.search.model.RangeStats
-
Number of variants that fall into this range.
- getCount() - Method in class io.sphere.sdk.search.model.SimpleRangeStats
-
Number of results that fall into this range.
- getCount() - Method in interface io.sphere.sdk.search.TermStats
-
- getCountries() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeCountries
-
- getCountries() - Method in interface io.sphere.sdk.projects.Project
-
Enabled countries.
- getCountry() - Method in interface io.sphere.sdk.carts.Cart
-
- getCountry() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getCountry() - Method in interface io.sphere.sdk.carts.CartLike
-
- getCountry() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCountry
-
- getCountry() - Method in class io.sphere.sdk.models.Address
-
- getCountry() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCountry
-
- getCountry() - Method in class io.sphere.sdk.orders.errors.MatchingPriceNotFoundError
-
- getCountry() - Method in class io.sphere.sdk.orders.errors.MissingTaxRateForCountryError
-
- getCountry() - Method in interface io.sphere.sdk.orders.Order
-
- getCountry() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getCountry() - Method in interface io.sphere.sdk.products.Price
-
- getCountry() - Method in interface io.sphere.sdk.products.PriceDraft
-
- getCountry() - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- getCountry() - Method in class io.sphere.sdk.products.PriceDraftDsl
-
- getCountry() - Method in interface io.sphere.sdk.products.PriceLike
-
- getCountry() - Method in interface io.sphere.sdk.products.ScopedPrice
-
- getCountry() - Method in interface io.sphere.sdk.taxcategories.ExternalTaxRateDraft
-
- getCountry() - Method in interface io.sphere.sdk.taxcategories.TaxRate
-
- getCountry() - Method in interface io.sphere.sdk.taxcategories.TaxRateDraft
-
- getCountry() - Method in interface io.sphere.sdk.zones.Location
-
- getCountryTaxRateFallbackEnabled() - Method in interface io.sphere.sdk.carts.CartsConfiguration
-
- getCreatedAt() - Method in interface io.sphere.sdk.apiclient.ApiClient
-
- getCreatedAt() - Method in interface io.sphere.sdk.models.CreationTimestamped
-
- getCreatedAt() - Method in interface io.sphere.sdk.models.Resource
-
- getCreatedAt() - Method in interface io.sphere.sdk.models.ResourceView
-
- getCreatedAt() - Method in class io.sphere.sdk.models.ResourceViewImpl
-
- getCreatedAt() - Method in interface io.sphere.sdk.models.Timestamped
-
- getCreatedAt() - Method in interface io.sphere.sdk.orderedits.OrderEdit
-
- getCreatedAt() - Method in interface io.sphere.sdk.orders.Delivery
-
- getCreatedAt() - Method in interface io.sphere.sdk.orders.Parcel
-
- getCreatedAt() - Method in interface io.sphere.sdk.orders.ReturnItem
-
- getCreatedAt() - Method in interface io.sphere.sdk.projects.Project
-
- getCreatedBy() - Method in interface io.sphere.sdk.models.WithClientLogging
-
- getCreatedBy() - Method in interface io.sphere.sdk.productselections.ProductSelection
-
- getCurrencies() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeCurrencies
-
- getCurrencies() - Method in interface io.sphere.sdk.projects.Project
-
A three-digit currency code as per ISO 4217.
- getCurrency() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getCurrency() - Method in interface io.sphere.sdk.carts.CartLike
-
The currency of this cart/order.
- getCurrency() - Method in class io.sphere.sdk.orders.errors.MatchingPriceNotFoundError
-
- getCurrency() - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- getCurrency() - Method in class io.sphere.sdk.utils.MoneyImpl
-
- getCurrencyCode() - Method in interface io.sphere.sdk.shippingmethods.PriceFunction
-
- getCurrencyUnits() - Method in interface io.sphere.sdk.projects.Project
-
Currencies assigned to this project as CurrencyUnit
.
- getCurrent() - Method in interface io.sphere.sdk.products.ProductCatalogData
-
The current data of the product.
- getCurrentPassword() - Method in class io.sphere.sdk.customers.commands.CustomerChangePasswordCommand
-
- getCurrentPassword() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreChangePasswordCommand
-
- getCurrentProjection() - Method in class io.sphere.sdk.products.messages.ProductDeletedMessage
-
- getCurrentUnsafe() - Method in interface io.sphere.sdk.products.ProductCatalogData
-
The current data of the product.
- getCurrentValue() - Method in interface io.sphere.sdk.products.ScopedPrice
-
Either the original price value or the discounted value, if it’s available.
- getCurrentVersion() - Method in exception io.sphere.sdk.client.ConcurrentModificationException
-
Gets the version of the object at the time of the failed command.
- getCurrentVersion() - Method in class io.sphere.sdk.models.errors.ConcurrentModificationError
-
- getCustom() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
- getCustom() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- getCustom() - Method in interface io.sphere.sdk.carts.Cart
-
- getCustom() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getCustom() - Method in interface io.sphere.sdk.carts.CartLike
-
- getCustom() - Method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- getCustom() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getCustom() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
- getCustom() - Method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
- getCustom() - Method in interface io.sphere.sdk.carts.LineItem
-
- getCustom() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getCustom() - Method in interface io.sphere.sdk.categories.Category
-
Custom fields.
- getCustom() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getCustom() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.channels.Channel
-
- getCustom() - Method in interface io.sphere.sdk.channels.ChannelDraft
-
- getCustom() - Method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
- getCustom() - Method in interface io.sphere.sdk.customergroups.CustomerGroup
-
- getCustom() - Method in interface io.sphere.sdk.customergroups.CustomerGroupDraft
-
- getCustom() - Method in class io.sphere.sdk.customergroups.CustomerGroupDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.customergroups.CustomerGroupDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.customers.Customer
-
- getCustom() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getCustom() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
- getCustom() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getCustom() - Method in interface io.sphere.sdk.inventory.InventoryEntry
-
- getCustom() - Method in interface io.sphere.sdk.inventory.InventoryEntryDraft
-
- getCustom() - Method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.models.Address
-
- getCustom() - Method in interface io.sphere.sdk.models.Asset
-
- getCustom() - Method in interface io.sphere.sdk.models.AssetDraft
-
- getCustom() - Method in class io.sphere.sdk.models.AssetDraftDsl
-
- getCustom() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddCustomLineItem
-
- getCustom() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getCustom() - Method in interface io.sphere.sdk.orderedits.OrderEdit
-
- getCustom() - Method in interface io.sphere.sdk.orderedits.OrderEditDraft
-
- getCustom() - Method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.orderedits.OrderEditDraftDsl
-
- getCustom() - Method in class io.sphere.sdk.orders.commands.updateactions.AddDelivery
-
- getCustom() - Method in interface io.sphere.sdk.orders.CustomLineItemReturnItemDraft
-
- getCustom() - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.orders.Delivery
-
- getCustom() - Method in interface io.sphere.sdk.orders.LineItemImportDraft
-
- getCustom() - Method in interface io.sphere.sdk.orders.LineItemReturnItemDraft
-
- getCustom() - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.orders.Order
-
- getCustom() - Method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- getCustom() - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getCustom() - Method in interface io.sphere.sdk.orders.Parcel
-
- getCustom() - Method in interface io.sphere.sdk.orders.ParcelDraft
-
- getCustom() - Method in class io.sphere.sdk.orders.ParcelDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.orders.ParcelDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.orders.ReturnItem
-
- getCustom() - Method in interface io.sphere.sdk.orders.ReturnItemDraft
-
- getCustom() - Method in interface io.sphere.sdk.payments.Payment
-
- getCustom() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getCustom() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.payments.Transaction
-
- getCustom() - Method in interface io.sphere.sdk.payments.TransactionDraft
-
- getCustom() - Method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
- getCustom() - Method in interface io.sphere.sdk.products.Price
-
- getCustom() - Method in interface io.sphere.sdk.products.PriceDraft
-
- getCustom() - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.products.PriceDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.products.PriceLike
-
- getCustom() - Method in interface io.sphere.sdk.products.ScopedPrice
-
- getCustom() - Method in interface io.sphere.sdk.reviews.Review
-
Gets the custom fields of this review or null.
- getCustom() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
- getCustom() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- getCustom() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- getCustom() - Method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
- getCustom() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddLineItem
-
- getCustom() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddTextLineItem
-
- getCustom() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getCustom() - Method in interface io.sphere.sdk.shoppinglists.LineItemDraft
-
- getCustom() - Method in class io.sphere.sdk.shoppinglists.LineItemDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getCustom() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.shoppinglists.TextLineItem
-
- getCustom() - Method in interface io.sphere.sdk.shoppinglists.TextLineItemDraft
-
- getCustom() - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftDsl
-
- getCustom() - Method in class io.sphere.sdk.stores.messages.StoreCreatedMessage
-
- getCustom() - Method in interface io.sphere.sdk.stores.StoreDraft
-
- getCustom() - Method in class io.sphere.sdk.stores.StoreDraftBuilder
-
- getCustom() - Method in class io.sphere.sdk.stores.StoreDraftDsl
-
- getCustom() - Method in interface io.sphere.sdk.types.Custom
-
- getCustom() - Method in interface io.sphere.sdk.types.CustomDraft
-
- getCustomer() - Method in interface io.sphere.sdk.customers.CustomerSignInResult
-
- getCustomer() - Method in class io.sphere.sdk.customers.messages.CustomerCreatedMessage
-
Gets the Customer at creation time
- getCustomer() - Method in class io.sphere.sdk.customers.messages.CustomerDeletedMessage
-
Gets the Customer at creation time
- getCustomer() - Method in interface io.sphere.sdk.models.ClientLogging
-
- getCustomer() - Method in class io.sphere.sdk.orders.messages.OrderCustomerSetMessage
-
- getCustomer() - Method in class io.sphere.sdk.payments.commands.updateactions.SetCustomer
-
- getCustomer() - Method in interface io.sphere.sdk.payments.Payment
-
- getCustomer() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getCustomer() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getCustomer() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getCustomer() - Method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomer
-
- getCustomer() - Method in interface io.sphere.sdk.reviews.Review
-
Gets the customer which created this review or null.
- getCustomer() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
- getCustomer() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getCustomer() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomer
-
- getCustomer() - Method in interface io.sphere.sdk.shoppinglists.ShoppingList
-
- getCustomer() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getCustomer() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getCustomerEmail() - Method in interface io.sphere.sdk.carts.Cart
-
- getCustomerEmail() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getCustomerEmail() - Method in interface io.sphere.sdk.carts.CartLike
-
The email of the customer which should be used for this cart/order.
- getCustomerEmail() - Method in interface io.sphere.sdk.orders.Order
-
- getCustomerEmail() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getCustomerGroup() - Method in interface io.sphere.sdk.carts.Cart
-
- getCustomerGroup() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getCustomerGroup() - Method in interface io.sphere.sdk.carts.CartLike
-
In the order context the customer group can only be expanded if the customer was in a group before creating the order.
- getCustomerGroup() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomerGroup
-
- getCustomerGroup() - Method in class io.sphere.sdk.customers.commands.updateactions.SetCustomerGroup
-
- getCustomerGroup() - Method in interface io.sphere.sdk.customers.Customer
-
The customer group of the customer.
- getCustomerGroup() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getCustomerGroup() - Method in class io.sphere.sdk.customers.messages.CustomerGroupSetMessage
-
- getCustomerGroup() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomerGroup
-
- getCustomerGroup() - Method in class io.sphere.sdk.orders.errors.MatchingPriceNotFoundError
-
- getCustomerGroup() - Method in class io.sphere.sdk.orders.messages.OrderCustomerGroupSetMessage
-
- getCustomerGroup() - Method in class io.sphere.sdk.orders.messages.OrderCustomerSetMessage
-
- getCustomerGroup() - Method in interface io.sphere.sdk.orders.Order
-
- getCustomerGroup() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getCustomerGroup() - Method in interface io.sphere.sdk.products.Price
-
- getCustomerGroup() - Method in interface io.sphere.sdk.products.PriceDraft
-
- getCustomerGroup() - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- getCustomerGroup() - Method in class io.sphere.sdk.products.PriceDraftDsl
-
- getCustomerGroup() - Method in interface io.sphere.sdk.products.PriceLike
-
- getCustomerGroup() - Method in interface io.sphere.sdk.products.ScopedPrice
-
- getCustomerId() - Method in interface io.sphere.sdk.carts.Cart
-
The id of the customer possessing the cart.
- getCustomerId() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getCustomerId() - Method in interface io.sphere.sdk.carts.CartLike
-
The ID of the customer to which this cart/order belongs to.
- getCustomerId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomerId
-
- getCustomerId() - Method in interface io.sphere.sdk.customers.CustomerToken
-
The ID of the customer belonging to the token
- getCustomerId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomerId
-
- getCustomerId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetCustomerId
-
- getCustomerId() - Method in interface io.sphere.sdk.orders.Order
-
- getCustomerId() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getCustomerNumber() - Method in class io.sphere.sdk.customers.commands.updateactions.SetCustomerNumber
-
- getCustomerNumber() - Method in interface io.sphere.sdk.customers.Customer
-
The customer number can be used to create a more human-readable (in contrast to ID) identifier for the customer.
- getCustomerNumber() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getCustomerNumber() - Method in interface io.sphere.sdk.messages.UserProvidedIdentifiers
-
- getCustomFields() - Method in class io.sphere.sdk.models.Address
-
- getCustomFieldsDraft() - Method in class io.sphere.sdk.models.Address
-
- getCustomLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.ApplyDeltaToCustomLineItemShippingDetailsTargets
-
- getCustomLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeCustomLineItemMoney
-
- getCustomLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeCustomLineItemQuantity
-
- getCustomLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.RemoveCustomLineItem
-
- getCustomLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomField
-
- getCustomLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomType
-
- getCustomLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemShippingDetails
-
- getCustomLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemTaxAmount
-
- getCustomLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemTaxRate
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeCustomLineItemMoney
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeCustomLineItemQuantity
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveCustomLineItem
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomLineItemCustomField
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomLineItemCustomType
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomLineItemTaxAmount
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomLineItemTaxRate
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.ImportCustomLineItemState
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomField
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomType
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemShippingDetails
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.TransitionCustomLineItemState
-
- getCustomLineItemId() - Method in interface io.sphere.sdk.orders.CustomLineItemReturnItem
-
- getCustomLineItemId() - Method in interface io.sphere.sdk.orders.CustomLineItemReturnItemDraft
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftBuilder
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftDsl
-
- getCustomLineItemId() - Method in class io.sphere.sdk.orders.messages.CustomLineItemStateTransitionMessage
-
- getCustomLineItems() - Method in interface io.sphere.sdk.carts.Cart
-
The custom line items of this cart.
- getCustomLineItems() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getCustomLineItems() - Method in interface io.sphere.sdk.carts.CartLike
-
Custom goods, fees or discounts added to the cart.
- getCustomLineItems() - Method in interface io.sphere.sdk.orders.Order
-
- getCustomLineItems() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getCustomObjectJavaTypeForValue(JavaType) - Static method in class io.sphere.sdk.customobjects.CustomObjectUtils
-
- getDataErasure() - Method in interface io.sphere.sdk.subscriptions.ResourceDeletedPayload
-
- getDateOfBirth() - Method in class io.sphere.sdk.customers.commands.updateactions.SetDateOfBirth
-
- getDateOfBirth() - Method in interface io.sphere.sdk.customers.Customer
-
The date of birth for this customer.
- getDateOfBirth() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getDateOfBirth() - Method in class io.sphere.sdk.customers.messages.CustomerDateOfBirthSetMessage
-
- getDeactivatedAt() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getDefaultBillingAddress() - Method in interface io.sphere.sdk.customers.Customer
-
- getDefaultBillingAddress() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getDefaultBillingAddressId() - Method in interface io.sphere.sdk.customers.Customer
-
- getDefaultShippingAddress() - Method in interface io.sphere.sdk.customers.Customer
-
- getDefaultShippingAddress() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getDefaultShippingAddressId() - Method in interface io.sphere.sdk.customers.Customer
-
- getDeleteAt() - Method in interface io.sphere.sdk.apiclient.ApiClient
-
- getDeleteDaysAfterCreation() - Method in interface io.sphere.sdk.apiclient.ApiClientDraft
-
- getDeleteDaysAfterCreation() - Method in class io.sphere.sdk.apiclient.ApiClientDraftDsl
-
- getDeleteDaysAfterCreation() - Method in interface io.sphere.sdk.projects.MessagesConfiguration
-
- getDeleteDaysAfterCreation() - Method in interface io.sphere.sdk.projects.MessagesConfigurationDraft
-
- getDeleteDaysAfterLastModification() - Method in interface io.sphere.sdk.carts.Cart
-
- getDeleteDaysAfterLastModification() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getDeleteDaysAfterLastModification() - Method in interface io.sphere.sdk.carts.CartsConfiguration
-
- getDeleteDaysAfterLastModification() - Method in class io.sphere.sdk.carts.commands.updateactions.SetDeleteDaysAfterLastModification
-
- getDeleteDaysAfterLastModification() - Method in interface io.sphere.sdk.carts.ShoppingListsConfiguration
-
- getDeleteDaysAfterLastModification() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetDeleteDaysAfterLastModification
-
- getDeleteDaysAfterLastModification() - Method in interface io.sphere.sdk.shoppinglists.ShoppingList
-
- getDeleteDaysAfterLastModification() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getDeleteDaysAfterLastModification() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getDeliveries() - Method in interface io.sphere.sdk.orders.OrderShippingInfo
-
- getDeliveries() - Method in interface io.sphere.sdk.orders.ShippingInfoImportDraft
-
- getDeliveries() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
- getDeliveries() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
- getDelivery() - Method in class io.sphere.sdk.orders.messages.DeliveryAddedMessage
-
- getDelivery() - Method in class io.sphere.sdk.orders.messages.DeliveryRemovedMessage
-
- getDelivery() - Method in class io.sphere.sdk.orders.messages.ParcelAddedToDeliveryMessage
-
- getDeliveryId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomField
-
- getDeliveryId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomType
-
- getDeliveryId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryAddressCustomField
-
- getDeliveryId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryAddressCustomType
-
- getDeliveryId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomField
-
- getDeliveryId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomType
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.commands.updateactions.AddParcelToDelivery
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.commands.updateactions.RemoveDelivery
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryAddress
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomField
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomType
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryItems
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.messages.DeliveryAddressSetMessage
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.messages.DeliveryItemsUpdatedMessage
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.messages.ParcelItemsUpdatedMessage
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.messages.ParcelMeasurementsUpdatedMessage
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.messages.ParcelRemovedFromDeliveryMessage
-
- getDeliveryId() - Method in class io.sphere.sdk.orders.messages.ParcelTrackingDataUpdatedMessage
-
- getDepartment() - Method in class io.sphere.sdk.models.Address
-
- getDescription() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
Description of this cart discount.
- getDescription() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- getDescription() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetDescription
-
- getDescription() - Method in interface io.sphere.sdk.categories.Category
-
Description for this category.
- getDescription() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getDescription() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getDescription() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetDescription
-
- getDescription() - Method in class io.sphere.sdk.categories.commands.updateactions.SetDescription
-
- getDescription() - Method in interface io.sphere.sdk.channels.Channel
-
Description of this channel.
- getDescription() - Method in interface io.sphere.sdk.channels.ChannelDraft
-
- getDescription() - Method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
- getDescription() - Method in class io.sphere.sdk.channels.commands.updateactions.ChangeDescription
-
- getDescription() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.SetDescription
-
- getDescription() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
Description of this discount code.
- getDescription() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getDescription() - Method in interface io.sphere.sdk.models.Asset
-
- getDescription() - Method in interface io.sphere.sdk.models.AssetDraft
-
- getDescription() - Method in class io.sphere.sdk.models.AssetDraftDsl
-
- getDescription() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetDescription
-
- getDescription() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscount
-
- getDescription() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- getDescription() - Method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
- getDescription() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- getDescription() - Method in class io.sphere.sdk.products.commands.updateactions.SetDescription
-
- getDescription() - Method in interface io.sphere.sdk.products.ProductData
-
- getDescription() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getDescription() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getDescription() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getDescription() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeDescription
-
- getDescription() - Method in interface io.sphere.sdk.producttypes.ProductType
-
- getDescription() - Method in interface io.sphere.sdk.producttypes.ProductTypeDraft
-
- getDescription() - Method in class io.sphere.sdk.producttypes.ProductTypeDraftBuilder
-
- getDescription() - Method in class io.sphere.sdk.producttypes.ProductTypeDraftDsl
-
- getDescription() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetDescription
-
- getDescription() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
Deprecated.
- getDescription() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
Deprecated.
- getDescription() - Method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
- getDescription() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddTextLineItem
-
- getDescription() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetDescription
-
- getDescription() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemDescription
-
- getDescription() - Method in interface io.sphere.sdk.shoppinglists.ShoppingList
-
- getDescription() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getDescription() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getDescription() - Method in interface io.sphere.sdk.shoppinglists.TextLineItem
-
- getDescription() - Method in interface io.sphere.sdk.shoppinglists.TextLineItemDraft
-
- getDescription() - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder
-
- getDescription() - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftDsl
-
- getDescription() - Method in class io.sphere.sdk.states.commands.updateactions.SetDescription
-
- getDescription() - Method in interface io.sphere.sdk.states.State
-
- getDescription() - Method in interface io.sphere.sdk.states.StateDraft
-
- getDescription() - Method in class io.sphere.sdk.taxcategories.commands.updateactions.SetDescription
-
- getDescription() - Method in interface io.sphere.sdk.taxcategories.TaxCategory
-
- getDescription() - Method in interface io.sphere.sdk.taxcategories.TaxCategoryDraft
-
- getDescription() - Method in class io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder
-
- getDescription() - Method in class io.sphere.sdk.taxcategories.TaxCategoryDraftDsl
-
- getDescription() - Method in class io.sphere.sdk.types.commands.updateactions.SetDescription
-
- getDescription() - Method in interface io.sphere.sdk.types.Type
-
- getDescription() - Method in interface io.sphere.sdk.types.TypeDraft
-
- getDescription() - Method in class io.sphere.sdk.zones.commands.updateactions.SetDescription
-
- getDescription() - Method in interface io.sphere.sdk.zones.Zone
-
- getDescription() - Method in interface io.sphere.sdk.zones.ZoneDraft
-
- getDescription() - Method in class io.sphere.sdk.zones.ZoneDraftBuilder
-
- getDescription() - Method in class io.sphere.sdk.zones.ZoneDraftDsl
-
- getDestination() - Method in class io.sphere.sdk.extensions.commands.updateactions.ChangeDestination
-
- getDestination() - Method in interface io.sphere.sdk.extensions.Extension
-
- getDestination() - Method in interface io.sphere.sdk.extensions.ExtensionDraft
-
- getDestination() - Method in class io.sphere.sdk.extensions.ExtensionDraftBuilder
-
- getDestination() - Method in class io.sphere.sdk.extensions.ExtensionDraftDsl
-
- getDestination() - Method in class io.sphere.sdk.subscriptions.commands.updateactions.ChangeDestination
-
- getDestination() - Method in interface io.sphere.sdk.subscriptions.Subscription
-
- getDestination() - Method in interface io.sphere.sdk.subscriptions.SubscriptionDraft
-
- getDestination() - Method in class io.sphere.sdk.subscriptions.SubscriptionDraftBuilder
-
- getDestination() - Method in class io.sphere.sdk.subscriptions.SubscriptionDraftDsl
-
- getDetailedErrorMessage() - Method in class io.sphere.sdk.models.errors.InvalidJsonInputError
-
- getDimensions() - Method in interface io.sphere.sdk.models.AssetSource
-
- getDimensions() - Method in interface io.sphere.sdk.products.Image
-
- getDiscount() - Method in interface io.sphere.sdk.cartdiscounts.DiscountedLineItemPortion
-
- getDiscount() - Method in interface io.sphere.sdk.productdiscounts.DiscountedPrice
-
- getDiscountCode() - Method in class io.sphere.sdk.carts.commands.updateactions.RemoveDiscountCode
-
- getDiscountCode() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeInfo
-
- getDiscountCode() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveDiscountCode
-
- getDiscountCode() - Method in class io.sphere.sdk.orders.messages.OrderDiscountCodeAddedMessage
-
- getDiscountCode() - Method in class io.sphere.sdk.orders.messages.OrderDiscountCodeStateSetMessage
-
- getDiscountCodes() - Method in interface io.sphere.sdk.carts.Cart
-
- getDiscountCodes() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getDiscountCodes() - Method in interface io.sphere.sdk.carts.CartLike
-
Discount codes belonging to this cart.
- getDiscountCodes() - Method in interface io.sphere.sdk.orders.Order
-
- getDiscounted() - Method in class io.sphere.sdk.products.commands.updateactions.SetDiscountedPrice
-
- getDiscounted() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountsSetMessage
-
- getDiscounted() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountUpdate
-
- getDiscounted() - Method in class io.sphere.sdk.products.messages.ProductPriceExternalDiscountSetMessage
-
- getDiscounted() - Method in interface io.sphere.sdk.products.Price
-
- getDiscounted() - Method in interface io.sphere.sdk.products.PriceDraft
-
- getDiscounted() - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- getDiscounted() - Method in class io.sphere.sdk.products.PriceDraftDsl
-
- getDiscounted() - Method in interface io.sphere.sdk.products.PriceLike
-
Supplies a discount if there is any.
- getDiscounted() - Method in interface io.sphere.sdk.products.ScopedPrice
-
- getDiscountedAmount() - Method in interface io.sphere.sdk.cartdiscounts.DiscountedLineItemPortion
-
- getDiscountedPrice() - Method in interface io.sphere.sdk.cartdiscounts.DiscountedLineItemPriceForQuantity
-
- getDiscountedPrice() - Method in interface io.sphere.sdk.carts.CartShippingInfo
-
- getDiscountedPrice() - Method in interface io.sphere.sdk.orders.ShippingInfoImportDraft
-
- getDiscountedPrice() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
- getDiscountedPrice() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
- getDiscountedPricePerQuantity() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
- getDiscountedPricePerQuantity() - Method in interface io.sphere.sdk.carts.LineItem
-
- getDiscountedPricePerQuantity() - Method in interface io.sphere.sdk.carts.LineItemLike
-
Gets discount information for groups of line items.
- getDistributionChannel() - Method in class io.sphere.sdk.cartdiscounts.GiftLineItemCartDiscountValue
-
- getDistributionChannel() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getDistributionChannel() - Method in class io.sphere.sdk.carts.commands.updateactions.AddShoppingList
-
- getDistributionChannel() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemDistributionChannel
-
- getDistributionChannel() - Method in interface io.sphere.sdk.carts.LineItem
-
- getDistributionChannel() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getDistributionChannel() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getDistributionChannel() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddShoppingList
-
- getDistributionChannel() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemDistributionChannel
-
- getDistributionChannel() - Method in class io.sphere.sdk.orders.messages.OrderLineItemDistributionChannelSetMessage
-
- getDistributionChannel() - Method in class io.sphere.sdk.stores.commands.updateactions.AddDistributionChannel
-
- getDistributionChannel() - Method in class io.sphere.sdk.stores.commands.updateactions.RemoveDistributionChannel
-
- getDistributionChannels() - Method in class io.sphere.sdk.stores.commands.updateactions.SetDistributionChannels
-
- getDistributionChannels() - Method in class io.sphere.sdk.stores.messages.StoreCreatedMessage
-
- getDistributionChannels() - Method in interface io.sphere.sdk.stores.Store
-
Optional connection to particular supplier.
- getDistributionChannels() - Method in interface io.sphere.sdk.stores.StoreDraft
-
- getDistributionChannels() - Method in class io.sphere.sdk.stores.StoreDraftBuilder
-
- getDistributionChannels() - Method in class io.sphere.sdk.stores.StoreDraftDsl
-
- getDraft() - Method in class io.sphere.sdk.commands.CreateCommandImpl
-
- getDraft() - Method in interface io.sphere.sdk.commands.DraftBasedCreateCommand
-
- getDraft() - Method in interface io.sphere.sdk.commands.DraftBasedCreateCommandDsl
-
- getDraft() - Method in class io.sphere.sdk.commands.MetaModelCreateCommandImpl
-
- getDraftImplType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.generators.ResourceDraftValueGenerator
-
- getDraftImplType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- GetDsl<R,T,C> - Interface in io.sphere.sdk.queries
-
- getDuplicates() - Method in class io.sphere.sdk.producttypes.errors.DuplicateEnumValuesError
-
- getDuplicateValue() - Method in class io.sphere.sdk.models.errors.DuplicateFieldError
-
- getDuplicateValue() - Method in class io.sphere.sdk.models.errors.DuplicateFieldWithConflictingResourceError
-
- getDurationInMilliseconds() - Method in interface io.sphere.sdk.client.metrics.ObservedDuration
-
The duration in milliseconds.
- getEdit() - Method in class io.sphere.sdk.orders.messages.OrderEditAppliedMessage
-
- getEditVersion() - Method in class io.sphere.sdk.orderedits.commands.OrderEditApplyCommand
-
- getElementType() - Method in class io.sphere.sdk.products.attributes.SetAttributeType
-
- getElementType() - Method in class io.sphere.sdk.types.SetFieldType
-
- getEmail() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomerEmail
-
- getEmail() - Method in class io.sphere.sdk.customers.commands.CustomerCreatePasswordTokenCommand
-
- getEmail() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreCreatePasswordTokenCommand
-
- getEmail() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreSignInCommand
-
- getEmail() - Method in class io.sphere.sdk.customers.commands.CustomerSignInCommand
-
- getEmail() - Method in class io.sphere.sdk.customers.commands.updateactions.ChangeEmail
-
- getEmail() - Method in interface io.sphere.sdk.customers.Customer
-
Customer’s email address that must be unique across a project.
- getEmail() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getEmail() - Method in class io.sphere.sdk.customers.messages.CustomerEmailChangedMessage
-
- getEmail() - Method in class io.sphere.sdk.models.Address
-
- getEmail() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomerEmail
-
- getEmail() - Method in class io.sphere.sdk.orders.commands.updateactions.SetCustomerEmail
-
- getEmail() - Method in class io.sphere.sdk.orders.messages.OrderCustomerEmailSetMessage
-
- getEmergencyContact() - Method in class io.sphere.sdk.client.SolutionInfo
-
- getErrorResult() - Method in class io.sphere.sdk.client.metrics.ObservedTotalDuration
-
- getErrors() - Method in exception io.sphere.sdk.client.ConcurrentModificationException
-
- getErrors() - Method in exception io.sphere.sdk.client.ErrorResponseException
-
- getErrors() - Method in interface io.sphere.sdk.models.errors.ErrorResponse
-
- getErrors() - Method in interface io.sphere.sdk.orderedits.OrderEditPreviewFailure
-
- getExceededResource() - Method in class io.sphere.sdk.models.errors.MaxResourceLimitExceededError
-
- getExcerptAfterEdit() - Method in interface io.sphere.sdk.orderedits.OrderEditApplied
-
- getExcerptBeforeEdit() - Method in interface io.sphere.sdk.orderedits.OrderEditApplied
-
- getExpectedDelivery() - Method in class io.sphere.sdk.inventory.commands.updateactions.SetExpectedDelivery
-
- getExpectedDelivery() - Method in interface io.sphere.sdk.inventory.InventoryEntry
-
The date and time of the next restock.
- getExpectedDelivery() - Method in interface io.sphere.sdk.inventory.InventoryEntryDraft
-
- getExpectedDelivery() - Method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
- getExpiresAt() - Method in interface io.sphere.sdk.customers.CustomerToken
-
- getExpiresIn() - Method in interface io.sphere.sdk.client.Tokens
-
- getExpiresZonedDateTime() - Method in interface io.sphere.sdk.client.Tokens
-
- getExternalId() - Method in interface io.sphere.sdk.categories.Category
-
ID which can be used as additional identifier for external Systems like CRM or ERP.
- getExternalId() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getExternalId() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getExternalId() - Method in class io.sphere.sdk.categories.commands.updateactions.SetExternalId
-
- getExternalId() - Method in class io.sphere.sdk.customers.commands.updateactions.SetExternalId
-
- getExternalId() - Method in interface io.sphere.sdk.customers.Customer
-
ID of an external system for this customer.
- getExternalId() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getExternalId() - Method in interface io.sphere.sdk.messages.UserProvidedIdentifiers
-
- getExternalId() - Method in class io.sphere.sdk.models.Address
-
- getExternalId() - Method in class io.sphere.sdk.orders.commands.updateactions.UpdateSyncInfo
-
- getExternalId() - Method in interface io.sphere.sdk.orders.SyncInfo
-
- getExternalId() - Method in class io.sphere.sdk.payments.commands.updateactions.SetExternalId
-
- getExternalId() - Method in interface io.sphere.sdk.payments.Payment
-
- getExternalId() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getExternalId() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getExternalId() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getExternalOAuth() - Method in class io.sphere.sdk.projects.commands.updateactions.SetExternalOAuth
-
- getExternalOAuth() - Method in interface io.sphere.sdk.projects.Project
-
If this property is set, it allows to use OAuth2 Bearer tokens issued by another service that provides a RFC 7662-compliant endpoint.
- getExternalPrice() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getExternalPrice() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeLineItemQuantity
-
- getExternalPrice() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemPrice
-
- getExternalPrice() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getExternalPrice() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getExternalPrice() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeLineItemQuantity
-
- getExternalPrice() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- getExternalPrice() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemPrice
-
- getExternalTaxAmount() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemTaxAmount
-
- getExternalTaxAmount() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemTaxAmount
-
- getExternalTaxAmount() - Method in class io.sphere.sdk.carts.commands.updateactions.SetShippingMethodTaxAmount
-
- getExternalTaxAmount() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomLineItemTaxAmount
-
- getExternalTaxAmount() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemTaxAmount
-
- getExternalTaxAmount() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingMethodTaxAmount
-
- getExternalTaxPortions() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCartTotalTax
-
- getExternalTaxPortions() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetOrderTotalTax
-
- getExternalTaxRate() - Method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- getExternalTaxRate() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getExternalTaxRate() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemTaxRate
-
- getExternalTaxRate() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomShippingMethod
-
- getExternalTaxRate() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemTaxRate
-
- getExternalTaxRate() - Method in class io.sphere.sdk.carts.commands.updateactions.SetShippingMethodTaxRate
-
- getExternalTaxRate() - Method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
Possible custom tax rate.
- getExternalTaxRate() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getExternalTaxRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddCustomLineItem
-
- getExternalTaxRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getExternalTaxRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomLineItemTaxRate
-
- getExternalTaxRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomShippingMethod
-
- getExternalTaxRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemTaxRate
-
- getExternalTaxRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndCustomShippingMethod
-
- getExternalTaxRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndShippingMethod
-
- getExternalTaxRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingMethod
-
- getExternalTaxRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingMethodTaxRate
-
- getExternalTaxRateForShippingMethod() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getExternalTotalGross() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCartTotalTax
-
- getExternalTotalGross() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetOrderTotalTax
-
- getExternalTotalPrice() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getExternalTotalPrice() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeLineItemQuantity
-
- getExternalTotalPrice() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemTotalPrice
-
- getExternalTotalPrice() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getExternalTotalPrice() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getExternalTotalPrice() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeLineItemQuantity
-
- getExternalTotalPrice() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- getExternalTotalPrice() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemTotalPrice
-
- getExternalUserId() - Method in interface io.sphere.sdk.models.ClientLogging
-
- getFacetResult(String) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
Obtains the
FacetResult
of the facet with the given result path.
- getFacetResult(TermFacetExpression<T>) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getFacetResult(RangeFacetExpression<T>) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getFacetResult(FilteredFacetExpression<T>) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getFacetResult(TermFacetedSearchExpression<T>) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
Obtains the
TermFacetResult
of the facet with the given facet search expression.
- getFacetResult(RangeFacetedSearchExpression<T>) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
Obtains the
RangeFacetResult
of the facet with the given facet search expression.
- getFacetsResults() - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getFactory() - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- getFactory() - Method in class io.sphere.sdk.utils.MoneyImpl
-
- getFax() - Method in class io.sphere.sdk.models.Address
-
- getField() - Method in class io.sphere.sdk.models.errors.DuplicateFieldError
-
- getField() - Method in class io.sphere.sdk.models.errors.DuplicateFieldWithConflictingResourceError
-
- getField() - Method in class io.sphere.sdk.models.errors.RequiredField
-
- getField(String, TypeReference<T>) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsBigDecimal(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsBoolean(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsDate(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsDateTime(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsDouble(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsEnumKey(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsInteger(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsJsonNode(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsLocalizedEnumKey(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsLocalizedString(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsLong(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsMoney(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsString(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsStringSet(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldAsTime(String) - Method in interface io.sphere.sdk.types.CustomFields
-
- getFieldDefinition() - Method in class io.sphere.sdk.types.commands.updateactions.AddFieldDefinition
-
- getFieldDefinitionByName(String) - Method in interface io.sphere.sdk.types.Type
-
- getFieldDefinitions() - Method in interface io.sphere.sdk.types.Type
-
- getFieldDefinitions() - Method in interface io.sphere.sdk.types.TypeDraft
-
- getFieldName() - Method in class io.sphere.sdk.types.commands.updateactions.AddEnumValue
-
- getFieldName() - Method in class io.sphere.sdk.types.commands.updateactions.AddLocalizedEnumValue
-
- getFieldName() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeEnumValueLabel
-
- getFieldName() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeEnumValueOrder
-
- getFieldName() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeFieldDefinitionLabel
-
- getFieldName() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeInputHint
-
- getFieldName() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeLocalizedEnumValueLabel
-
- getFieldName() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeLocalizedEnumValueOrder
-
- getFieldName() - Method in class io.sphere.sdk.types.commands.updateactions.RemoveFieldDefinition
-
- getFieldNames() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeFieldDefinitionOrder
-
- getFields() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.OrderEditSetCustomTypeBase
-
- getFields() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomType
-
- getFields() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomType
-
- getFields() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomType
-
- getFields() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomType
-
- getFields() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomType
-
- getFields() - Method in interface io.sphere.sdk.types.CustomFieldsDraft
-
- getFields() - Method in class io.sphere.sdk.types.customupdateactions.SetCustomTypeBase
-
- getFieldsJsonMap() - Method in interface io.sphere.sdk.types.CustomFields
-
- getFile() - Method in class io.sphere.sdk.http.FileHttpRequestBody
-
- getFilteredFacetResult(String) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getFirstError() - Method in interface io.sphere.sdk.retry.RetryContext
-
The first error that occurred for one service method execution.
- getFirstName() - Method in class io.sphere.sdk.customers.commands.updateactions.ChangeName
-
- getFirstName() - Method in class io.sphere.sdk.customers.commands.updateactions.SetFirstName
-
- getFirstName() - Method in interface io.sphere.sdk.customers.Customer
-
First name of the customer.
- getFirstName() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getFirstName() - Method in class io.sphere.sdk.customers.CustomerName
-
- getFirstName() - Method in class io.sphere.sdk.models.Address
-
- getFirstParameter() - Method in interface io.sphere.sdk.retry.RetryContext
-
Gets the parameter or parameter object for the original service method execution.
- getForce() - Method in class io.sphere.sdk.orders.messages.OrderStateTransitionMessage
-
- getFractionDigits() - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- getFreeAbove() - Method in interface io.sphere.sdk.shippingmethods.ShippingRate
-
The shipping is free if the order total (the sum of line item prices) exceeds the free above value.
- getFunction() - Method in interface io.sphere.sdk.shippingmethods.PriceFunction
-
- getGeoLocation() - Method in interface io.sphere.sdk.channels.Channel
-
Returns the geo location of this channel.
- getGeoLocation() - Method in interface io.sphere.sdk.channels.ChannelDraft
-
- getGeoLocation() - Method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
- getGeoLocation() - Method in class io.sphere.sdk.channels.commands.updateactions.SetGeoLocation
-
- getGroupName() - Method in interface io.sphere.sdk.customergroups.CustomerGroupDraft
-
- getGroupName() - Method in class io.sphere.sdk.customergroups.CustomerGroupDraftBuilder
-
- getGroupName() - Method in class io.sphere.sdk.customergroups.CustomerGroupDraftDsl
-
- getGroups() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.ChangeGroups
-
- getGroups() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
This field is used to signal to which groups the
DiscountCode
belongs to.
- getGroups() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getH() - Method in interface io.sphere.sdk.models.AssetDimensions
-
- getHasBuilderImplType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getHeader(String) - Method in class io.sphere.sdk.http.HttpHeaders
-
Gets the header as list since they can occur multiple times.
- getHeaders() - Method in class io.sphere.sdk.client.HttpRequestIntent
-
- getHeaders() - Method in interface io.sphere.sdk.http.HttpRequest
-
- getHeaders() - Method in interface io.sphere.sdk.http.HttpResponse
-
- getHeadersAsMap() - Method in class io.sphere.sdk.http.HttpHeaders
-
- getHeaderValue() - Method in interface io.sphere.sdk.extensions.AuthorizationHeaderAuthentication
-
Partially hidden on retrieval.
- getHeight() - Method in interface io.sphere.sdk.models.AssetDimensions
-
- getHeight() - Method in interface io.sphere.sdk.products.Image
-
- getHeight() - Method in class io.sphere.sdk.products.ImageDimensions
-
- getHeightInMillimeter() - Method in interface io.sphere.sdk.orders.ParcelMeasurements
-
- getHighestRating() - Method in interface io.sphere.sdk.reviews.ReviewRatingStatistics
-
- getHttpMethod() - Method in class io.sphere.sdk.client.HttpRequestIntent
-
- getHttpMethod() - Method in interface io.sphere.sdk.http.HttpRequest
-
- getHttpResponse() - Method in class io.sphere.sdk.client.metrics.ObservedDeserializationDuration
-
- getHttpResponse() - Method in exception io.sphere.sdk.models.SphereException
-
- getId() - Method in interface io.sphere.sdk.apiclient.ApiClient
-
- getId() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
- getId() - Method in interface io.sphere.sdk.carts.LineItem
-
- getId() - Method in interface io.sphere.sdk.carts.LineItemLike
-
- getId() - Method in class io.sphere.sdk.customers.commands.CustomerChangePasswordCommand
-
- getId() - Method in class io.sphere.sdk.customers.commands.CustomerCreateEmailTokenCommand
-
- getId() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreChangePasswordCommand
-
- getId() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreCreateEmailTokenCommand
-
- getId() - Method in class io.sphere.sdk.customers.commands.CustomerPasswordResetCommand
-
Deprecated.
- getId() - Method in class io.sphere.sdk.customers.commands.CustomerVerifyEmailCommand
-
Deprecated.
- getId() - Method in interface io.sphere.sdk.customers.Customer
-
Gets the ID of this customer.
- getId() - Method in interface io.sphere.sdk.customers.CustomerToken
-
The ID of the token.
- getId() - Method in class io.sphere.sdk.models.Address
-
- getId() - Method in interface io.sphere.sdk.models.Asset
-
- getId() - Method in class io.sphere.sdk.models.errors.ReferencedResourceNotFoundError
-
- getId() - Method in interface io.sphere.sdk.models.Identifiable
-
The unique ID of this object.
- getId() - Method in interface io.sphere.sdk.models.Reference
-
Id of the object this reference represents.
- getId() - Method in interface io.sphere.sdk.models.Resource
-
- getId() - Method in interface io.sphere.sdk.models.ResourceIdentifier
-
- getId() - Method in interface io.sphere.sdk.models.ResourceView
-
- getId() - Method in class io.sphere.sdk.models.ResourceViewImpl
-
- getId() - Method in interface io.sphere.sdk.models.Versioned
-
- getId() - Method in class io.sphere.sdk.orderedits.commands.OrderEditApplyCommand
-
- getId() - Method in interface io.sphere.sdk.orderedits.OrderEdit
-
- getId() - Method in interface io.sphere.sdk.orders.Delivery
-
- getId() - Method in interface io.sphere.sdk.orders.DeliveryItem
-
- getId() - Method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- getId() - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
- getId() - Method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
- getId() - Method in interface io.sphere.sdk.orders.Parcel
-
- getId() - Method in interface io.sphere.sdk.orders.ProductVariantImportDraft
-
- getId() - Method in interface io.sphere.sdk.orders.ReturnItem
-
- getId() - Method in interface io.sphere.sdk.payments.Transaction
-
- getId() - Method in class io.sphere.sdk.products.commands.updateactions.RemoveVariant
-
- getId() - Method in interface io.sphere.sdk.products.Price
-
- getId() - Method in interface io.sphere.sdk.products.PriceLike
-
The unique ID of this price.
- getId() - Method in interface io.sphere.sdk.products.ProductIdentifiable
-
- getId() - Method in interface io.sphere.sdk.products.ProductVariant
-
- getId() - Method in interface io.sphere.sdk.products.ScopedPrice
-
- getId() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getId() - Method in interface io.sphere.sdk.shoppinglists.TextLineItem
-
- getId() - Method in interface io.sphere.sdk.taxcategories.TaxRate
-
- getIdentifier() - Method in interface io.sphere.sdk.products.ProductVariant
-
Gets the id of the product and the variant.
- getImage() - Method in class io.sphere.sdk.products.commands.updateactions.AddExternalImage
-
- getImage() - Method in class io.sphere.sdk.products.messages.ProductImageAddedMessage
-
The image that was added.
- getImages() - Method in interface io.sphere.sdk.orders.ProductVariantImportDraft
-
- getImages() - Method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
- getImages() - Method in interface io.sphere.sdk.products.ProductVariant
-
Product images
- getImages() - Method in interface io.sphere.sdk.products.ProductVariantDraft
-
- getImages() - Method in class io.sphere.sdk.products.ProductVariantDraftDsl
-
- getImageUrl() - Method in class io.sphere.sdk.products.commands.updateactions.MoveImageToPosition
-
- getImageUrl() - Method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- getImageUrl() - Method in class io.sphere.sdk.products.commands.updateactions.SetImageLabel
-
- getIncludedDiscounts() - Method in interface io.sphere.sdk.cartdiscounts.DiscountedLineItemPrice
-
- getInitialValue() - Method in class io.sphere.sdk.sequencegenerators.CustomObjectBigIntegerNumberGeneratorConfig
-
- getInputHint() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinition
-
- getInputHint() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- getInputHint() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinitionDraft
-
- getInputHint() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftDsl
-
- getInputHint() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeInputHint
-
- getInputHint() - Method in interface io.sphere.sdk.types.FieldDefinition
-
- getInputs() - Method in class io.sphere.sdk.search.tokenizer.CustomSuggestTokenizer
-
- getInputTip() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinition
-
Additional information about the attribute that aids content managers when setting product details.
- getInputTip() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- getInputTip() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinitionDraft
-
- getInputTip() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftDsl
-
- getInputTip() - Method in class io.sphere.sdk.producttypes.commands.updateactions.SetInputTip
-
- getInteraction() - Method in class io.sphere.sdk.payments.messages.PaymentInteractionAddedMessage
-
- getInteractionId() - Method in class io.sphere.sdk.payments.commands.updateactions.ChangeTransactionInteractionId
-
- getInteractionId() - Method in interface io.sphere.sdk.payments.Transaction
-
- getInteractionId() - Method in interface io.sphere.sdk.payments.TransactionDraft
-
- getInteractionId() - Method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
- getInterface() - Method in class io.sphere.sdk.payments.commands.updateactions.SetMethodInfoInterface
-
- getInterfaceCode() - Method in class io.sphere.sdk.payments.commands.updateactions.SetStatusInterfaceCode
-
- getInterfaceCode() - Method in class io.sphere.sdk.payments.messages.PaymentStatusInterfaceCodeSetMessage
-
- getInterfaceCode() - Method in interface io.sphere.sdk.payments.PaymentStatus
-
- getInterfaceCode() - Method in class io.sphere.sdk.payments.PaymentStatusBuilder
-
- getInterfaceId() - Method in class io.sphere.sdk.payments.commands.updateactions.SetInterfaceId
-
- getInterfaceId() - Method in interface io.sphere.sdk.payments.Payment
-
The identifier that is used by the interface that manages the payment (usually the PSP).
- getInterfaceId() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getInterfaceId() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getInterfaceId() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getInterfaceInteractions() - Method in interface io.sphere.sdk.payments.Payment
-
- getInterfaceInteractions() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getInterfaceInteractions() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getInterfaceInteractions() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getinterfaceText() - Method in class io.sphere.sdk.payments.commands.updateactions.SetStatusInterfaceText
-
- getInterfaceText() - Method in interface io.sphere.sdk.payments.PaymentStatus
-
- getInterfaceText() - Method in class io.sphere.sdk.payments.PaymentStatusBuilder
-
- getInvalidAttributeName() - Method in class io.sphere.sdk.producttypes.errors.AttributeNameDoesNotExistError
-
- getInventoryMode() - Method in interface io.sphere.sdk.carts.Cart
-
- getInventoryMode() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getInventoryMode() - Method in interface io.sphere.sdk.orders.Order
-
- getInventoryMode() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getItemId() - Method in class io.sphere.sdk.orders.errors.InvalidItemShippingDetailsError
-
- getItemId() - Method in class io.sphere.sdk.shippingmethods.errors.InvalidItemShippingDetailsError
-
- getItems() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnInfo
-
- getItems() - Method in class io.sphere.sdk.orders.commands.updateactions.AddDelivery
-
- getItems() - Method in class io.sphere.sdk.orders.commands.updateactions.AddReturnInfo
-
- getItems() - Method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryItems
-
- getItems() - Method in class io.sphere.sdk.orders.commands.updateactions.SetParcelItems
-
- getItems() - Method in class io.sphere.sdk.orders.commands.updateactions.SetReturnInfo
-
- getItems() - Method in interface io.sphere.sdk.orders.Delivery
-
- getItems() - Method in class io.sphere.sdk.orders.messages.DeliveryItemsUpdatedMessage
-
- getItems() - Method in class io.sphere.sdk.orders.messages.ParcelItemsUpdatedMessage
-
- getItems() - Method in interface io.sphere.sdk.orders.Parcel
-
- getItems() - Method in interface io.sphere.sdk.orders.ParcelDraft
-
- getItems() - Method in class io.sphere.sdk.orders.ParcelDraftBuilder
-
- getItems() - Method in class io.sphere.sdk.orders.ParcelDraftDsl
-
- getItems() - Method in interface io.sphere.sdk.orders.ParcelMeasurements
-
- getItems() - Method in interface io.sphere.sdk.orders.ReturnInfo
-
- getItems() - Method in interface io.sphere.sdk.orders.ReturnInfoDraft
-
- getItems() - Method in class io.sphere.sdk.orders.ReturnInfoDraftBuilder
-
- getItems() - Method in class io.sphere.sdk.orders.ReturnInfoDraftDsl
-
- getItemShippingAddresses() - Method in interface io.sphere.sdk.carts.Cart
-
- getItemShippingAddresses() - Method in interface io.sphere.sdk.carts.CartDraft
-
Contains addresses for carts with multiple shipping addresses.
- getItemShippingAddresses() - Method in interface io.sphere.sdk.carts.CartLike
-
- getItemShippingAddresses() - Method in interface io.sphere.sdk.orders.Order
-
- getItemShippingAddresses() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getJavadocLinkTag() - Method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
Returns the javadoc link tag that links back this properties getter method.
- getJavaIdentifier() - Method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
- getJavaType() - Method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
- getJsonBody() - Method in exception io.sphere.sdk.client.SphereServiceException
-
- getJsonName() - Method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
Returns the name of this poroperty as specified with JsonProperty
- getKey() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
- getKey() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- getKey() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.carts.Cart
-
- getKey() - Method in interface io.sphere.sdk.carts.ClassificationShippingRateInput
-
- getKey() - Method in interface io.sphere.sdk.carts.ClassificationShippingRateInputDraft
-
- getKey() - Method in class io.sphere.sdk.carts.ClassificationShippingRateInputDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.carts.ClassificationShippingRateInputDraftDsl
-
- getKey() - Method in interface io.sphere.sdk.carts.commands.CartReplicationDraft
-
- getKey() - Method in class io.sphere.sdk.carts.commands.CartReplicationDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.carts.commands.CartReplicationDraftDsl
-
- getKey() - Method in class io.sphere.sdk.carts.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.categories.Category
-
User-specific unique identifier for the Category.
- getKey() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getKey() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getKey() - Method in class io.sphere.sdk.categories.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.channels.Channel
-
Any arbitrary string key that unique identifies this channel within the project.
- getKey() - Method in interface io.sphere.sdk.channels.ChannelDraft
-
- getKey() - Method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.channels.commands.updateactions.ChangeKey
-
- getKey() - Method in class io.sphere.sdk.customergroups.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.customergroups.CustomerGroup
-
- getKey() - Method in interface io.sphere.sdk.customergroups.CustomerGroupDraft
-
- getKey() - Method in class io.sphere.sdk.customergroups.CustomerGroupDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.customergroups.CustomerGroupDraftDsl
-
- getKey() - Method in class io.sphere.sdk.customers.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.customers.Customer
-
User-specific unique identifier for a customer.
- getKey() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getKey() - Method in interface io.sphere.sdk.customobjects.CustomObject
-
The key is part of the custom object namespace to find it
- getKey() - Method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
- getKey() - Method in interface io.sphere.sdk.extensions.AzureFunctionsAuthentication
-
- getKey() - Method in class io.sphere.sdk.extensions.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.extensions.Extension
-
- getKey() - Method in interface io.sphere.sdk.extensions.ExtensionDraft
-
- getKey() - Method in class io.sphere.sdk.extensions.ExtensionDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.extensions.ExtensionDraftDsl
-
- getKey() - Method in interface io.sphere.sdk.messages.UserProvidedIdentifiers
-
- getKey() - Method in class io.sphere.sdk.models.Address
-
- getKey() - Method in interface io.sphere.sdk.models.Asset
-
- getKey() - Method in interface io.sphere.sdk.models.AssetDraft
-
- getKey() - Method in class io.sphere.sdk.models.AssetDraftDsl
-
- getKey() - Method in interface io.sphere.sdk.models.AssetSource
-
- getKey() - Method in interface io.sphere.sdk.models.ContainerAndKey
-
- getKey() - Method in interface io.sphere.sdk.models.EnumValue
-
- getKey() - Method in class io.sphere.sdk.models.errors.ReferencedResourceNotFoundError
-
- getKey() - Method in interface io.sphere.sdk.models.KeyReference
-
Key of the object this reference represents.
- getKey() - Method in interface io.sphere.sdk.models.LocalizedEnumValue
-
- getKey() - Method in interface io.sphere.sdk.models.Reference
-
In references the key should always be null
- getKey() - Method in interface io.sphere.sdk.models.ResourceIdentifier
-
- getKey() - Method in interface io.sphere.sdk.models.WithKey
-
- getKey() - Method in class io.sphere.sdk.orderedits.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.orderedits.OrderEdit
-
- getKey() - Method in interface io.sphere.sdk.orderedits.OrderEditDraft
-
- getKey() - Method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.orderedits.OrderEditDraftDsl
-
- getKey() - Method in class io.sphere.sdk.payments.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.payments.Payment
-
User-specific unique identifier for the payment.
- getKey() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
User-specific unique identifier for the payment.
- getKey() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getKey() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscount
-
- getKey() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- getKey() - Method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
- getKey() - Method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
- getKey() - Method in class io.sphere.sdk.products.commands.updateactions.SetKey
-
- getKey() - Method in class io.sphere.sdk.products.commands.updateactions.SetProductVariantKey
-
- getKey() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getKey() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getKey() - Method in interface io.sphere.sdk.products.ProductLike
-
Key of the product.
- getKey() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getKey() - Method in interface io.sphere.sdk.products.ProductVariant
-
Key of the variant.
- getKey() - Method in interface io.sphere.sdk.products.ProductVariantDraft
-
- getKey() - Method in class io.sphere.sdk.products.ProductVariantDraftDsl
-
- getKey() - Method in class io.sphere.sdk.productselections.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.productselections.ProductSelection
-
- getKey() - Method in interface io.sphere.sdk.productselections.ProductSelectionDraft
-
- getKey() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeEnumKey
-
- getKey() - Method in class io.sphere.sdk.producttypes.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.producttypes.ProductType
-
- getKey() - Method in interface io.sphere.sdk.producttypes.ProductTypeDraft
-
- getKey() - Method in class io.sphere.sdk.producttypes.ProductTypeDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.producttypes.ProductTypeDraftDsl
-
- getKey() - Method in interface io.sphere.sdk.projects.Project
-
The unique key of the project.
- getKey() - Method in class io.sphere.sdk.reviews.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.reviews.Review
-
Gets the key assigned to this review or null.
- getKey() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
- getKey() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getKey() - Method in class io.sphere.sdk.sequencegenerators.CustomObjectBigIntegerNumberGeneratorConfig
-
- getKey() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- getKey() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- getKey() - Method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
- getKey() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.shoppinglists.ShoppingList
-
- getKey() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getKey() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getKey() - Method in class io.sphere.sdk.states.commands.updateactions.ChangeKey
-
- getKey() - Method in interface io.sphere.sdk.states.State
-
- getKey() - Method in interface io.sphere.sdk.states.StateDraft
-
- getKey() - Method in interface io.sphere.sdk.stores.Store
-
- getKey() - Method in interface io.sphere.sdk.stores.StoreDraft
-
- getKey() - Method in class io.sphere.sdk.stores.StoreDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.stores.StoreDraftDsl
-
- getKey() - Method in class io.sphere.sdk.subscriptions.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.subscriptions.Subscription
-
- getKey() - Method in interface io.sphere.sdk.subscriptions.SubscriptionDraft
-
- getKey() - Method in class io.sphere.sdk.subscriptions.SubscriptionDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.subscriptions.SubscriptionDraftDsl
-
- getKey() - Method in class io.sphere.sdk.taxcategories.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.taxcategories.TaxCategory
-
- getKey() - Method in interface io.sphere.sdk.taxcategories.TaxCategoryDraft
-
- getKey() - Method in class io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.taxcategories.TaxCategoryDraftDsl
-
- getKey() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeKey
-
- getKey() - Method in interface io.sphere.sdk.types.Type
-
- getKey() - Method in interface io.sphere.sdk.types.TypeDraft
-
- getKey() - Method in class io.sphere.sdk.zones.commands.updateactions.SetKey
-
- getKey() - Method in interface io.sphere.sdk.zones.Zone
-
- getKey() - Method in interface io.sphere.sdk.zones.ZoneDraft
-
- getKey() - Method in class io.sphere.sdk.zones.ZoneDraftBuilder
-
- getKey() - Method in class io.sphere.sdk.zones.ZoneDraftDsl
-
- getKeys() - Method in class io.sphere.sdk.producttypes.commands.updateactions.RemoveEnumValues
-
- getKeys() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeEnumValueOrder
-
- getKeys() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeLocalizedEnumValueOrder
-
- getLabel() - Method in interface io.sphere.sdk.carts.ClassificationShippingRateInput
-
- getLabel() - Method in interface io.sphere.sdk.models.EnumValue
-
- getLabel() - Method in interface io.sphere.sdk.models.LocalizedEnumValue
-
- getLabel() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinition
-
A human-readable label for the attribute.
- getLabel() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- getLabel() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinitionDraft
-
- getLabel() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftDsl
-
- getLabel() - Method in class io.sphere.sdk.products.commands.updateactions.SetImageLabel
-
- getLabel() - Method in interface io.sphere.sdk.products.Image
-
- getLabel() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeDefinitionLabel
-
- getLabel() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeFieldDefinitionLabel
-
- getLabel() - Method in interface io.sphere.sdk.types.FieldDefinition
-
- getLanguageLocales() - Method in interface io.sphere.sdk.projects.Project
-
The languages as list of
Locale
s of this project.
- getLanguages() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeLanguages
-
- getLanguages() - Method in interface io.sphere.sdk.projects.Project
-
A two-digit language code as per ISO 3166-1 alpha-2 String.
- getLanguages() - Method in class io.sphere.sdk.stores.commands.updateactions.SetLanguages
-
- getLanguages() - Method in class io.sphere.sdk.stores.error.ProjectNotConfiguredForLanguagesError
-
- getLanguages() - Method in class io.sphere.sdk.stores.messages.StoreCreatedMessage
-
- getLanguages() - Method in interface io.sphere.sdk.stores.Store
-
- getLanguages() - Method in interface io.sphere.sdk.stores.StoreDraft
-
- getLanguages() - Method in class io.sphere.sdk.stores.StoreDraftBuilder
-
- getLanguages() - Method in class io.sphere.sdk.stores.StoreDraftDsl
-
- getLastMessageSequenceNumber() - Method in interface io.sphere.sdk.orders.Order
-
- getLastModifiedAt() - Method in interface io.sphere.sdk.carts.LineItem
-
- getLastModifiedAt() - Method in interface io.sphere.sdk.models.Resource
-
- getLastModifiedAt() - Method in interface io.sphere.sdk.models.ResourceView
-
- getLastModifiedAt() - Method in class io.sphere.sdk.models.ResourceViewImpl
-
- getLastModifiedAt() - Method in interface io.sphere.sdk.models.Timestamped
-
- getLastModifiedAt() - Method in interface io.sphere.sdk.orderedits.OrderEdit
-
- getLastModifiedAt() - Method in interface io.sphere.sdk.orders.ReturnItem
-
- getLastModifiedAt() - Method in interface io.sphere.sdk.projects.SearchIndexingConfigurationValues
-
- getLastModifiedBy() - Method in interface io.sphere.sdk.models.WithClientLogging
-
- getLastModifiedBy() - Method in interface io.sphere.sdk.productselections.ProductSelection
-
- getLastModifiedBy() - Method in interface io.sphere.sdk.projects.SearchIndexingConfigurationValues
-
- getLastName() - Method in class io.sphere.sdk.customers.commands.updateactions.ChangeName
-
- getLastName() - Method in class io.sphere.sdk.customers.commands.updateactions.SetLastName
-
- getLastName() - Method in interface io.sphere.sdk.customers.Customer
-
Last name of the customer.
- getLastName() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getLastName() - Method in class io.sphere.sdk.customers.CustomerName
-
- getLastName() - Method in class io.sphere.sdk.models.Address
-
- getLastUsedAt() - Method in interface io.sphere.sdk.apiclient.ApiClient
-
- getLatestError() - Method in interface io.sphere.sdk.retry.RetryContext
-
The latest error that occurred for one service method execution.
- getLatestParameter() - Method in interface io.sphere.sdk.retry.RetryContext
-
Gets the parameter or parameter object for the latest service method execution.
- getLatitude() - Method in interface io.sphere.sdk.models.Point
-
Returns the latitude of this point.
- getLengthInMillimeter() - Method in interface io.sphere.sdk.orders.ParcelMeasurements
-
- getLimit() - Method in interface io.sphere.sdk.queries.PagedQueryResult
-
The limit supplied by the client or the server default.
- getLimit() - Method in interface io.sphere.sdk.queries.PagedResult
-
The limit supplied by the client or the server default.
- getLimit() - Method in class io.sphere.sdk.queries.PagedResultBase
-
The limit supplied by the client or the server default.
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.ApplyDeltaToLineItemShippingDetailsTargets
-
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeLineItemQuantity
-
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomField
-
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomType
-
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemDistributionChannel
-
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemPrice
-
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemShippingDetails
-
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemSupplyChannel
-
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemTaxAmount
-
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemTaxRate
-
- getLineItemId() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemTotalPrice
-
- getLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeLineItemQuantity
-
- getLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- getLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomField
-
- getLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomType
-
- getLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemDistributionChannel
-
- getLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemPrice
-
- getLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemShippingDetails
-
- getLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemTaxAmount
-
- getLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemTaxRate
-
- getLineItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemTotalPrice
-
- getLineItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.ImportLineItemState
-
- getLineItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomField
-
- getLineItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomType
-
- getLineItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemShippingDetails
-
- getLineItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.TransitionLineItemState
-
- getLineItemId() - Method in interface io.sphere.sdk.orders.LineItemReturnItem
-
- getLineItemId() - Method in interface io.sphere.sdk.orders.LineItemReturnItemDraft
-
- getLineItemId() - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftBuilder
-
- getLineItemId() - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftDsl
-
- getLineItemId() - Method in class io.sphere.sdk.orders.messages.LineItemStateTransitionMessage
-
- getLineItemId() - Method in class io.sphere.sdk.orders.messages.OrderLineItemDistributionChannelSetMessage
-
- getLineItemId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeLineItemQuantity
-
- getLineItemId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.RemoveLineItem
-
- getLineItemId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomField
-
- getLineItemId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomType
-
- getLineItemMode() - Method in interface io.sphere.sdk.carts.LineItem
-
- getLineItemOrder() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeLineItemsOrder
-
- getLineItems() - Method in interface io.sphere.sdk.carts.Cart
-
- getLineItems() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getLineItems() - Method in interface io.sphere.sdk.carts.CartLike
-
Snapshots of the products added to the cart.
- getLineItems() - Method in class io.sphere.sdk.orders.errors.OutOfStockError
-
- getLineItems() - Method in class io.sphere.sdk.orders.errors.PriceChangedError
-
- getLineItems() - Method in interface io.sphere.sdk.orders.Order
-
- getLineItems() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getLineItems() - Method in interface io.sphere.sdk.shoppinglists.ShoppingList
-
- getLineItems() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getLineItems() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getLocale() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getLocale() - Method in interface io.sphere.sdk.carts.CartLike
-
- getLocale() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLocale
-
- getLocale() - Method in class io.sphere.sdk.customers.commands.updateactions.SetLocale
-
- getLocale() - Method in interface io.sphere.sdk.customers.Customer
-
- getLocale() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getLocale() - Method in class io.sphere.sdk.models.LocalizedStringEntry
-
- getLocale() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLocale
-
- getLocale() - Method in class io.sphere.sdk.orders.commands.updateactions.SetLocale
-
- getLocale() - Method in class io.sphere.sdk.reviews.commands.updateactions.SetLocale
-
- getLocale() - Method in interface io.sphere.sdk.reviews.Review
-
Gets the locale (language) in which the text and title are or null.
- getLocale() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
- getLocale() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getLocaleProjection() - Method in interface io.sphere.sdk.selection.LocaleSelection
-
- getLocaleProjection() - Method in class io.sphere.sdk.selection.LocaleSelectionBuilder
-
- getLocaleProjection() - Method in class io.sphere.sdk.selection.LocaleSelectionDsl
-
- getLocales() - Method in class io.sphere.sdk.models.LocalizedString
-
Returns all locales included in this instance.
- getLocales() - Method in class io.sphere.sdk.products.attributes.DefaultProductAttributeFormatter
-
- getLocaleSelection() - Method in interface io.sphere.sdk.selection.LocaleSelectionRequestDsl
-
- getLocalizedDescription() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetLocalizedDescription
-
- getLocalizedDescription() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- getLocalizedDescription() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- getLocalizedDescription() - Method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
- getLocalizedName() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetLocalizedName
-
- getLocalizedName() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- getLocalizedName() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- getLocalizedName() - Method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
- getLocation() - Method in class io.sphere.sdk.zones.commands.updateactions.AddLocation
-
- getLocation() - Method in class io.sphere.sdk.zones.commands.updateactions.RemoveLocation
-
- getLocations() - Method in interface io.sphere.sdk.zones.Zone
-
- getLocations() - Method in interface io.sphere.sdk.zones.ZoneDraft
-
- getLocations() - Method in class io.sphere.sdk.zones.ZoneDraftBuilder
-
- getLocations() - Method in class io.sphere.sdk.zones.ZoneDraftDsl
-
- getLogger(HttpRequest) - Static method in class io.sphere.sdk.utils.SphereInternalLogger
-
- getLogger(HttpResponse) - Static method in class io.sphere.sdk.utils.SphereInternalLogger
-
- getLogger(Class<?>) - Static method in class io.sphere.sdk.utils.SphereInternalLogger
-
- getLogger(String) - Static method in class io.sphere.sdk.utils.SphereInternalLogger
-
- getLongitude() - Method in interface io.sphere.sdk.models.Point
-
Returns the longitude of this point.
- getLowercaseEmail() - Method in interface io.sphere.sdk.customers.Customer
-
The customer's email address in lowercase.
- getLowerEndpoint() - Method in class io.sphere.sdk.search.model.RangeStats
-
Lower endpoint of the range.
- getLowerEndpoint() - Method in class io.sphere.sdk.search.model.SimpleRangeStats
-
Lower endpoint of the range.
- getLowestRating() - Method in interface io.sphere.sdk.reviews.ReviewRatingStatistics
-
- getMasterData() - Method in interface io.sphere.sdk.products.Product
-
- getMasterVariant() - Method in interface io.sphere.sdk.products.ProductData
-
- getMasterVariant() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getMasterVariant() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getMasterVariant() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getMax() - Method in class io.sphere.sdk.search.model.RangeStats
-
Maximum value contained within the range.
- getMax() - Method in class io.sphere.sdk.search.model.SimpleRangeStats
-
Maximum value contained within the range.
- getMaxApplications() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.SetMaxApplications
-
- getMaxApplications() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
The discount code can only be applied maxApplications times.
- getMaxApplications() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getMaxApplicationsPerCustomer() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.SetMaxApplicationsPerCustomer
-
- getMaxApplicationsPerCustomer() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
The discount code can only be applied maxApplicationsPerCustomer times per customer.
- getMaxApplicationsPerCustomer() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getMaxRetryAttempts() - Method in class io.sphere.sdk.sequencegenerators.CustomObjectBigIntegerNumberGeneratorConfig
-
- getMean() - Method in class io.sphere.sdk.search.model.RangeStats
-
Arithmetic mean of the values contained within the range.
- getMeasurements() - Method in class io.sphere.sdk.orders.commands.updateactions.AddParcelToDelivery
-
- getMeasurements() - Method in class io.sphere.sdk.orders.commands.updateactions.SetParcelMeasurements
-
- getMeasurements() - Method in class io.sphere.sdk.orders.messages.ParcelMeasurementsUpdatedMessage
-
- getMeasurements() - Method in interface io.sphere.sdk.orders.Parcel
-
- getMeasurements() - Method in interface io.sphere.sdk.orders.ParcelDraft
-
- getMeasurements() - Method in class io.sphere.sdk.orders.ParcelDraftBuilder
-
- getMeasurements() - Method in class io.sphere.sdk.orders.ParcelDraftDsl
-
- getMessage() - Method in interface io.sphere.sdk.models.errors.ErrorResponse
-
- getMessage() - Method in class io.sphere.sdk.models.errors.SphereError
-
- getMessage() - Method in exception io.sphere.sdk.models.SphereException
-
- getMessage() - Method in interface io.sphere.sdk.subscriptions.MessageSubscriptionPayload
-
- getMessagePayloads() - Method in interface io.sphere.sdk.orderedits.OrderEditPreviewSuccess
-
- getMessages() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeMessages
-
- getMessages() - Method in interface io.sphere.sdk.projects.Project
-
- getMessages() - Method in class io.sphere.sdk.subscriptions.commands.updateactions.SetMessages
-
- getMessages() - Method in interface io.sphere.sdk.subscriptions.Subscription
-
- getMessages() - Method in interface io.sphere.sdk.subscriptions.SubscriptionDraft
-
- getMessages() - Method in class io.sphere.sdk.subscriptions.SubscriptionDraftBuilder
-
- getMessages() - Method in class io.sphere.sdk.subscriptions.SubscriptionDraftDsl
-
- getMessagesConfiguration() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeMessagesConfiguration
-
- getMetaDescription() - Method in interface io.sphere.sdk.categories.Category
-
SEO meta description.
- getMetaDescription() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getMetaDescription() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getMetaDescription() - Method in class io.sphere.sdk.categories.commands.updateactions.SetMetaDescription
-
- getMetaDescription() - Method in interface io.sphere.sdk.models.MetaAttributes
-
- getMetaDescription() - Method in class io.sphere.sdk.products.commands.updateactions.SetMetaDescription
-
- getMetaDescription() - Method in interface io.sphere.sdk.products.ProductData
-
- getMetaDescription() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getMetaDescription() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getMetaDescription() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getMetaKeywords() - Method in interface io.sphere.sdk.categories.Category
-
SEO meta keywords.
- getMetaKeywords() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getMetaKeywords() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getMetaKeywords() - Method in class io.sphere.sdk.categories.commands.updateactions.SetMetaKeywords
-
- getMetaKeywords() - Method in interface io.sphere.sdk.models.MetaAttributes
-
- getMetaKeywords() - Method in class io.sphere.sdk.products.commands.updateactions.SetMetaKeywords
-
- getMetaKeywords() - Method in interface io.sphere.sdk.products.ProductData
-
- getMetaKeywords() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getMetaKeywords() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getMetaKeywords() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getMetaTitle() - Method in interface io.sphere.sdk.categories.Category
-
SEO meta title.
- getMetaTitle() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getMetaTitle() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getMetaTitle() - Method in class io.sphere.sdk.categories.commands.updateactions.SetMetaTitle
-
- getMetaTitle() - Method in interface io.sphere.sdk.models.MetaAttributes
-
- getMetaTitle() - Method in class io.sphere.sdk.products.commands.updateactions.SetMetaTitle
-
- getMetaTitle() - Method in interface io.sphere.sdk.products.ProductData
-
- getMetaTitle() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getMetaTitle() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getMetaTitle() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getMethod() - Method in class io.sphere.sdk.payments.commands.updateactions.SetMethodInfoMethod
-
- getMethod() - Method in interface io.sphere.sdk.payments.PaymentMethodInfo
-
- getMethod() - Method in class io.sphere.sdk.payments.PaymentMethodInfoBuilder
-
- getMethodName() - Method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
Returns the getter method name for this property.
- getMetricObservable() - Method in class io.sphere.sdk.client.metrics.SimpleMetricsSphereClient
-
The observable where observers can be registered.
- getMiddleName() - Method in class io.sphere.sdk.customers.commands.updateactions.ChangeName
-
- getMiddleName() - Method in class io.sphere.sdk.customers.commands.updateactions.SetMiddleName
-
- getMiddleName() - Method in interface io.sphere.sdk.customers.Customer
-
Middle name of the customer.
- getMiddleName() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getMiddleName() - Method in class io.sphere.sdk.customers.CustomerName
-
- getMin() - Method in class io.sphere.sdk.search.model.RangeStats
-
Minimum value contained within the range.
- getMin() - Method in class io.sphere.sdk.search.model.SimpleRangeStats
-
Minimum value contained within the range.
- getMinimumCentAmount() - Method in interface io.sphere.sdk.shippingmethods.CartValue
-
- getMinimumQuantity() - Method in interface io.sphere.sdk.products.PriceTier
-
The minimum quantity this tier price is valid for.
- getMissing() - Method in class io.sphere.sdk.search.TermFacetResult
-
The number of resources which have no value for the corresponding field.
- getMissingRole() - Method in class io.sphere.sdk.stores.error.MissingRoleOnChannelError
-
- getMobile() - Method in class io.sphere.sdk.models.Address
-
- getMode() - Method in interface io.sphere.sdk.productselections.ProductSelection
-
- getModifiedAt() - Method in interface io.sphere.sdk.subscriptions.ResourceCreatedPayload
-
- getModifiedAt() - Method in interface io.sphere.sdk.subscriptions.ResourceDeletedPayload
-
- getModifiedAt() - Method in interface io.sphere.sdk.subscriptions.ResourceUpdatedPayload
-
- getModifiers() - Method in class io.sphere.sdk.annotations.processors.FieldModel
-
- getMoney() - Method in class io.sphere.sdk.cartdiscounts.AbsoluteCartDiscountValue
-
- getMoney() - Method in class io.sphere.sdk.cartdiscounts.FixedCartDiscountValue
-
- getMoney() - Method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- getMoney() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeCustomLineItemMoney
-
- getMoney() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
The positive or negative monetary amount of this custom line item.
- getMoney() - Method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
- getMoney() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddCustomLineItem
-
- getMoney() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeCustomLineItemMoney
-
- getMoney() - Method in interface io.sphere.sdk.orders.CustomLineItemImportDraft
-
- getMoney() - Method in class io.sphere.sdk.productdiscounts.AbsoluteProductDiscountValue
-
The array contains money values in different currencies.
- getName() - Method in class io.sphere.sdk.annotations.processors.FieldModel
-
- getName() - Method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
- getName() - Method in interface io.sphere.sdk.apiclient.ApiClient
-
- getName() - Method in interface io.sphere.sdk.apiclient.ApiClientDraft
-
- getName() - Method in class io.sphere.sdk.apiclient.ApiClientDraftDsl
-
- getName() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
Name of this discount.
- getName() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- getName() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeName
-
- getName() - Method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- getName() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
- getName() - Method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
- getName() - Method in interface io.sphere.sdk.carts.LineItem
-
- getName() - Method in interface io.sphere.sdk.carts.TaxPortion
-
- getName() - Method in interface io.sphere.sdk.categories.Category
-
Name of this category.
- getName() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getName() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getName() - Method in class io.sphere.sdk.categories.commands.updateactions.ChangeAssetName
-
- getName() - Method in class io.sphere.sdk.categories.commands.updateactions.ChangeName
-
- getName() - Method in interface io.sphere.sdk.channels.Channel
-
Name of this channel.
- getName() - Method in interface io.sphere.sdk.channels.ChannelDraft
-
- getName() - Method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
- getName() - Method in class io.sphere.sdk.channels.commands.updateactions.ChangeName
-
- getName() - Method in class io.sphere.sdk.client.SolutionInfo
-
- getName() - Method in class io.sphere.sdk.customergroups.commands.updateactions.ChangeName
-
- getName() - Method in interface io.sphere.sdk.customergroups.CustomerGroup
-
The name of the customer group.
- getName() - Method in interface io.sphere.sdk.customers.Customer
-
- getName() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getName() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.SetName
-
- getName() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
Name of this discount code.
- getName() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getName() - Method in interface io.sphere.sdk.http.NameValuePair
-
- getName() - Method in interface io.sphere.sdk.models.Asset
-
- getName() - Method in interface io.sphere.sdk.models.AssetDraft
-
- getName() - Method in class io.sphere.sdk.models.AssetDraftDsl
-
- getName() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddCustomLineItem
-
- getName() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.OrderEditSetCustomFieldBase
-
- getName() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomField
-
- getName() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomField
-
- getName() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomField
-
- getName() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomField
-
- getName() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomField
-
- getName() - Method in interface io.sphere.sdk.orders.CustomLineItemImportDraft
-
- getName() - Method in interface io.sphere.sdk.orders.LineItemImportDraft
-
- getName() - Method in class io.sphere.sdk.payments.commands.updateactions.SetMethodInfoName
-
- getName() - Method in interface io.sphere.sdk.payments.PaymentMethodInfo
-
- getName() - Method in class io.sphere.sdk.payments.PaymentMethodInfoBuilder
-
- getName() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.ChangeName
-
- getName() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscount
-
- getName() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- getName() - Method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
- getName() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getName() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinition
-
The unique name of the attribute used in the API.
- getName() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- getName() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinitionDraft
-
- getName() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftDsl
-
- getName() - Method in interface io.sphere.sdk.products.attributes.AttributeDraft
-
- getName() - Method in interface io.sphere.sdk.products.attributes.AttributeImportDraft
-
- getName() - Method in interface io.sphere.sdk.products.attributes.NamedAttributeAccess
-
- getName() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- getName() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeName
-
- getName() - Method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- getName() - Method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
- getName() - Method in interface io.sphere.sdk.products.ProductData
-
- getName() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getName() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getName() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getName() - Method in class io.sphere.sdk.productselections.commands.updateactions.ChangeName
-
- getName() - Method in class io.sphere.sdk.productselections.messages.ProductSelectionDeletedMessage
-
- getName() - Method in interface io.sphere.sdk.productselections.ProductSelection
-
- getName() - Method in interface io.sphere.sdk.productselections.ProductSelectionDraft
-
- getName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeName
-
- getName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.RemoveAttributeDefinition
-
- getName() - Method in interface io.sphere.sdk.producttypes.ProductType
-
- getName() - Method in interface io.sphere.sdk.producttypes.ProductTypeDraft
-
- getName() - Method in class io.sphere.sdk.producttypes.ProductTypeDraftBuilder
-
- getName() - Method in class io.sphere.sdk.producttypes.ProductTypeDraftDsl
-
- getName() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeName
-
- getName() - Method in interface io.sphere.sdk.projects.Project
-
The name of the project.
- getName() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.ChangeName
-
- getName() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- getName() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- getName() - Method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
- getName() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddTextLineItem
-
- getName() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeName
-
- getName() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeTextLineItemName
-
- getName() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getName() - Method in interface io.sphere.sdk.shoppinglists.ShoppingList
-
- getName() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getName() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getName() - Method in interface io.sphere.sdk.shoppinglists.TextLineItem
-
- getName() - Method in interface io.sphere.sdk.shoppinglists.TextLineItemDraft
-
- getName() - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder
-
- getName() - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftDsl
-
- getName() - Method in class io.sphere.sdk.states.commands.updateactions.SetName
-
- getName() - Method in interface io.sphere.sdk.states.State
-
- getName() - Method in interface io.sphere.sdk.states.StateDraft
-
- getName() - Method in class io.sphere.sdk.stores.commands.updateactions.SetName
-
- getName() - Method in class io.sphere.sdk.stores.messages.StoreCreatedMessage
-
- getName() - Method in interface io.sphere.sdk.stores.Store
-
- getName() - Method in interface io.sphere.sdk.stores.StoreDraft
-
- getName() - Method in class io.sphere.sdk.stores.StoreDraftBuilder
-
- getName() - Method in class io.sphere.sdk.stores.StoreDraftDsl
-
- getName() - Method in class io.sphere.sdk.taxcategories.commands.updateactions.ChangeName
-
- getName() - Method in interface io.sphere.sdk.taxcategories.ExternalTaxRateDraft
-
- getName() - Method in interface io.sphere.sdk.taxcategories.SubRate
-
- getName() - Method in interface io.sphere.sdk.taxcategories.TaxCategory
-
- getName() - Method in interface io.sphere.sdk.taxcategories.TaxCategoryDraft
-
- getName() - Method in class io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder
-
- getName() - Method in class io.sphere.sdk.taxcategories.TaxCategoryDraftDsl
-
- getName() - Method in interface io.sphere.sdk.taxcategories.TaxRate
-
- getName() - Method in interface io.sphere.sdk.taxcategories.TaxRateDraft
-
- getName() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeName
-
- getName() - Method in class io.sphere.sdk.types.customupdateactions.SetCustomFieldBase
-
- getName() - Method in interface io.sphere.sdk.types.FieldDefinition
-
- getName() - Method in interface io.sphere.sdk.types.Type
-
- getName() - Method in interface io.sphere.sdk.types.TypeDraft
-
- getName() - Method in class io.sphere.sdk.zones.commands.updateactions.ChangeName
-
- getName() - Method in interface io.sphere.sdk.zones.Zone
-
- getName() - Method in interface io.sphere.sdk.zones.ZoneDraft
-
- getName() - Method in class io.sphere.sdk.zones.ZoneDraftBuilder
-
- getName() - Method in class io.sphere.sdk.zones.ZoneDraftDsl
-
- getNewAttributeName() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeName
-
- getNewAvailableQuantity() - Method in class io.sphere.sdk.inventory.messages.InventoryEntryQuantitySetMessage
-
- getNewIncludedInStatistics() - Method in class io.sphere.sdk.reviews.messages.ReviewStateTransitionMessage
-
- getNewKey() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeEnumKey
-
- getNewPassword() - Method in class io.sphere.sdk.customers.commands.CustomerChangePasswordCommand
-
- getNewPassword() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreChangePasswordCommand
-
- getNewPassword() - Method in class io.sphere.sdk.customers.commands.CustomerInStorePasswordResetCommand
-
- getNewPassword() - Method in class io.sphere.sdk.customers.commands.CustomerPasswordResetCommand
-
- getNewQuantityOnStock() - Method in class io.sphere.sdk.inventory.messages.InventoryEntryQuantitySetMessage
-
- getNewRating() - Method in class io.sphere.sdk.reviews.messages.ReviewRatingSetMessage
-
- getNewState() - Method in class io.sphere.sdk.reviews.messages.ReviewStateTransitionMessage
-
- getNewValue() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeConstraint
-
- getNewValue() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeInputHint
-
- getNewValue() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeLocalizedEnumValueLabel
-
- getNewValue() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangePlainEnumValueLabel
-
- getNextNumber() - Method in interface io.sphere.sdk.sequencegenerators.BigIntegerNumberGenerator
-
This generator ensures that all calls (even in parallel) generates a different number.
- getNextNumber() - Method in class io.sphere.sdk.sequencegenerators.CustomObjectBigIntegerNumberGenerator
-
- getNotificationType() - Method in interface io.sphere.sdk.subscriptions.Payload
-
Identifies the payload.
- getNumber() - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- getNumber() - Method in class io.sphere.sdk.utils.MoneyImpl
-
- getObj() - Method in interface io.sphere.sdk.models.KeyReference
-
- getObj() - Method in interface io.sphere.sdk.models.Reference
-
The nullable value of the referenced object.
- getOffset() - Method in interface io.sphere.sdk.queries.PagedQueryResult
-
The offset supplied by the client or the server default.
- getOffset() - Method in interface io.sphere.sdk.queries.PagedResult
-
The offset supplied by the client or the server default.
- getOffset() - Method in class io.sphere.sdk.queries.PagedResultBase
-
The offset supplied by the client or the server default.
- getOffset() - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getOldAvailableQuantity() - Method in class io.sphere.sdk.inventory.messages.InventoryEntryQuantitySetMessage
-
- getOldCustomer() - Method in class io.sphere.sdk.orders.messages.OrderCustomerSetMessage
-
- getOldCustomerGroup() - Method in class io.sphere.sdk.orders.messages.OrderCustomerGroupSetMessage
-
- getOldCustomerGroup() - Method in class io.sphere.sdk.orders.messages.OrderCustomerSetMessage
-
- getOldIncludedInStatistics() - Method in class io.sphere.sdk.reviews.messages.ReviewStateTransitionMessage
-
- getOldQuantityOnStock() - Method in class io.sphere.sdk.inventory.messages.InventoryEntryQuantitySetMessage
-
- getOldRating() - Method in class io.sphere.sdk.reviews.messages.ReviewRatingSetMessage
-
- getOldShippingInfo() - Method in class io.sphere.sdk.orders.messages.OrderShippingInfoSetMessage
-
- getOldSlug() - Method in class io.sphere.sdk.categories.messages.CategorySlugChangedMessage
-
- getOldSlug() - Method in class io.sphere.sdk.products.messages.ProductSlugChangedMessage
-
- getOldState() - Method in class io.sphere.sdk.orders.messages.OrderDiscountCodeStateSetMessage
-
- getOldState() - Method in class io.sphere.sdk.orders.messages.OrderStateTransitionMessage
-
- getOldState() - Method in class io.sphere.sdk.reviews.messages.ReviewStateTransitionMessage
-
- getOldVersion() - Method in interface io.sphere.sdk.subscriptions.ResourceUpdatedPayload
-
The version of the resource before the update.
- getOrder() - Method in class io.sphere.sdk.orders.messages.OrderCreatedMessage
-
Gets the order object at creation time.
- getOrder() - Method in class io.sphere.sdk.orders.messages.OrderDeletedMessage
-
- getOrder() - Method in class io.sphere.sdk.orders.messages.OrderImportedMessage
-
Gets the order object at creation time.
- getOrderHint() - Method in interface io.sphere.sdk.categories.Category
-
An attribute as base for a custom category order in one level.
- getOrderHint() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getOrderHint() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getOrderHint() - Method in class io.sphere.sdk.categories.commands.updateactions.ChangeOrderHint
-
- getOrderHint() - Method in class io.sphere.sdk.products.commands.updateactions.AddToCategory
-
- getOrderHint() - Method in class io.sphere.sdk.products.commands.updateactions.SetCategoryOrderHint
-
- getOrderNumber() - Method in interface io.sphere.sdk.messages.UserProvidedIdentifiers
-
- getOrderNumber() - Method in class io.sphere.sdk.orders.commands.updateactions.SetOrderNumber
-
- getOrderNumber() - Method in interface io.sphere.sdk.orders.Order
-
String that uniquely identifies an order.
- getOrderNumber() - Method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- getOrderNumber() - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
- getOrderNumber() - Method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
- getOrderNumber() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getOrderState() - Method in class io.sphere.sdk.orders.commands.updateactions.ChangeOrderState
-
- getOrderState() - Method in class io.sphere.sdk.orders.messages.OrderStateChangedMessage
-
- getOrderState() - Method in interface io.sphere.sdk.orders.Order
-
State of this order.
- getOrderState() - Method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- getOrderState() - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
- getOrderState() - Method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
- getOrderState() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getOrigin() - Method in interface io.sphere.sdk.carts.Cart
-
- getOrigin() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getOrigin() - Method in interface io.sphere.sdk.carts.CartLike
-
- getOrigin() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getOrThrow(Map<K, V>, K, Supplier<E>) - Static method in class io.sphere.sdk.utils.SphereInternalUtils
-
- getOther() - Method in class io.sphere.sdk.search.TermFacetResult
-
The number of resources not included in the returned list of terms.
- getPackageName(Element) - Method in class io.sphere.sdk.annotations.processors.generators.CustomUpdateActionsGenerator
-
- getPackageName(Element) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionGenerator
-
- getPackageName(Element) - Method in class io.sphere.sdk.annotations.processors.generators.UpdateActionsGenerator
-
- getPackageName(Element) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getPageIndex() - Method in interface io.sphere.sdk.queries.PagedResult
-
Calculates the page number of the result, the pages are indexed staring 0, which means that getPageIndex()
returns a value in [0,n) , given 'n' is the total number of pages
- getParameterNames() - Method in class io.sphere.sdk.http.UriTemplate
-
Returns the set of parameter names.
- getParameters() - Method in class io.sphere.sdk.http.FormUrlEncodedHttpRequestBody
-
- getParcel() - Method in class io.sphere.sdk.orders.messages.ParcelAddedToDeliveryMessage
-
- getParcel() - Method in class io.sphere.sdk.orders.messages.ParcelRemovedFromDeliveryMessage
-
- getParcelId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomField
-
- getParcelId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomType
-
- getParcelId() - Method in class io.sphere.sdk.orders.commands.updateactions.RemoveParcelFromDelivery
-
- getParcelId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomField
-
- getParcelId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomType
-
- getParcelId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetParcelItems
-
- getParcelId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetParcelMeasurements
-
- getParcelId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetParcelTrackingData
-
- getParcelId() - Method in class io.sphere.sdk.orders.messages.ParcelItemsUpdatedMessage
-
- getParcelId() - Method in class io.sphere.sdk.orders.messages.ParcelMeasurementsUpdatedMessage
-
- getParcelId() - Method in class io.sphere.sdk.orders.messages.ParcelTrackingDataUpdatedMessage
-
- getParcels() - Method in class io.sphere.sdk.orders.commands.updateactions.AddDelivery
-
- getParcels() - Method in interface io.sphere.sdk.orders.Delivery
-
- getParent() - Method in interface io.sphere.sdk.categories.Category
-
Reference to the parent category.
- getParent() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getParent() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getParent() - Method in class io.sphere.sdk.categories.commands.updateactions.ChangeParent
-
- getParent() - Method in interface io.sphere.sdk.queries.QueryModel
-
- getParent() - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- getParent() - Method in interface io.sphere.sdk.search.model.SearchModel
-
- getParent() - Method in class io.sphere.sdk.search.model.SearchModelImpl
-
- getPassword() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreSignInCommand
-
- getPassword() - Method in class io.sphere.sdk.customers.commands.CustomerSignInCommand
-
- getPassword() - Method in class io.sphere.sdk.customers.commands.updateactions.SetAuthenticationMode
-
- getPassword() - Method in interface io.sphere.sdk.customers.Customer
-
- getPassword() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getPath() - Method in class io.sphere.sdk.client.HttpRequestIntent
-
- getPathSegment() - Method in interface io.sphere.sdk.queries.QueryModel
-
- getPathSegment() - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- getPathSegment() - Method in interface io.sphere.sdk.search.model.SearchModel
-
- getPathSegment() - Method in class io.sphere.sdk.search.model.SearchModelImpl
-
- getPaylaodNotIncluded() - Method in interface io.sphere.sdk.subscriptions.MessageSubscriptionPayload
-
- getPayload() - Method in class io.sphere.sdk.messages.GenericMessageImpl
-
- getPayload() - Method in interface io.sphere.sdk.messages.Message
-
Gets the top level fields not mapped by the current message class.
- getPayloadType() - Method in interface io.sphere.sdk.subscriptions.PayloadNotIncluded
-
- getPayment() - Method in class io.sphere.sdk.carts.commands.updateactions.AddPayment
-
- getPayment() - Method in class io.sphere.sdk.carts.commands.updateactions.RemovePayment
-
- getPayment() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddPayment
-
- getPayment() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.RemovePayment
-
- getPayment() - Method in class io.sphere.sdk.orders.commands.updateactions.AddPayment
-
- getPayment() - Method in class io.sphere.sdk.orders.commands.updateactions.RemovePayment
-
- getPayment() - Method in class io.sphere.sdk.orders.messages.OrderPaymentAddedMessage
-
- getPayment() - Method in class io.sphere.sdk.payments.messages.PaymentCreatedMessage
-
Gets the payment at creation time
- getPaymentId() - Method in class io.sphere.sdk.payments.messages.PaymentStatusInterfaceCodeSetMessage
-
- getPaymentInfo() - Method in interface io.sphere.sdk.carts.Cart
-
- getPaymentInfo() - Method in interface io.sphere.sdk.carts.CartLike
-
Get associated payments.
- getPaymentInfo() - Method in interface io.sphere.sdk.orders.Order
-
Get associated payments.
- getPaymentInterface() - Method in interface io.sphere.sdk.payments.PaymentMethodInfo
-
- getPaymentInterface() - Method in class io.sphere.sdk.payments.PaymentMethodInfoBuilder
-
- getPaymentMethodInfo() - Method in interface io.sphere.sdk.payments.Payment
-
- getPaymentMethodInfo() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getPaymentMethodInfo() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getPaymentMethodInfo() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getPayments() - Method in interface io.sphere.sdk.carts.PaymentInfo
-
- getPaymentState() - Method in class io.sphere.sdk.orders.commands.updateactions.ChangePaymentState
-
- getPaymentState() - Method in class io.sphere.sdk.orders.commands.updateactions.SetReturnPaymentState
-
- getPaymentState() - Method in class io.sphere.sdk.orders.messages.OrderPaymentStateChangedMessage
-
- getPaymentState() - Method in interface io.sphere.sdk.orders.Order
-
Payment state of this order.
- getPaymentState() - Method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- getPaymentState() - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
- getPaymentState() - Method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
- getPaymentState() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getPaymentState() - Method in interface io.sphere.sdk.orders.ReturnItem
-
- getPaymentStatus() - Method in interface io.sphere.sdk.payments.Payment
-
- getPaymentStatus() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getPaymentStatus() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getPaymentStatus() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getPermyriad() - Method in class io.sphere.sdk.cartdiscounts.RelativeCartDiscountValue
-
- getPermyriad() - Method in class io.sphere.sdk.productdiscounts.RelativeProductDiscountValue
-
Per ten thousand.
- getPhone() - Method in class io.sphere.sdk.models.Address
-
- getPoBox() - Method in class io.sphere.sdk.models.Address
-
- getPosition() - Method in class io.sphere.sdk.categories.commands.updateactions.AddAsset
-
- getPosition() - Method in class io.sphere.sdk.products.commands.updateactions.AddAsset
-
- getPosition() - Method in class io.sphere.sdk.products.commands.updateactions.MoveImageToPosition
-
- getPostalCode() - Method in class io.sphere.sdk.models.Address
-
- getPredicate() - Method in class io.sphere.sdk.cartdiscounts.CustomLineItemsTarget
-
- getPredicate() - Method in class io.sphere.sdk.cartdiscounts.LineItemsTarget
-
- getPredicate() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.ChangePredicate
-
- getPredicate() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscount
-
- getPredicate() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- getPredicate() - Method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
- getPredicate() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetPredicate
-
- getPredicate() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- getPredicate() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- getPredicate() - Method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
- getPreview() - Method in interface io.sphere.sdk.orderedits.OrderEditPreviewSuccess
-
- getPrice() - Method in interface io.sphere.sdk.carts.CartShippingInfo
-
- getPrice() - Method in interface io.sphere.sdk.carts.ExternalLineItemTotalPrice
-
- getPrice() - Method in interface io.sphere.sdk.carts.LineItem
-
- getPrice() - Method in interface io.sphere.sdk.orders.LineItemImportDraft
-
- getPrice() - Method in interface io.sphere.sdk.orders.OrderShippingInfo
-
- getPrice() - Method in interface io.sphere.sdk.orders.ShippingInfoImportDraft
-
- getPrice() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
- getPrice() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
- getPrice() - Method in class io.sphere.sdk.productdiscounts.queries.MatchingProductDiscountGet
-
- getPrice() - Method in class io.sphere.sdk.products.commands.updateactions.AddPrice
-
- getPrice() - Method in class io.sphere.sdk.products.commands.updateactions.ChangePrice
-
- getPrice() - Method in interface io.sphere.sdk.products.ProductVariant
-
Optional price from the price selection in the search endpoint.
- getPrice() - Method in interface io.sphere.sdk.shippingmethods.ShippingRate
-
- getPrice() - Method in interface io.sphere.sdk.shippingmethods.ShippingRatePriceTier
-
- getPriceChannel() - Method in interface io.sphere.sdk.products.search.PriceSelection
-
- getPriceChannel() - Method in class io.sphere.sdk.products.search.PriceSelectionBuilder
-
- getPriceChannel() - Method in class io.sphere.sdk.products.search.PriceSelectionDsl
-
- getPriceCountry() - Method in interface io.sphere.sdk.products.search.PriceSelection
-
- getPriceCountry() - Method in class io.sphere.sdk.products.search.PriceSelectionBuilder
-
- getPriceCountry() - Method in class io.sphere.sdk.products.search.PriceSelectionDsl
-
- getPriceCurrency() - Method in interface io.sphere.sdk.products.search.PriceSelection
-
- getPriceCurrency() - Method in class io.sphere.sdk.products.search.PriceSelectionBuilder
-
- getPriceCurrency() - Method in class io.sphere.sdk.products.search.PriceSelectionDsl
-
- getPriceCustomerGroup() - Method in interface io.sphere.sdk.products.search.PriceSelection
-
- getPriceCustomerGroup() - Method in class io.sphere.sdk.products.search.PriceSelectionBuilder
-
- getPriceCustomerGroup() - Method in class io.sphere.sdk.products.search.PriceSelectionDsl
-
- getPriceFunction() - Method in interface io.sphere.sdk.shippingmethods.CartScore
-
- getPriceId() - Method in class io.sphere.sdk.products.commands.updateactions.ChangePrice
-
- getPriceId() - Method in class io.sphere.sdk.products.commands.updateactions.RemovePrice
-
- getPriceId() - Method in class io.sphere.sdk.products.commands.updateactions.SetDiscountedPrice
-
- getPriceId() - Method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomField
-
- getPriceId() - Method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- getPriceId() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountsSetMessage
-
- getPriceId() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountUpdate
-
- getPriceId() - Method in class io.sphere.sdk.products.messages.ProductPriceExternalDiscountSetMessage
-
- getPriceMode() - Method in interface io.sphere.sdk.carts.LineItem
-
- getPrices() - Method in interface io.sphere.sdk.orders.ProductVariantImportDraft
-
- getPrices() - Method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
- getPrices() - Method in class io.sphere.sdk.products.commands.updateactions.SetPrices
-
- getPrices() - Method in interface io.sphere.sdk.products.ProductVariant
-
Gets all prices for this product variant.
- getPrices() - Method in interface io.sphere.sdk.products.ProductVariantDraft
-
- getPrices() - Method in class io.sphere.sdk.products.ProductVariantDraftDsl
-
- getPriceSelection() - Method in interface io.sphere.sdk.products.search.PriceSelectionRequestDsl
-
- getPriceSelection() - Method in interface io.sphere.sdk.products.search.ProductProjectionSearch
-
- getPriority() - Method in class javax.money.spi.OSGiPriorityAwareServiceProvider
-
Returns a priority value of 10.
- getProduct() - Method in class io.sphere.sdk.cartdiscounts.GiftLineItemCartDiscountValue
-
- getProduct() - Method in interface io.sphere.sdk.productselections.AssignedProductReference
-
- getProduct() - Method in class io.sphere.sdk.productselections.commands.updateactions.AddProduct
-
- getProduct() - Method in interface io.sphere.sdk.productselections.ProductSelectionAssignment
-
- getProductCount() - Method in interface io.sphere.sdk.productselections.ProductSelection
-
- getProductCount() - Method in class io.sphere.sdk.search.FilteredFacetResult
-
The number of products matching the filter value.
- getProductCount() - Method in class io.sphere.sdk.search.model.RangeStats
-
Number of products that fall into this range.
- getProductCount() - Method in interface io.sphere.sdk.search.TermStats
-
- getProductId() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getProductId() - Method in interface io.sphere.sdk.carts.LineItem
-
- getProductId() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getProductId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getProductId() - Method in class io.sphere.sdk.orders.errors.MatchingPriceNotFoundError
-
- getProductId() - Method in interface io.sphere.sdk.orders.LineItemImportDraft
-
- getProductId() - Method in interface io.sphere.sdk.orders.ProductVariantImportDraft
-
- getProductId() - Method in class io.sphere.sdk.productdiscounts.queries.MatchingProductDiscountGet
-
- getProductId() - Method in interface io.sphere.sdk.products.ByIdVariantIdentifier
-
- getProductId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddLineItem
-
- getProductId() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getProductId() - Method in interface io.sphere.sdk.shoppinglists.LineItemDraft
-
- getProductId() - Method in class io.sphere.sdk.shoppinglists.LineItemDraftDsl
-
- getProductKey() - Method in interface io.sphere.sdk.carts.LineItem
-
- getProductProjection() - Method in class io.sphere.sdk.products.messages.ProductCreatedMessage
-
The staged projection of the product at the time of creation.
- getProductProjection() - Method in class io.sphere.sdk.products.messages.ProductPublishedMessage
-
- getProductReference() - Method in class io.sphere.sdk.productselections.messages.ProductSelectionProductAddedMessage
-
- getProductReference() - Method in class io.sphere.sdk.productselections.messages.ProductSelectionProductRemovedMessage
-
- getProductResourceIdentifier() - Method in class io.sphere.sdk.productselections.commands.updateactions.RemoveProduct
-
- getProducts() - Method in interface io.sphere.sdk.projects.SearchIndexingConfiguration
-
- getProductSelection() - Method in interface io.sphere.sdk.productselections.AssignedProductSelection
-
- getProductSelection() - Method in interface io.sphere.sdk.productselections.ProductSelectionAssignment
-
- getProductSelection() - Method in class io.sphere.sdk.stores.commands.updateactions.AddProductSelection
-
- getProductSelection() - Method in class io.sphere.sdk.stores.commands.updateactions.ChangeProductSelection
-
- getProductSelection() - Method in class io.sphere.sdk.stores.commands.updateactions.RemoveProductSelection
-
- getProductSelection() - Method in class io.sphere.sdk.stores.commands.updateactions.SetProductSelections
-
- getProductSelection() - Method in interface io.sphere.sdk.stores.ProductSelectionSetting
-
- getProductSelection() - Method in interface io.sphere.sdk.stores.ProductSelectionSettingDraft
-
- getProductSelection() - Method in class io.sphere.sdk.stores.ProductSelectionSettingDraftBuilder
-
- getProductSelection() - Method in class io.sphere.sdk.stores.ProductSelectionSettingDraftDsl
-
- getProductSelections() - Method in class io.sphere.sdk.stores.messages.StoreCreatedMessage
-
- getProductSelections() - Method in interface io.sphere.sdk.stores.Store
-
- getProductSelections() - Method in interface io.sphere.sdk.stores.StoreDraft
-
- getProductSelections() - Method in class io.sphere.sdk.stores.StoreDraftBuilder
-
- getProductSelections() - Method in class io.sphere.sdk.stores.StoreDraftDsl
-
- getProductSelectionType() - Method in class io.sphere.sdk.productselections.messages.ProductSelectionCreatedMessage
-
- getProductSlug() - Method in interface io.sphere.sdk.carts.LineItem
-
- getProductSlug() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getProductType() - Method in interface io.sphere.sdk.carts.LineItem
-
- getProductType() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getProductType() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getProductType() - Method in interface io.sphere.sdk.products.ProductLike
-
- getProductType() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getProjectId() - Method in interface io.sphere.sdk.subscriptions.PubSubDestination
-
- getProjectKey() - Method in interface io.sphere.sdk.apiclient.ApiClient
-
- getProjectKey() - Method in interface io.sphere.sdk.client.SphereApiConfig
-
- getProjectKey() - Method in interface io.sphere.sdk.client.SphereAuthConfig
-
- getProjectKey() - Method in class io.sphere.sdk.client.SphereClientConfig
-
- getProjectKey() - Method in exception io.sphere.sdk.models.SphereException
-
- getProjectKey() - Method in interface io.sphere.sdk.subscriptions.Payload
-
The key of the project.
- getPropertyMethods(TypeElement) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
Returns property methods - not included inherited methods - as stream.
- getPropertyName(ExecutableElement) - Static method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
Returns the property name of the given property method.
- getProvider() - Method in interface io.sphere.sdk.orders.TrackingData
-
- getProviderTransaction() - Method in interface io.sphere.sdk.orders.TrackingData
-
- getQuantity() - Method in interface io.sphere.sdk.cartdiscounts.DiscountedLineItemPriceForQuantity
-
- getQuantity() - Method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- getQuantity() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getQuantity() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeCustomLineItemQuantity
-
- getQuantity() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeLineItemQuantity
-
- getQuantity() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
The item count of this custom line item.
- getQuantity() - Method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
- getQuantity() - Method in interface io.sphere.sdk.carts.ItemShippingTarget
-
- getQuantity() - Method in interface io.sphere.sdk.carts.ItemState
-
- getQuantity() - Method in interface io.sphere.sdk.carts.LineItem
-
- getQuantity() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getQuantity() - Method in interface io.sphere.sdk.carts.LineItemLike
-
- getQuantity() - Method in class io.sphere.sdk.inventory.commands.updateactions.AddQuantity
-
- getQuantity() - Method in class io.sphere.sdk.inventory.commands.updateactions.ChangeQuantity
-
- getQuantity() - Method in class io.sphere.sdk.inventory.commands.updateactions.RemoveQuantity
-
- getQuantity() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddCustomLineItem
-
- getQuantity() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getQuantity() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeCustomLineItemQuantity
-
- getQuantity() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeLineItemQuantity
-
- getQuantity() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- getQuantity() - Method in interface io.sphere.sdk.orders.CustomLineItemImportDraft
-
- getQuantity() - Method in interface io.sphere.sdk.orders.CustomLineItemReturnItemDraft
-
- getQuantity() - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftBuilder
-
- getQuantity() - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftDsl
-
- getQuantity() - Method in interface io.sphere.sdk.orders.DeliveryItem
-
- getQuantity() - Method in interface io.sphere.sdk.orders.LineItemImportDraft
-
- getQuantity() - Method in interface io.sphere.sdk.orders.LineItemReturnItemDraft
-
- getQuantity() - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftBuilder
-
- getQuantity() - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftDsl
-
- getQuantity() - Method in interface io.sphere.sdk.orders.ReturnItem
-
- getQuantity() - Method in interface io.sphere.sdk.orders.ReturnItemDraft
-
- getQuantity() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddLineItem
-
- getQuantity() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddTextLineItem
-
- getQuantity() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeLineItemQuantity
-
- getQuantity() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeTextLineItemQuantity
-
- getQuantity() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.RemoveLineItem
-
- getQuantity() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.RemoveTextLineItem
-
- getQuantity() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getQuantity() - Method in interface io.sphere.sdk.shoppinglists.LineItemDraft
-
- getQuantity() - Method in class io.sphere.sdk.shoppinglists.LineItemDraftDsl
-
- getQuantity() - Method in interface io.sphere.sdk.shoppinglists.TextLineItem
-
- getQuantity() - Method in interface io.sphere.sdk.shoppinglists.TextLineItemDraft
-
- getQuantity() - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder
-
- getQuantity() - Method in class io.sphere.sdk.shoppinglists.TextLineItemDraftDsl
-
- getQuantityOnStock() - Method in interface io.sphere.sdk.inventory.InventoryEntry
-
Overall amount of stock.
- getQuantityOnStock() - Method in interface io.sphere.sdk.inventory.InventoryEntryDraft
-
Overall amount of stock.
- getQuantityOnStock() - Method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
- getQueryModel() - Method in class io.sphere.sdk.queries.QueryModelQueryPredicate
-
- getQueryParametersPlusLocaleSelection(LocaleSelection, List<NameValuePair>) - Static method in class io.sphere.sdk.selection.LocaleSelectionQueryParameters
-
- getQueryParametersWithLocaleSelection(LocaleSelection, List<NameValuePair>) - Static method in class io.sphere.sdk.selection.LocaleSelectionQueryParameters
-
- getQueryParametersWithPriceSelection(PriceSelection, List<NameValuePair>) - Static method in class io.sphere.sdk.products.search.PriceSelectionQueryParameters
-
SDK internal method to to add price selection query parameters to the additional query parameters list.
- getQueryParametersWithStoreSelection(StoreSelection, List<NameValuePair>) - Static method in class io.sphere.sdk.selection.StoreSelectionQueryParameters
-
- getQueueUrl() - Method in interface io.sphere.sdk.subscriptions.SqsDestination
-
- getRangeFacetResult(String) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getRanges() - Method in class io.sphere.sdk.search.RangeFacetResult
-
- getRangeStatsOfAllRanges(RangeFacetExpression<T>) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getRangeStatsOfAllRanges(RangeFacetedSearchExpression<T>) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getRate() - Method in interface io.sphere.sdk.carts.TaxPortion
-
- getRates() - Method in interface io.sphere.sdk.taxcategories.TaxCategory
-
- getRating() - Method in class io.sphere.sdk.reviews.commands.updateactions.SetRating
-
- getRating() - Method in interface io.sphere.sdk.reviews.Review
-
Gets the rating or null.
- getRating() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
- getRating() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getRatingsDistribution() - Method in interface io.sphere.sdk.reviews.ReviewRatingStatistics
-
A mapping from a concrete rating to the count of this rating.
- getRawScopes() - Method in interface io.sphere.sdk.client.SphereAuthConfig
-
- getRawScopes() - Method in class io.sphere.sdk.client.SphereClientConfig
-
- getReason() - Method in interface io.sphere.sdk.subscriptions.PayloadNotIncluded
-
- getReference() - Method in interface io.sphere.sdk.carts.commands.CartReplicationDraft
-
- getReference() - Method in class io.sphere.sdk.carts.commands.CartReplicationDraftBuilder
-
- getReference() - Method in class io.sphere.sdk.carts.commands.CartReplicationDraftDsl
-
- getReferences() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
- getReferences() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
The backend will generate this array from the cartPredicate.
- getReferences() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscount
-
- getReferenceTypeId() - Method in class io.sphere.sdk.products.attributes.ReferenceAttributeType
-
- getReferenceTypeId() - Method in class io.sphere.sdk.types.ReferenceFieldType
-
- getRefreshToken() - Method in interface io.sphere.sdk.client.Tokens
-
- getRefreshTokenValiditySeconds() - Method in interface io.sphere.sdk.apiclient.ApiClient
-
- getRefreshTokenValiditySeconds() - Method in interface io.sphere.sdk.apiclient.ApiClientDraft
-
- getRefreshTokenValiditySeconds() - Method in class io.sphere.sdk.apiclient.ApiClientDraftDsl
-
- getRefusedGifts() - Method in interface io.sphere.sdk.carts.Cart
-
The refused gifts of this cart.
- getRefusedGifts() - Method in interface io.sphere.sdk.orders.Order
-
The refused gifts of this cart.
- getRegion() - Method in class io.sphere.sdk.models.Address
-
- getRegion() - Method in interface io.sphere.sdk.subscriptions.SqsDestination
-
- getRemovedImageUrls() - Method in class io.sphere.sdk.products.messages.ProductPublishedMessage
-
- getRemovedProductSelections() - Method in class io.sphere.sdk.stores.messages.StoreProductSelectionsChangedMessage
-
- getRequest() - Method in interface io.sphere.sdk.client.metrics.ObservedDuration
-
The sphere request related to the observed duration.
- getRequestId() - Method in interface io.sphere.sdk.client.metrics.ObservedDuration
-
- getReset() - Method in class io.sphere.sdk.customers.messages.CustomerPasswordUpdatedMessage
-
- getResource() - Method in interface io.sphere.sdk.messages.GenericMessage
-
- getResource() - Method in class io.sphere.sdk.messages.GenericMessageImpl
-
- getResource() - Method in interface io.sphere.sdk.messages.Message
-
- getResource() - Method in interface io.sphere.sdk.orderedits.OrderEdit
-
- getResource() - Method in interface io.sphere.sdk.orderedits.OrderEditDraft
-
- getResource() - Method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
- getResource() - Method in class io.sphere.sdk.orderedits.OrderEditDraftDsl
-
- getResource() - Method in interface io.sphere.sdk.subscriptions.Payload
-
A reference to the resource that triggered this delivery.
- getResourceName(TypeElement) - Method in class io.sphere.sdk.annotations.processors.AbstractAnnotationProcessor
-
- getResourceTypeId() - Method in interface io.sphere.sdk.extensions.Trigger
-
- getResourceTypeId() - Method in interface io.sphere.sdk.subscriptions.ChangeSubscription
-
- getResourceTypeId() - Method in interface io.sphere.sdk.subscriptions.MessageSubscription
-
- getResourceTypeIds() - Method in interface io.sphere.sdk.types.Type
-
- getResourceTypeIds() - Method in interface io.sphere.sdk.types.TypeDraft
-
- getResourceUserProvidedIdentifiers() - Method in class io.sphere.sdk.messages.GenericMessageImpl
-
- getResourceUserProvidedIdentifiers() - Method in interface io.sphere.sdk.messages.Message
-
- getResourceUserProvidedIdentifiers() - Method in interface io.sphere.sdk.subscriptions.Payload
-
- getResourceValueImplType(TypeElement) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getResourceVersion() - Method in class io.sphere.sdk.messages.GenericMessageImpl
-
- getResourceVersion() - Method in interface io.sphere.sdk.messages.Message
-
- getResourceVersion() - Method in class io.sphere.sdk.orderedits.commands.OrderEditApplyCommand
-
- getResponseBody() - Method in interface io.sphere.sdk.http.HttpResponse
-
- getRestockableInDays() - Method in interface io.sphere.sdk.inventory.AvailabilityInfo
-
- getRestockableInDays() - Method in class io.sphere.sdk.inventory.AvailabilityInfoBuilder
-
- getRestockableInDays() - Method in class io.sphere.sdk.inventory.commands.updateactions.SetRestockableInDays
-
- getRestockableInDays() - Method in interface io.sphere.sdk.inventory.InventoryEntry
-
The time period in days, that tells how often this inventory entry is restocked.
- getRestockableInDays() - Method in interface io.sphere.sdk.inventory.InventoryEntryDraft
-
- getRestockableInDays() - Method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
- getRestockableInDays() - Method in interface io.sphere.sdk.products.ProductVariantAvailability
-
- getResult() - Method in class io.sphere.sdk.client.metrics.ObservedDeserializationDuration
-
- getResult() - Method in interface io.sphere.sdk.orderedits.OrderEdit
-
- getResult() - Method in class io.sphere.sdk.orders.messages.OrderEditAppliedMessage
-
- getResult() - Method in class io.sphere.sdk.shippingmethods.errors.EditPreviewFailedError
-
- getResults() - Method in interface io.sphere.sdk.queries.PagedQueryResult
-
List of results.
- getResults() - Method in interface io.sphere.sdk.queries.PagedResult
-
List of results.
- getResults() - Method in class io.sphere.sdk.queries.PagedResultBase
-
List of results.
- getResults() - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getReturnDate() - Method in class io.sphere.sdk.orders.commands.updateactions.AddReturnInfo
-
- getReturnDate() - Method in interface io.sphere.sdk.orders.ReturnInfo
-
- getReturnDate() - Method in interface io.sphere.sdk.orders.ReturnInfoDraft
-
- getReturnDate() - Method in class io.sphere.sdk.orders.ReturnInfoDraftBuilder
-
- getReturnDate() - Method in class io.sphere.sdk.orders.ReturnInfoDraftDsl
-
- getReturnInfo() - Method in class io.sphere.sdk.orders.messages.ReturnInfoAddedMessage
-
- getReturnInfo() - Method in class io.sphere.sdk.orders.messages.ReturnInfoSetMessage
-
- getReturnInfo() - Method in interface io.sphere.sdk.orders.Order
-
- getReturnItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomField
-
- getReturnItemId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomType
-
- getReturnItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomField
-
- getReturnItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomType
-
- getReturnItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetReturnPaymentState
-
- getReturnItemId() - Method in class io.sphere.sdk.orders.commands.updateactions.SetReturnShipmentState
-
- getReturnItemId() - Method in class io.sphere.sdk.orders.messages.OrderReturnShipmentStateChangedMessage
-
- getReturnShipmentState() - Method in class io.sphere.sdk.orders.messages.OrderReturnShipmentStateChangedMessage
-
- getReturnTrackingId() - Method in class io.sphere.sdk.orders.commands.updateactions.AddReturnInfo
-
- getReturnTrackingId() - Method in interface io.sphere.sdk.orders.ReturnInfo
-
- getReturnTrackingId() - Method in interface io.sphere.sdk.orders.ReturnInfoDraft
-
- getReturnTrackingId() - Method in class io.sphere.sdk.orders.ReturnInfoDraftBuilder
-
- getReturnTrackingId() - Method in class io.sphere.sdk.orders.ReturnInfoDraftDsl
-
- getReview() - Method in class io.sphere.sdk.reviews.messages.ReviewCreatedMessage
-
Gets the review object at creation time.
- getReviewRatingStatistics() - Method in interface io.sphere.sdk.channels.Channel
-
The
Review
ratings of this channel.
- getReviewRatingStatistics() - Method in interface io.sphere.sdk.products.Product
-
- getReviewRatingStatistics() - Method in interface io.sphere.sdk.products.ProductLike
-
- getReviewRatingStatistics() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getRoles() - Method in interface io.sphere.sdk.channels.Channel
-
The roles of this channel.
- getRoles() - Method in interface io.sphere.sdk.channels.ChannelDraft
-
- getRoles() - Method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
- getRoles() - Method in class io.sphere.sdk.channels.commands.updateactions.AddRoles
-
- getRoles() - Method in class io.sphere.sdk.channels.commands.updateactions.RemoveRoles
-
- getRoles() - Method in class io.sphere.sdk.channels.commands.updateactions.SetRoles
-
- getRoles() - Method in class io.sphere.sdk.states.commands.updateactions.AddRoles
-
- getRoles() - Method in class io.sphere.sdk.states.commands.updateactions.RemoveRoles
-
- getRoles() - Method in class io.sphere.sdk.states.commands.updateactions.SetRoles
-
- getRoles() - Method in interface io.sphere.sdk.states.State
-
- getRoles() - Method in interface io.sphere.sdk.states.StateDraft
-
- getRootAncestor(Identifiable<Category>) - Method in interface io.sphere.sdk.categories.CategoryTree
-
For a given category searches the ancestor that is in root level.
- getRoots() - Method in interface io.sphere.sdk.categories.CategoryTree
-
Root categories (the ones that have no parent).
- getSalutation() - Method in class io.sphere.sdk.customers.commands.updateactions.SetSalutation
-
- getSalutation() - Method in interface io.sphere.sdk.customers.Customer
-
Customer’s salutation
- getSalutation() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getSalutation() - Method in class io.sphere.sdk.models.Address
-
- getScope() - Method in interface io.sphere.sdk.apiclient.ApiClient
-
- getScope() - Method in interface io.sphere.sdk.apiclient.ApiClientDraft
-
- getScope() - Method in class io.sphere.sdk.apiclient.ApiClientDraftDsl
-
- getScope() - Method in class io.sphere.sdk.client.SphereProjectScope
-
- getScope() - Method in class io.sphere.sdk.products.commands.updateactions.Publish
-
- getScope() - Method in class io.sphere.sdk.products.messages.ProductPublishedMessage
-
- getScopedPrice() - Method in interface io.sphere.sdk.products.ProductVariant
-
Optional price from the price scoped filtering in the search endpoint.
- getScopes() - Method in interface io.sphere.sdk.client.SphereAuthConfig
-
Gets the scopes which are permitted.
- getScopes() - Method in class io.sphere.sdk.client.SphereClientConfig
-
Gets the scopes which are permitted.
- getScore() - Method in interface io.sphere.sdk.carts.ScoreShippingRateInput
-
- getScore() - Method in interface io.sphere.sdk.carts.ScoreShippingRateInputDraft
-
- getScore() - Method in class io.sphere.sdk.carts.ScoreShippingRateInputDraftBuilder
-
- getScore() - Method in class io.sphere.sdk.carts.ScoreShippingRateInputDraftDsl
-
- getScore() - Method in interface io.sphere.sdk.shippingmethods.CartScore
-
- getSearchIndexing() - Method in interface io.sphere.sdk.projects.Project
-
- getSearchKeywords() - Method in class io.sphere.sdk.products.commands.updateactions.SetSearchKeywords
-
- getSearchKeywords() - Method in interface io.sphere.sdk.products.ProductData
-
- getSearchKeywords() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getSearchKeywords() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getSearchKeywords() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getSearchModel() - Method in interface io.sphere.sdk.search.model.FacetedSearchSearchModel
-
The search model for the faceted search.
- getSearchModel() - Method in interface io.sphere.sdk.search.model.FacetSearchModel
-
The search model for the facet.
- getSearchModel() - Method in interface io.sphere.sdk.search.model.FilterSearchModel
-
The search model for the filter.
- getSearchModel() - Method in interface io.sphere.sdk.search.model.SortSearchModel
-
The search model for the facet.
- getSecret() - Method in interface io.sphere.sdk.apiclient.ApiClient
-
- getSecuredBody() - Method in class io.sphere.sdk.http.StringHttpRequestBody
-
internal method
- getSequenceNumber() - Method in class io.sphere.sdk.messages.GenericMessageImpl
-
- getSequenceNumber() - Method in interface io.sphere.sdk.messages.Message
-
- getService(Class<T>) - Static method in class javax.money.spi.Bootstrap
-
- getServices(Class<T>) - Static method in class javax.money.spi.Bootstrap
-
- getServices(Class<T>) - Method in class javax.money.spi.OSGiPriorityAwareServiceProvider
-
Loads and registers services.
- getShipmentState() - Method in class io.sphere.sdk.orders.commands.updateactions.ChangeShipmentState
-
- getShipmentState() - Method in class io.sphere.sdk.orders.commands.updateactions.SetReturnShipmentState
-
- getShipmentState() - Method in interface io.sphere.sdk.orders.CustomLineItemReturnItemDraft
-
- getShipmentState() - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftBuilder
-
- getShipmentState() - Method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftDsl
-
- getShipmentState() - Method in interface io.sphere.sdk.orders.LineItemReturnItemDraft
-
- getShipmentState() - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftBuilder
-
- getShipmentState() - Method in class io.sphere.sdk.orders.LineItemReturnItemDraftDsl
-
- getShipmentState() - Method in class io.sphere.sdk.orders.messages.OrderShipmentStateChangedMessage
-
- getShipmentState() - Method in interface io.sphere.sdk.orders.Order
-
Shipment state of this order.
- getShipmentState() - Method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- getShipmentState() - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
- getShipmentState() - Method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
- getShipmentState() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getShipmentState() - Method in interface io.sphere.sdk.orders.ReturnItem
-
- getShipmentState() - Method in interface io.sphere.sdk.orders.ReturnItemDraft
-
- getShippingAddress() - Method in interface io.sphere.sdk.carts.Cart
-
- getShippingAddress() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getShippingAddress() - Method in interface io.sphere.sdk.carts.CartLike
-
Address to ship the goods.
- getShippingAddress() - Method in interface io.sphere.sdk.orders.Order
-
The shipping address.
- getShippingAddress() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getShippingAddresses() - Method in interface io.sphere.sdk.customers.Customer
-
- getShippingAddresses() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getShippingAddressIds() - Method in interface io.sphere.sdk.customers.Customer
-
- getShippingDetails() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getShippingDetails() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemShippingDetails
-
- getShippingDetails() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemShippingDetails
-
- getShippingDetails() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
Container for the sub-quantity of the line item quantity for the specific address when multiple shipping addresses are required
- getShippingDetails() - Method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
Container for the sub-quantity of the line item quantity for the specific address when multiple shipping addresses are required.
- getShippingDetails() - Method in interface io.sphere.sdk.carts.LineItem
-
Container for the sub-quantity of the line item quantity for the specific
address when multiple shipping addresses are required.
- getShippingDetails() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
Container for the sub-quantity of the line item quantity for the specific address
when multiple shipping addresses are required.
- getShippingDetails() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getShippingDetails() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemShippingDetails
-
- getShippingDetails() - Method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemShippingDetails
-
- getShippingDetails() - Method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemShippingDetails
-
- getShippingDetails() - Method in interface io.sphere.sdk.orders.CustomLineItemImportDraft
-
Container for the sub-quantity of the line item quantity for the specific address when multiple shipping addresses are required
- getShippingDetails() - Method in interface io.sphere.sdk.orders.LineItemImportDraft
-
- getShippingDetailsToRemove() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- getShippingInfo() - Method in interface io.sphere.sdk.carts.Cart
-
- getShippingInfo() - Method in interface io.sphere.sdk.carts.CartLike
-
Information about shipping set by the backend once the shipping method is set.
- getShippingInfo() - Method in class io.sphere.sdk.orders.messages.OrderShippingInfoSetMessage
-
- getShippingInfo() - Method in interface io.sphere.sdk.orders.Order
-
- getShippingInfo() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getShippingMethod() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getShippingMethod() - Method in interface io.sphere.sdk.carts.CartShippingInfo
-
- getShippingMethod() - Method in class io.sphere.sdk.carts.commands.updateactions.SetShippingMethod
-
- getShippingMethod() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndShippingMethod
-
- getShippingMethod() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingMethod
-
- getShippingMethod() - Method in interface io.sphere.sdk.orders.OrderShippingInfo
-
- getShippingMethod() - Method in interface io.sphere.sdk.orders.ShippingInfoImportDraft
-
- getShippingMethod() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
- getShippingMethod() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
- getShippingMethodName() - Method in interface io.sphere.sdk.carts.CartShippingInfo
-
- getShippingMethodName() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomShippingMethod
-
- getShippingMethodName() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomShippingMethod
-
- getShippingMethodName() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndCustomShippingMethod
-
- getShippingMethodName() - Method in interface io.sphere.sdk.orders.OrderShippingInfo
-
- getShippingMethodName() - Method in interface io.sphere.sdk.orders.ShippingInfoImportDraft
-
- getShippingMethodName() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
- getShippingMethodName() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
- getShippingMethodState() - Method in interface io.sphere.sdk.carts.CartShippingInfo
-
- getShippingMethodState() - Method in interface io.sphere.sdk.orders.ShippingInfoImportDraft
-
- getShippingMethodState() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
- getShippingMethodState() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
- getShippingRate() - Method in interface io.sphere.sdk.carts.CartShippingInfo
-
- getShippingRate() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomShippingMethod
-
- getShippingRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomShippingMethod
-
- getShippingRate() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndCustomShippingMethod
-
- getShippingRate() - Method in interface io.sphere.sdk.orders.OrderShippingInfo
-
- getShippingRate() - Method in interface io.sphere.sdk.orders.ShippingInfoImportDraft
-
- getShippingRate() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
- getShippingRate() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
- getShippingRate() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.AddShippingRate
-
- getShippingRate() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.RemoveShippingRate
-
- getShippingRateInput() - Method in interface io.sphere.sdk.carts.Cart
-
The shippingRateInput is used as an input to select a shipping rate price tier
- getShippingRateInput() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getShippingRateInput() - Method in interface io.sphere.sdk.carts.CartLike
-
The shippingRateInput is used as an input to select a shipping rate price tier
- getShippingRateInput() - Method in class io.sphere.sdk.carts.commands.updateactions.SetShippingRateInput
-
- getShippingRateInput() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingRateInput
-
- getShippingRateInput() - Method in interface io.sphere.sdk.orders.Order
-
The shippingRateInput is used as an input to select a shipping rate price tier
- getShippingRateInputType() - Method in interface io.sphere.sdk.projects.Project
-
The shippingRateInput is used as an input to select a shipping rate price tier at the project level
- getShippingRateInputTypeDraft() - Method in class io.sphere.sdk.projects.commands.updateactions.SetShippingRateInputType
-
- getShippingRates() - Method in interface io.sphere.sdk.shippingmethods.ZoneRate
-
- getShippingRates() - Method in interface io.sphere.sdk.shippingmethods.ZoneRateDraft
-
- getShippingRates() - Method in class io.sphere.sdk.shippingmethods.ZoneRateDraftBuilder
-
- getShippingRates() - Method in class io.sphere.sdk.shippingmethods.ZoneRateDraftDsl
-
- getShippingRatesForZone(Referenceable<Zone>) - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- getShoppingList() - Method in class io.sphere.sdk.carts.commands.updateactions.AddShoppingList
-
- getShoppingList() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddShoppingList
-
- getShoppingLists() - Method in interface io.sphere.sdk.projects.Project
-
- getShoppingListsConfiguration() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeShoppingListsConfiguration
-
- getSimpleName(Element) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getSimpleName(TypeMirror) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- getSku() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getSku() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getSku() - Method in interface io.sphere.sdk.inventory.InventoryEntry
-
- getSku() - Method in interface io.sphere.sdk.inventory.InventoryEntryDraft
-
- getSku() - Method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
- getSku() - Method in class io.sphere.sdk.inventory.messages.InventoryEntryCreatedMessage
-
- getSku() - Method in class io.sphere.sdk.inventory.messages.InventoryEntryDeletedMessage
-
- getSku() - Method in interface io.sphere.sdk.messages.UserProvidedIdentifiers
-
- getSku() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getSku() - Method in interface io.sphere.sdk.orders.ProductVariantImportDraft
-
- getSku() - Method in interface io.sphere.sdk.products.BySkuVariantIdentifier
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.AddAsset
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.AddExternalImage
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.AddPrice
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetOrder
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeMasterVariant
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.LegacySetSku
-
Deprecated.
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.MoveImageToPosition
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.RemoveVariant
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetKey
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.SetPrices
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.SetProductVariantKey
-
- getSku() - Method in class io.sphere.sdk.products.commands.updateactions.SetSku
-
- getSku() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountsSetMessage
-
- getSku() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountUpdate
-
- getSku() - Method in class io.sphere.sdk.products.messages.ProductPriceExternalDiscountSetMessage
-
- getSku() - Method in interface io.sphere.sdk.products.ProductVariant
-
- getSku() - Method in interface io.sphere.sdk.products.ProductVariantDraft
-
- getSku() - Method in class io.sphere.sdk.products.ProductVariantDraftDsl
-
- getSku() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddLineItem
-
- getSku() - Method in interface io.sphere.sdk.shoppinglists.LineItemDraft
-
- getSku() - Method in class io.sphere.sdk.shoppinglists.LineItemDraftDsl
-
- getSkus() - Method in class io.sphere.sdk.orders.errors.OutOfStockError
-
- getSlug() - Method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- getSlug() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
- getSlug() - Method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
- getSlug() - Method in interface io.sphere.sdk.categories.Category
-
Human-readable identifier usually used as deep-link URL part.
- getSlug() - Method in interface io.sphere.sdk.categories.CategoryDraft
-
- getSlug() - Method in class io.sphere.sdk.categories.CategoryDraftDsl
-
- getSlug() - Method in class io.sphere.sdk.categories.commands.updateactions.ChangeSlug
-
- getSlug() - Method in class io.sphere.sdk.categories.messages.CategorySlugChangedMessage
-
Gets the new Slug
- getSlug() - Method in interface io.sphere.sdk.messages.UserProvidedIdentifiers
-
- getSlug() - Method in interface io.sphere.sdk.models.WithLocalizedSlug
-
- getSlug() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddCustomLineItem
-
- getSlug() - Method in interface io.sphere.sdk.orders.CustomLineItemImportDraft
-
- getSlug() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeSlug
-
- getSlug() - Method in class io.sphere.sdk.products.messages.ProductSlugChangedMessage
-
- getSlug() - Method in interface io.sphere.sdk.products.ProductData
-
- getSlug() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getSlug() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getSlug() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getSlug() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetSlug
-
- getSlug() - Method in interface io.sphere.sdk.shoppinglists.ShoppingList
-
- getSlug() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getSlug() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getSortOrder() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
Determinates the order of multiple cart discounts.
- getSortOrder() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- getSortOrder() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeSortOrder
-
- getSortOrder() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.ChangeSortOrder
-
- getSortOrder() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscount
-
- getSortOrder() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- getSortOrder() - Method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
- getSources() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetSources
-
- getSources() - Method in interface io.sphere.sdk.models.Asset
-
- getSources() - Method in interface io.sphere.sdk.models.AssetDraft
-
- getSources() - Method in class io.sphere.sdk.models.AssetDraftDsl
-
- getSources() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- getSphereClient() - Method in class io.sphere.sdk.sequencegenerators.CustomObjectBigIntegerNumberGeneratorConfig
-
- getSphereRequest() - Method in exception io.sphere.sdk.models.SphereException
-
- getStackingMode() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
Specify whether the application of this discount causes the following discounts to be ignored.
- getStackingMode() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
Specify whether the application of this discount causes the following discounts to be ignored.
- getStackingMode() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeStackingMode
-
- getStaged() - Method in class io.sphere.sdk.productdiscounts.queries.MatchingProductDiscountGet
-
- getStaged() - Method in class io.sphere.sdk.products.commands.updateactions.AddAsset
-
- getStaged() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- getStaged() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- getStaged() - Method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomField
-
- getStaged() - Method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- getStaged() - Method in class io.sphere.sdk.products.messages.ProductAddedToCategoryMessage
-
- getStaged() - Method in class io.sphere.sdk.products.messages.ProductImageAddedMessage
-
true
if it was applied only to staged.
- getStaged() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountsSetMessage
-
- getStaged() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountUpdate
-
- getStaged() - Method in class io.sphere.sdk.products.messages.ProductPriceExternalDiscountSetMessage
-
- getStaged() - Method in class io.sphere.sdk.products.messages.ProductRemovedFromCategoryMessage
-
- getStaged() - Method in interface io.sphere.sdk.products.ProductCatalogData
-
- getStagedAction() - Method in class io.sphere.sdk.orderedits.commands.updateactions.AddStagedAction
-
- getStagedActions() - Method in class io.sphere.sdk.orderedits.commands.updateactions.SetStagedActions
-
- getStagedActions() - Method in interface io.sphere.sdk.orderedits.OrderEdit
-
- getStagedActions() - Method in interface io.sphere.sdk.orderedits.OrderEditDraft
-
- getStagedActions() - Method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
- getStagedActions() - Method in class io.sphere.sdk.orderedits.OrderEditDraftDsl
-
- getStartTimestamp() - Method in interface io.sphere.sdk.retry.RetryContext
-
The timestamp when the first error occurred.
- getState() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
- getState() - Method in interface io.sphere.sdk.carts.ItemState
-
- getState() - Method in interface io.sphere.sdk.carts.LineItem
-
- getState() - Method in interface io.sphere.sdk.carts.LineItemLike
-
- getState() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeInfo
-
- getState() - Method in class io.sphere.sdk.models.Address
-
- getState() - Method in class io.sphere.sdk.orders.commands.updateactions.ImportCustomLineItemState
-
- getState() - Method in class io.sphere.sdk.orders.commands.updateactions.ImportLineItemState
-
- getState() - Method in interface io.sphere.sdk.orders.CustomLineItemImportDraft
-
- getState() - Method in class io.sphere.sdk.orders.errors.MissingTaxRateForCountryError
-
- getState() - Method in interface io.sphere.sdk.orders.LineItemImportDraft
-
- getState() - Method in class io.sphere.sdk.orders.messages.OrderDiscountCodeStateSetMessage
-
- getState() - Method in class io.sphere.sdk.orders.messages.OrderStateTransitionMessage
-
- getState() - Method in interface io.sphere.sdk.orders.Order
-
Returns this state of this Order.
- getState() - Method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- getState() - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
- getState() - Method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
- getState() - Method in class io.sphere.sdk.payments.commands.updateactions.ChangeTransactionState
-
- getState() - Method in class io.sphere.sdk.payments.commands.updateactions.TransitionState
-
- getState() - Method in class io.sphere.sdk.payments.messages.PaymentStatusStateTransitionMessage
-
- getState() - Method in class io.sphere.sdk.payments.messages.PaymentTransactionStateChangedMessage
-
- getState() - Method in interface io.sphere.sdk.payments.PaymentStatus
-
- getState() - Method in class io.sphere.sdk.payments.PaymentStatusBuilder
-
- getState() - Method in interface io.sphere.sdk.payments.Transaction
-
- getState() - Method in interface io.sphere.sdk.payments.TransactionDraft
-
The state of this transaction.
- getState() - Method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
- getState() - Method in class io.sphere.sdk.products.messages.ProductStateTransitionMessage
-
- getState() - Method in interface io.sphere.sdk.products.Product
-
Returns this state of this Product.
- getState() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getState() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getState() - Method in interface io.sphere.sdk.products.ProductLike
-
- getState() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getState() - Method in interface io.sphere.sdk.reviews.Review
-
Gets the state of this review or null.
- getState() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
- getState() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getState() - Method in class io.sphere.sdk.states.relatedupdateactions.TransitionStateBase
-
- getState() - Method in interface io.sphere.sdk.taxcategories.ExternalTaxRateDraft
-
- getState() - Method in interface io.sphere.sdk.taxcategories.TaxRate
-
- getState() - Method in interface io.sphere.sdk.taxcategories.TaxRateDraft
-
- getState() - Method in interface io.sphere.sdk.zones.Location
-
- getStatus() - Method in interface io.sphere.sdk.projects.SearchIndexingConfigurationValues
-
- getStatus() - Method in interface io.sphere.sdk.subscriptions.Subscription
-
- getStatusCode() - Method in exception io.sphere.sdk.client.ErrorResponseException
-
- getStatusCode() - Method in exception io.sphere.sdk.client.SphereServiceException
-
- getStatusCode() - Method in interface io.sphere.sdk.http.HttpResponse
-
- getStatusCode() - Method in interface io.sphere.sdk.models.errors.ErrorResponse
-
- getStore() - Method in interface io.sphere.sdk.carts.Cart
-
- getStore() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getStore() - Method in class io.sphere.sdk.customers.commands.updateactions.AddStore
-
- getStore() - Method in class io.sphere.sdk.customers.commands.updateactions.RemoveStore
-
- getStore() - Method in class io.sphere.sdk.orders.commands.updateactions.SetStore
-
- getStore() - Method in class io.sphere.sdk.orders.messages.OrderStoreSetMessage
-
- getStore() - Method in interface io.sphere.sdk.orders.Order
-
- getStore() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getStore() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetStore
-
- getStore() - Method in interface io.sphere.sdk.shoppinglists.ShoppingList
-
- getStore() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getStore() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getStoreProjection() - Method in interface io.sphere.sdk.selection.StoreSelection
-
- getStoreProjection() - Method in class io.sphere.sdk.selection.StoreSelectionBuilder
-
- getStoreProjection() - Method in class io.sphere.sdk.selection.StoreSelectionDsl
-
- getStores() - Method in class io.sphere.sdk.customers.commands.updateactions.SetStores
-
- getStores() - Method in interface io.sphere.sdk.customers.Customer
-
- getStores() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getStoreSelection() - Method in interface io.sphere.sdk.selection.StoreSelectionRequestDsl
-
- getStreetName() - Method in class io.sphere.sdk.models.Address
-
- getStreetNumber() - Method in class io.sphere.sdk.models.Address
-
- getString() - Method in class io.sphere.sdk.http.StringHttpRequestBody
-
- getSubject() - Method in class io.sphere.sdk.orders.errors.InvalidItemShippingDetailsError
-
- getSubject() - Method in class io.sphere.sdk.shippingmethods.errors.InvalidItemShippingDetailsError
-
- getSubRates() - Method in interface io.sphere.sdk.taxcategories.ExternalTaxRateDraft
-
For countries (e.g.
- getSubRates() - Method in interface io.sphere.sdk.taxcategories.TaxRate
-
- getSubRates() - Method in interface io.sphere.sdk.taxcategories.TaxRateDraft
-
- getSubtree(Collection<? extends Identifiable<Category>>) - Method in interface io.sphere.sdk.categories.CategoryTree
-
Gets the subtree of the given parent categories.
- getSubtreeRoots() - Method in interface io.sphere.sdk.categories.CategoryTree
-
For a subtree the categories which are at the top level.
- getSuccessResult() - Method in class io.sphere.sdk.client.metrics.ObservedTotalDuration
-
- getSuggestionsForLocale(Locale) - Method in interface io.sphere.sdk.products.SuggestionResult
-
- getSuggestionsMap() - Method in interface io.sphere.sdk.products.SuggestionResult
-
- getSuggestTokenizer() - Method in interface io.sphere.sdk.search.SearchKeyword
-
- getSum() - Method in class io.sphere.sdk.search.model.RangeStats
-
Sum of the values contained within the range.
- getSupplyChannel() - Method in class io.sphere.sdk.cartdiscounts.GiftLineItemCartDiscountValue
-
- getSupplyChannel() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getSupplyChannel() - Method in class io.sphere.sdk.carts.commands.updateactions.AddShoppingList
-
- getSupplyChannel() - Method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemSupplyChannel
-
- getSupplyChannel() - Method in interface io.sphere.sdk.carts.LineItem
-
- getSupplyChannel() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getSupplyChannel() - Method in class io.sphere.sdk.inventory.commands.updateactions.SetSupplyChannel
-
- getSupplyChannel() - Method in interface io.sphere.sdk.inventory.InventoryEntry
-
Optional connection to particular supplier.
- getSupplyChannel() - Method in interface io.sphere.sdk.inventory.InventoryEntryDraft
-
- getSupplyChannel() - Method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
- getSupplyChannel() - Method in class io.sphere.sdk.inventory.messages.InventoryEntryCreatedMessage
-
- getSupplyChannel() - Method in class io.sphere.sdk.inventory.messages.InventoryEntryDeletedMessage
-
- getSupplyChannel() - Method in class io.sphere.sdk.inventory.messages.InventoryEntryQuantitySetMessage
-
- getSupplyChannel() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getSupplyChannel() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddShoppingList
-
- getSupplyChannel() - Method in interface io.sphere.sdk.orders.LineItemImportDraft
-
- getSupplyChannel() - Method in class io.sphere.sdk.stores.commands.updateactions.AddSupplyChannel
-
- getSupplyChannel() - Method in class io.sphere.sdk.stores.commands.updateactions.RemoveSupplyChannel
-
- getSupplyChannels() - Method in class io.sphere.sdk.stores.commands.updateactions.SetSupplyChannels
-
- getSupplyChannels() - Method in class io.sphere.sdk.stores.messages.StoreCreatedMessage
-
- getSupplyChannels() - Method in interface io.sphere.sdk.stores.Store
-
Optional connection to particular supplier.
- getSupplyChannels() - Method in interface io.sphere.sdk.stores.StoreDraft
-
- getSupplyChannels() - Method in class io.sphere.sdk.stores.StoreDraftBuilder
-
- getSupplyChannels() - Method in class io.sphere.sdk.stores.StoreDraftDsl
-
- getSyncedAt() - Method in class io.sphere.sdk.orders.commands.updateactions.UpdateSyncInfo
-
- getSyncedAt() - Method in interface io.sphere.sdk.orders.SyncInfo
-
- getSyncInfo() - Method in interface io.sphere.sdk.orders.Order
-
Sync info of this order.
- getTags() - Method in class io.sphere.sdk.categories.commands.updateactions.SetAssetTags
-
- getTags() - Method in interface io.sphere.sdk.models.Asset
-
Gets the tags belonging to this asset or an empty set.
- getTags() - Method in interface io.sphere.sdk.models.AssetDraft
-
- getTags() - Method in class io.sphere.sdk.models.AssetDraftDsl
-
- getTags() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- getTarget() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
Defines what part of the cart will be discounted.
- getTarget() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- getTarget() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeTarget
-
- getTarget() - Method in class io.sphere.sdk.reviews.commands.updateactions.SetTarget
-
- getTarget() - Method in class io.sphere.sdk.reviews.messages.ReviewRatingSetMessage
-
- getTarget() - Method in class io.sphere.sdk.reviews.messages.ReviewStateTransitionMessage
-
- getTarget() - Method in interface io.sphere.sdk.reviews.Review
-
Identifies the target of the review.
- getTarget() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
Target of this review.
- getTarget() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getTargets() - Method in interface io.sphere.sdk.carts.ItemShippingDetails
-
- getTargets() - Method in interface io.sphere.sdk.carts.ItemShippingDetailsDraft
-
- getTargets() - Method in class io.sphere.sdk.carts.ItemShippingDetailsDraftBuilder
-
- getTargets() - Method in class io.sphere.sdk.carts.ItemShippingDetailsDraftDsl
-
- getTargetsDelta() - Method in class io.sphere.sdk.carts.commands.updateactions.ApplyDeltaToCustomLineItemShippingDetailsTargets
-
- getTargetsDelta() - Method in class io.sphere.sdk.carts.commands.updateactions.ApplyDeltaToLineItemShippingDetailsTargets
-
- getTargetsMap() - Method in interface io.sphere.sdk.carts.ItemShippingDetails
-
Convenience method to extract map address keys to their target without further processing
- getTaxCalculationMode() - Method in interface io.sphere.sdk.carts.Cart
-
- getTaxCalculationMode() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getTaxCalculationMode() - Method in interface io.sphere.sdk.carts.CartLike
-
Tax calculation mode of this cart.
- getTaxCalculationMode() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeTaxCalculationMode
-
- getTaxCalculationMode() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeTaxCalculationMode
-
- getTaxCalculationMode() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getTaxCategory() - Method in interface io.sphere.sdk.carts.CartShippingInfo
-
- getTaxCategory() - Method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- getTaxCategory() - Method in class io.sphere.sdk.carts.commands.updateactions.SetCustomShippingMethod
-
- getTaxCategory() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
- getTaxCategory() - Method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
Gets the tax category for this custom line item.
- getTaxCategory() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddCustomLineItem
-
- getTaxCategory() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomShippingMethod
-
- getTaxCategory() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndCustomShippingMethod
-
- getTaxCategory() - Method in interface io.sphere.sdk.orders.CustomLineItemImportDraft
-
- getTaxCategory() - Method in interface io.sphere.sdk.orders.OrderShippingInfo
-
- getTaxCategory() - Method in interface io.sphere.sdk.orders.ShippingInfoImportDraft
-
- getTaxCategory() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
- getTaxCategory() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
- getTaxCategory() - Method in class io.sphere.sdk.products.commands.updateactions.SetTaxCategory
-
- getTaxCategory() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getTaxCategory() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getTaxCategory() - Method in interface io.sphere.sdk.products.ProductLike
-
- getTaxCategory() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.ChangeTaxCategory
-
- getTaxCategory() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- getTaxCategory() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- getTaxCategory() - Method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
- getTaxCategoryId() - Method in class io.sphere.sdk.orders.errors.MissingTaxRateForCountryError
-
- getTaxedPrice() - Method in interface io.sphere.sdk.carts.Cart
-
- getTaxedPrice() - Method in interface io.sphere.sdk.carts.CartLike
-
The taxed price.
- getTaxedPrice() - Method in interface io.sphere.sdk.carts.CartShippingInfo
-
- getTaxedPrice() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
- getTaxedPrice() - Method in interface io.sphere.sdk.carts.LineItem
-
- getTaxedPrice() - Method in interface io.sphere.sdk.carts.LineItemLike
-
- getTaxedPrice() - Method in interface io.sphere.sdk.orderedits.OrderExcerpt
-
- getTaxedPrice() - Method in interface io.sphere.sdk.orders.Order
-
- getTaxedPrice() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getTaxMode() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getTaxMode() - Method in interface io.sphere.sdk.carts.CartLike
-
Tax mode of this cart.
- getTaxMode() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeTaxMode
-
- getTaxMode() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeTaxMode
-
- getTaxPortions() - Method in interface io.sphere.sdk.carts.TaxedPrice
-
- getTaxRate() - Method in interface io.sphere.sdk.carts.CartShippingInfo
-
- getTaxRate() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
- getTaxRate() - Method in interface io.sphere.sdk.carts.ExternalTaxAmountDraft
-
- getTaxRate() - Method in class io.sphere.sdk.carts.ExternalTaxAmountDraftBuilder
-
- getTaxRate() - Method in class io.sphere.sdk.carts.ExternalTaxAmountDraftDsl
-
- getTaxRate() - Method in interface io.sphere.sdk.carts.LineItem
-
- getTaxRate() - Method in interface io.sphere.sdk.orders.CustomLineItemImportDraft
-
- getTaxRate() - Method in interface io.sphere.sdk.orders.LineItemImportDraft
-
- getTaxRate() - Method in interface io.sphere.sdk.orders.OrderShippingInfo
-
- getTaxRate() - Method in interface io.sphere.sdk.orders.ShippingInfoImportDraft
-
- getTaxRate() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
- getTaxRate() - Method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
- getTaxRate() - Method in class io.sphere.sdk.taxcategories.commands.updateactions.AddTaxRate
-
- getTaxRate() - Method in class io.sphere.sdk.taxcategories.commands.updateactions.ReplaceTaxRate
-
- getTaxRateId() - Method in class io.sphere.sdk.taxcategories.commands.updateactions.RemoveTaxRate
-
- getTaxRateId() - Method in class io.sphere.sdk.taxcategories.commands.updateactions.ReplaceTaxRate
-
- getTaxRates() - Method in interface io.sphere.sdk.taxcategories.TaxCategory
-
Gets the tax rates.
- getTaxRates() - Method in interface io.sphere.sdk.taxcategories.TaxCategoryDraft
-
- getTaxRates() - Method in class io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder
-
- getTaxRates() - Method in class io.sphere.sdk.taxcategories.TaxCategoryDraftDsl
-
- getTaxRoundingMode() - Method in interface io.sphere.sdk.carts.CartDraft
-
- getTaxRoundingMode() - Method in interface io.sphere.sdk.carts.CartLike
-
When calculating taxes in taxedPrice
, the tax rounding mode is used for decimal values.
- getTaxRoundingMode() - Method in class io.sphere.sdk.carts.commands.updateactions.ChangeTaxRoundingMode
-
- getTaxRoundingMode() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeTaxRoundingMode
-
- getTaxRoundingMode() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getTerm() - Method in interface io.sphere.sdk.search.TermStats
-
- getTermFacetResult(String) - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getTerms() - Method in class io.sphere.sdk.search.TermFacetResult
-
List of the different terms and amount of associated resources.
- getText() - Method in interface io.sphere.sdk.products.Suggestion
-
- getText() - Method in class io.sphere.sdk.reviews.commands.updateactions.SetText
-
- getText() - Method in interface io.sphere.sdk.reviews.Review
-
Gets the text of this review or null.
- getText() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
- getText() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getText() - Method in interface io.sphere.sdk.search.SearchKeyword
-
- getTextLineItemId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeTextLineItemName
-
- getTextLineItemId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeTextLineItemQuantity
-
- getTextLineItemId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.RemoveTextLineItem
-
- getTextLineItemId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomField
-
- getTextLineItemId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomType
-
- getTextLineItemId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemDescription
-
- getTextLineItemOrder() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeTextLineItemsOrder
-
- getTextLineItems() - Method in interface io.sphere.sdk.shoppinglists.ShoppingList
-
- getTextLineItems() - Method in interface io.sphere.sdk.shoppinglists.ShoppingListDraft
-
- getTextLineItems() - Method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
- getThis() - Method in class io.sphere.sdk.apiclient.queries.ApiClientQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.cartdiscounts.queries.CartDiscountQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.carts.queries.CartInStoreQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.carts.queries.CartQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.categories.queries.CategoryQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.channels.queries.ChannelQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.customergroups.queries.CustomerGroupQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.customers.queries.CustomerInStoreQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.customers.queries.CustomerQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.customobjects.queries.CustomObjectQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.discountcodes.queries.DiscountCodeQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.extensions.queries.ExtensionQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.inventory.queries.InventoryEntryQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.messages.queries.MessageQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.orderedits.queries.OrderEditQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.orders.queries.OrderInStoreQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.orders.queries.OrderQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.payments.queries.PaymentQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.productdiscounts.queries.ProductDiscountQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.products.queries.ProductProjectionInStoreQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.products.queries.ProductProjectionQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.products.queries.ProductQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.products.search.ProductProjectionSearchBuilder
-
- getThis() - Method in class io.sphere.sdk.productselections.queries.ProductSelectionQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.producttypes.queries.ProductTypeQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.queries.ResourceMetaModelQueryDslBuilderImpl
-
- getThis() - Method in class io.sphere.sdk.reviews.queries.ReviewQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.search.ResourceMetaModelSearchDslBuilderImpl
-
- getThis() - Method in class io.sphere.sdk.shippingmethods.queries.ShippingMethodQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.shoppinglists.queries.ShoppingListInStoreQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.shoppinglists.queries.ShoppingListQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.states.queries.StateQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.stores.queries.StoreQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.subscriptions.queries.SubscriptionQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.taxcategories.queries.TaxCategoryQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.types.queries.TypeQueryBuilder
-
- getThis() - Method in class io.sphere.sdk.zones.queries.ZoneQueryBuilder
-
- getTiers() - Method in interface io.sphere.sdk.products.Price
-
- getTiers() - Method in interface io.sphere.sdk.products.PriceDraft
-
- getTiers() - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- getTiers() - Method in class io.sphere.sdk.products.PriceDraftDsl
-
- getTiers() - Method in interface io.sphere.sdk.shippingmethods.ShippingRate
-
A list of shipping rate price tiers.
- getTimeoutInMs() - Method in class io.sphere.sdk.extensions.commands.updateactions.SetTimeoutInMs
-
- getTimeoutInMs() - Method in interface io.sphere.sdk.extensions.Extension
-
- getTimeoutInMs() - Method in interface io.sphere.sdk.extensions.ExtensionDraft
-
- getTimeoutInMs() - Method in class io.sphere.sdk.extensions.ExtensionDraftBuilder
-
- getTimeoutInMs() - Method in class io.sphere.sdk.extensions.ExtensionDraftDsl
-
- getTimestamp() - Method in class io.sphere.sdk.payments.commands.updateactions.ChangeTransactionTimestamp
-
- getTimestamp() - Method in interface io.sphere.sdk.payments.Transaction
-
- getTimestamp() - Method in interface io.sphere.sdk.payments.TransactionDraft
-
- getTimestamp() - Method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
- GettingStarted - Class in io.sphere.sdk.meta
-
About the clients
- getTitle() - Method in class io.sphere.sdk.customers.commands.updateactions.ChangeName
-
- getTitle() - Method in class io.sphere.sdk.customers.commands.updateactions.SetTitle
-
- getTitle() - Method in interface io.sphere.sdk.customers.Customer
-
Title of the customer.
- getTitle() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getTitle() - Method in class io.sphere.sdk.customers.CustomerName
-
- getTitle() - Method in class io.sphere.sdk.models.Address
-
- getTitle() - Method in class io.sphere.sdk.reviews.commands.updateactions.SetTitle
-
- getTitle() - Method in interface io.sphere.sdk.reviews.Review
-
Gets the title of this review or null.
- getTitle() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
- getTitle() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getTokenValue() - Method in class io.sphere.sdk.customers.commands.CustomerInStorePasswordResetCommand
-
- getTokenValue() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreVerifyEmailCommand
-
- getTokenValue() - Method in class io.sphere.sdk.customers.commands.CustomerPasswordResetCommand
-
- getTokenValue() - Method in class io.sphere.sdk.customers.commands.CustomerVerifyEmailCommand
-
- getTopic() - Method in interface io.sphere.sdk.client.metrics.ObservedDuration
-
A String to describe the topic associated with the observed duration (e.g.
- getTopic() - Method in interface io.sphere.sdk.subscriptions.PubSubDestination
-
- getTopicArn() - Method in interface io.sphere.sdk.subscriptions.SnsDestination
-
The Amazon Resource Name (ARN) of the Simple Notification Service (SNS) topic name.
- getTotal() - Method in interface io.sphere.sdk.queries.PagedQueryResult
-
The total number of results matching the request.
- getTotal() - Method in interface io.sphere.sdk.queries.PagedResult
-
The total number of results matching the request.
- getTotal() - Method in class io.sphere.sdk.queries.PagedResultBase
-
The total number of results matching the request.
- getTotal() - Method in interface io.sphere.sdk.search.PagedSearchResult
-
- getTotal() - Method in class io.sphere.sdk.search.TermFacetResult
-
The number of resources matching some term in the facet.
- getTotalGross() - Method in interface io.sphere.sdk.carts.ExternalTaxAmountDraft
-
- getTotalGross() - Method in class io.sphere.sdk.carts.ExternalTaxAmountDraftBuilder
-
- getTotalGross() - Method in class io.sphere.sdk.carts.ExternalTaxAmountDraftDsl
-
- getTotalGross() - Method in interface io.sphere.sdk.carts.TaxedItemPrice
-
- getTotalGross() - Method in interface io.sphere.sdk.carts.TaxedPrice
-
- getTotalNet() - Method in interface io.sphere.sdk.carts.TaxedItemPrice
-
- getTotalNet() - Method in interface io.sphere.sdk.carts.TaxedPrice
-
- getTotalPages() - Method in interface io.sphere.sdk.queries.PagedResult
-
Calculates the total number of pages matching the request.
- getTotalPrice() - Method in interface io.sphere.sdk.carts.Cart
-
- getTotalPrice() - Method in interface io.sphere.sdk.carts.CartLike
-
- getTotalPrice() - Method in interface io.sphere.sdk.carts.CustomLineItem
-
- getTotalPrice() - Method in interface io.sphere.sdk.carts.ExternalLineItemTotalPrice
-
- getTotalPrice() - Method in interface io.sphere.sdk.carts.LineItem
-
- getTotalPrice() - Method in interface io.sphere.sdk.carts.LineItemLike
-
- getTotalPrice() - Method in interface io.sphere.sdk.orderedits.OrderExcerpt
-
- getTotalPrice() - Method in interface io.sphere.sdk.orders.Order
-
- getTotalPrice() - Method in interface io.sphere.sdk.orders.OrderImportDraft
-
- getTrackingData() - Method in class io.sphere.sdk.orders.commands.updateactions.AddParcelToDelivery
-
- getTrackingData() - Method in class io.sphere.sdk.orders.commands.updateactions.SetParcelTrackingData
-
- getTrackingData() - Method in class io.sphere.sdk.orders.messages.ParcelTrackingDataUpdatedMessage
-
- getTrackingData() - Method in interface io.sphere.sdk.orders.Parcel
-
- getTrackingData() - Method in interface io.sphere.sdk.orders.ParcelDraft
-
- getTrackingData() - Method in class io.sphere.sdk.orders.ParcelDraftBuilder
-
- getTrackingData() - Method in class io.sphere.sdk.orders.ParcelDraftDsl
-
- getTrackingId() - Method in interface io.sphere.sdk.orders.TrackingData
-
- getTransaction() - Method in class io.sphere.sdk.payments.commands.updateactions.AddTransaction
-
- getTransaction() - Method in class io.sphere.sdk.payments.messages.PaymentTransactionAddedMessage
-
- getTransactionId() - Method in class io.sphere.sdk.payments.commands.updateactions.ChangeTransactionInteractionId
-
- getTransactionId() - Method in class io.sphere.sdk.payments.commands.updateactions.ChangeTransactionState
-
- getTransactionId() - Method in class io.sphere.sdk.payments.commands.updateactions.ChangeTransactionTimestamp
-
- getTransactionId() - Method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomField
-
- getTransactionId() - Method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomType
-
- getTransactionId() - Method in class io.sphere.sdk.payments.messages.PaymentTransactionStateChangedMessage
-
- getTransactions() - Method in interface io.sphere.sdk.payments.Payment
-
- getTransactions() - Method in interface io.sphere.sdk.payments.PaymentDraft
-
- getTransactions() - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
- getTransactions() - Method in class io.sphere.sdk.payments.PaymentDraftDsl
-
- getTransitions() - Method in class io.sphere.sdk.states.commands.updateactions.SetTransitions
-
- getTransitions() - Method in interface io.sphere.sdk.states.State
-
- getTransitions() - Method in interface io.sphere.sdk.states.StateDraft
-
- getTranslation(Iterable<Locale>) - Method in class io.sphere.sdk.models.LocalizedString
-
Searches a translation which matches a locale in locales
and uses language fallbackes.
- getTrialUntil() - Method in interface io.sphere.sdk.projects.Project
-
- getTriggers() - Method in class io.sphere.sdk.extensions.commands.updateactions.ChangeTriggers
-
- getTriggers() - Method in interface io.sphere.sdk.extensions.Extension
-
- getTriggers() - Method in interface io.sphere.sdk.extensions.ExtensionDraft
-
- getTriggers() - Method in class io.sphere.sdk.extensions.ExtensionDraftBuilder
-
- getTriggers() - Method in class io.sphere.sdk.extensions.ExtensionDraftDsl
-
- getTtlMinutes() - Method in class io.sphere.sdk.customers.commands.CustomerCreateEmailTokenCommand
-
- getTtlMinutes() - Method in class io.sphere.sdk.customers.commands.CustomerCreatePasswordTokenCommand
-
- getTtlMinutes() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreCreateEmailTokenCommand
-
- getTtlMinutes() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreCreatePasswordTokenCommand
-
- getType() - Method in class io.sphere.sdk.annotations.processors.FieldModel
-
- getType() - Method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
- getType() - Method in class io.sphere.sdk.messages.GenericMessageImpl
-
- getType() - Method in interface io.sphere.sdk.messages.Message
-
- getType() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.OrderEditSetCustomTypeBase
-
- getType() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomType
-
- getType() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomType
-
- getType() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomType
-
- getType() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomType
-
- getType() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomType
-
- getType() - Method in interface io.sphere.sdk.orders.messages.OrderMessage
-
- getType() - Method in interface io.sphere.sdk.payments.Transaction
-
- getType() - Method in interface io.sphere.sdk.payments.TransactionDraft
-
- getType() - Method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
- getType() - Method in interface io.sphere.sdk.productselections.ProductSelection
-
Deprecated.
- getType() - Method in interface io.sphere.sdk.projects.ShippingRateInputType
-
- getType() - Method in interface io.sphere.sdk.shippingmethods.ShippingRatePriceTier
-
- getType() - Method in class io.sphere.sdk.states.commands.updateactions.ChangeType
-
- getType() - Method in interface io.sphere.sdk.states.State
-
- getType() - Method in interface io.sphere.sdk.states.StateDraft
-
- getType() - Method in interface io.sphere.sdk.subscriptions.Destination
-
- getType() - Method in interface io.sphere.sdk.types.CustomFields
-
- getType() - Method in interface io.sphere.sdk.types.CustomFieldsDraft
-
- getType() - Method in class io.sphere.sdk.types.customupdateactions.SetCustomTypeBase
-
- getType() - Method in interface io.sphere.sdk.types.FieldDefinition
-
- getTypeArgument(int) - Method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
- getTypeId() - Method in class io.sphere.sdk.models.errors.ReferencedResourceNotFoundError
-
- getTypeId() - Method in interface io.sphere.sdk.models.KeyReference
-
Type id of the object this reference represents, e.g.
- getTypeId() - Method in interface io.sphere.sdk.models.Reference
-
Type id of the object this reference represents, e.g.
- getTypeId() - Method in interface io.sphere.sdk.models.ResourceIdentifier
-
- getTypeReference() - Method in class io.sphere.sdk.products.attributes.NestedAttributeType
-
- getTypes() - Method in interface io.sphere.sdk.subscriptions.MessageSubscription
-
- getUniquenessValue() - Method in interface io.sphere.sdk.reviews.Review
-
- getUniquenessValue() - Method in interface io.sphere.sdk.reviews.ReviewDraft
-
- getUniquenessValue() - Method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
- getUntil() - Method in class io.sphere.sdk.payments.commands.updateactions.SetAuthorization
-
Deprecated.
- getUpdateActions() - Method in class io.sphere.sdk.commands.MetaModelUpdateCommandDslImpl
-
- getUpdateActions() - Method in interface io.sphere.sdk.commands.UpdateCommand
-
Gets the list of updates which should be applied to the object
- getUpdatedPrices() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountsSetMessage
-
- getUpdatedProductSelections() - Method in class io.sphere.sdk.stores.messages.StoreProductSelectionsChangedMessage
-
- getUpperEndpoint() - Method in class io.sphere.sdk.search.model.RangeStats
-
Upper endpoint of the range.
- getUpperEndpoint() - Method in class io.sphere.sdk.search.model.SimpleRangeStats
-
Upper endpoint of the range.
- getUri() - Method in interface io.sphere.sdk.models.AssetSource
-
- getUri() - Method in interface io.sphere.sdk.subscriptions.IronMqDestination
-
The webhook uri of your IronMQ.
- getUrl() - Method in interface io.sphere.sdk.extensions.HttpDestination
-
- getUrl() - Method in interface io.sphere.sdk.http.HttpRequest
-
- getUrl() - Method in interface io.sphere.sdk.products.Image
-
- getUrl() - Method in interface io.sphere.sdk.projects.ExternalOAuth
-
- getUserAgent() - Method in interface io.sphere.sdk.http.HttpClient
-
- getUserAgent() - Method in class io.sphere.sdk.http.HttpClientAdapterBase
-
- getValidFrom() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
Lower bound of the validity period.
- getValidFrom() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- getValidFrom() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetValidFrom
-
- getValidFrom() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetValidFromAndUntil
-
- getValidFrom() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.SetValidFrom
-
- getValidFrom() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.SetValidFromAndUntil
-
- getValidFrom() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
Start date for discount code validity
- getValidFrom() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getValidFrom() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetValidFrom
-
- getValidFrom() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetValidFromAndUntil
-
- getValidFrom() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscount
-
- getValidFrom() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- getValidFrom() - Method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
- getValidFrom() - Method in interface io.sphere.sdk.products.Price
-
- getValidFrom() - Method in interface io.sphere.sdk.products.PriceDraft
-
- getValidFrom() - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- getValidFrom() - Method in class io.sphere.sdk.products.PriceDraftDsl
-
- getValidFrom() - Method in interface io.sphere.sdk.products.PriceLike
-
- getValidFrom() - Method in interface io.sphere.sdk.products.ScopedPrice
-
- getValidUntil() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
Upper bound of the validity period.
- getValidUntil() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- getValidUntil() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetValidFromAndUntil
-
- getValidUntil() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetValidUntil
-
- getValidUntil() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.SetValidFromAndUntil
-
- getValidUntil() - Method in class io.sphere.sdk.discountcodes.commands.updateactions.SetValidUntil
-
- getValidUntil() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
End date for discount code validity
- getValidUntil() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- getValidUntil() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetValidFromAndUntil
-
- getValidUntil() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetValidUntil
-
- getValidUntil() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscount
-
- getValidUntil() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- getValidUntil() - Method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
- getValidUntil() - Method in interface io.sphere.sdk.products.Price
-
- getValidUntil() - Method in interface io.sphere.sdk.products.PriceDraft
-
- getValidUntil() - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- getValidUntil() - Method in class io.sphere.sdk.products.PriceDraftDsl
-
- getValidUntil() - Method in interface io.sphere.sdk.products.PriceLike
-
- getValidUntil() - Method in interface io.sphere.sdk.products.ScopedPrice
-
- getValue() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
The value of the discount (determines the reduced price).
- getValue() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- getValue() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeValue
-
- getValue() - Method in interface io.sphere.sdk.cartdiscounts.DiscountedLineItemPrice
-
- getValue() - Method in interface io.sphere.sdk.customers.CustomerToken
-
the token value
- getValue() - Method in interface io.sphere.sdk.customobjects.CustomObject
-
The value stored in the custom object.
- getValue() - Method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
- getValue() - Method in interface io.sphere.sdk.http.NameValuePair
-
- getValue() - Method in class io.sphere.sdk.models.LocalizedStringEntry
-
- getValue() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.OrderEditSetCustomFieldBase
-
- getValue() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomField
-
- getValue() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomField
-
- getValue() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomField
-
- getValue() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomField
-
- getValue() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomField
-
- getValue() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.ChangeValue
-
- getValue() - Method in interface io.sphere.sdk.productdiscounts.DiscountedPrice
-
- getValue() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscount
-
- getValue() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- getValue() - Method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
- getValue(AttributeAccess<T>) - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValue() - Method in interface io.sphere.sdk.products.attributes.AttributeDraft
-
- getValue() - Method in class io.sphere.sdk.products.attributes.AttributeExtraction
-
- getValue() - Method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- getValue() - Method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
- getValue() - Method in interface io.sphere.sdk.products.Price
-
- getValue() - Method in interface io.sphere.sdk.products.PriceDraft
-
- getValue() - Method in class io.sphere.sdk.products.PriceDraftBuilder
-
- getValue() - Method in class io.sphere.sdk.products.PriceDraftDsl
-
- getValue() - Method in interface io.sphere.sdk.products.PriceLike
-
- getValue() - Method in interface io.sphere.sdk.products.PriceTier
-
The currency of a tier price is always the same as the currency of the base
Price
.
- getValue() - Method in interface io.sphere.sdk.products.ScopedPrice
-
- getValue() - Method in class io.sphere.sdk.producttypes.commands.updateactions.AddEnumValue
-
- getValue() - Method in class io.sphere.sdk.producttypes.commands.updateactions.AddLocalizedEnumValue
-
- getValue() - Method in interface io.sphere.sdk.shippingmethods.CartClassification
-
- getValue() - Method in class io.sphere.sdk.types.commands.updateactions.AddEnumValue
-
- getValue() - Method in class io.sphere.sdk.types.commands.updateactions.AddLocalizedEnumValue
-
- getValue() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeEnumValueLabel
-
- getValue() - Method in class io.sphere.sdk.types.commands.updateactions.ChangeLocalizedEnumValueLabel
-
- getValue() - Method in class io.sphere.sdk.types.customupdateactions.SetCustomFieldBase
-
- getValueAsBoolean() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsBooleanSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsDateTime() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsDateTimeSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsDouble() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsDoubleSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsEnumValue() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsEnumValueSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsInteger() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsIntegerSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsJsonNode() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsLocalDate() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsLocalDateSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsLocalizedEnumValue() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsLocalizedEnumValueSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsLocalizedString() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsLocalizedStringSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsLocalTime() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsLocalTimeSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsLong() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsLongSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsMoney() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsMoneySet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsString() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValueAsStringSet() - Method in interface io.sphere.sdk.products.attributes.Attribute
-
- getValues() - Method in class io.sphere.sdk.products.attributes.EnumAttributeType
-
- getValues() - Method in class io.sphere.sdk.products.attributes.LocalizedEnumAttributeType
-
- getValues() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeEnumValueOrder
-
- getValues() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeLocalizedEnumValueOrder
-
- getValues() - Method in interface io.sphere.sdk.projects.CartClassification
-
- getValues() - Method in interface io.sphere.sdk.projects.CartClassificationDraft
-
- getValues() - Method in class io.sphere.sdk.projects.CartClassificationDraftBuilder
-
- getValues() - Method in class io.sphere.sdk.projects.CartClassificationDraftDsl
-
- getValues() - Method in class io.sphere.sdk.types.EnumFieldType
-
- getValues() - Method in class io.sphere.sdk.types.LocalizedEnumFieldType
-
- getVariant() - Method in interface io.sphere.sdk.carts.LineItem
-
- getVariant() - Method in interface io.sphere.sdk.orders.LineItemImportDraft
-
- getVariant() - Method in class io.sphere.sdk.products.messages.ProductVariantDeletedMessage
-
- getVariant(int) - Method in interface io.sphere.sdk.products.ProductData
-
- getVariant(int) - Method in interface io.sphere.sdk.products.ProductProjection
-
- getVariant() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getVariantId() - Method in class io.sphere.sdk.cartdiscounts.GiftLineItemCartDiscountValue
-
- getVariantId() - Method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- getVariantId() - Method in interface io.sphere.sdk.carts.LineItemDraft
-
- getVariantId() - Method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- getVariantId() - Method in class io.sphere.sdk.orders.errors.MatchingPriceNotFoundError
-
- getVariantId() - Method in class io.sphere.sdk.productdiscounts.queries.MatchingProductDiscountGet
-
- getVariantId() - Method in interface io.sphere.sdk.products.ByIdVariantIdentifier
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.AddAsset
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.AddExternalImage
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.AddPrice
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetOrder
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.ChangeMasterVariant
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.LegacySetSku
-
Deprecated.
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.MoveImageToPosition
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.RevertStagedVariantChanges
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetKey
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetImageLabel
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetPrices
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetProductVariantKey
-
- getVariantId() - Method in class io.sphere.sdk.products.commands.updateactions.SetSku
-
- getVariantId() - Method in class io.sphere.sdk.products.messages.ProductImageAddedMessage
-
The variant id to identify the variant for which the image was added.
- getVariantId() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountsSetMessage
-
- getVariantId() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountUpdate
-
- getVariantId() - Method in class io.sphere.sdk.products.messages.ProductPriceExternalDiscountSetMessage
-
- getVariantId() - Method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddLineItem
-
- getVariantId() - Method in interface io.sphere.sdk.shoppinglists.LineItem
-
- getVariantId() - Method in interface io.sphere.sdk.shoppinglists.LineItemDraft
-
- getVariantId() - Method in class io.sphere.sdk.shoppinglists.LineItemDraftDsl
-
- getVariantKey() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountsSetMessage
-
- getVariantKey() - Method in class io.sphere.sdk.products.messages.ProductPriceDiscountUpdate
-
- getVariantKey() - Method in class io.sphere.sdk.products.messages.ProductPriceExternalDiscountSetMessage
-
- getVariantOrMaster(int) - Method in interface io.sphere.sdk.products.ProductData
-
- getVariantOrMaster(int) - Method in interface io.sphere.sdk.products.ProductProjection
-
- getVariants() - Method in interface io.sphere.sdk.products.ProductData
-
- getVariants() - Method in interface io.sphere.sdk.products.ProductDraft
-
- getVariants() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- getVariants() - Method in interface io.sphere.sdk.products.ProductProjection
-
- getVariantValues() - Method in class io.sphere.sdk.products.errors.DuplicateVariantValuesError
-
- getVatId() - Method in class io.sphere.sdk.customers.commands.updateactions.SetVatId
-
- getVatId() - Method in interface io.sphere.sdk.customers.Customer
-
Value added tax identification number.
- getVatId() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- getVersion() - Method in class io.sphere.sdk.client.SolutionInfo
-
- getVersion() - Method in class io.sphere.sdk.customers.commands.CustomerChangePasswordCommand
-
- getVersion() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreChangePasswordCommand
-
- getVersion() - Method in class io.sphere.sdk.customers.commands.CustomerInStoreCreateEmailTokenCommand
-
- getVersion() - Method in class io.sphere.sdk.customers.commands.CustomerPasswordResetCommand
-
Deprecated.
- getVersion() - Method in class io.sphere.sdk.customers.commands.CustomerVerifyEmailCommand
-
Deprecated.
- getVersion() - Method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
- getVersion() - Method in interface io.sphere.sdk.models.Resource
-
- getVersion() - Method in interface io.sphere.sdk.models.ResourceView
-
- getVersion() - Method in class io.sphere.sdk.models.ResourceViewImpl
-
- getVersion() - Method in interface io.sphere.sdk.models.Versioned
-
- getVersion() - Method in interface io.sphere.sdk.orderedits.OrderEdit
-
- getVersion() - Method in interface io.sphere.sdk.orderedits.OrderExcerpt
-
- getVersion() - Method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- getVersion() - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
- getVersion() - Method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
- getVersion() - Method in interface io.sphere.sdk.projects.commands.ProjectUpdateCommand
-
The expected version of the project on which the changes should be applied.
- getVersion() - Method in interface io.sphere.sdk.projects.Project
-
The current version of the project.
- getVersion() - Method in interface io.sphere.sdk.subscriptions.ResourceCreatedPayload
-
The version of the resource after it was created.
- getVersion() - Method in interface io.sphere.sdk.subscriptions.ResourceDeletedPayload
-
The version of the resource at the time of deletion.
- getVersion() - Method in interface io.sphere.sdk.subscriptions.ResourceUpdatedPayload
-
The version of the resource after the update.
- getVersioned() - Method in class io.sphere.sdk.commands.MetaModelUpdateCommandDslImpl
-
- getW() - Method in interface io.sphere.sdk.models.AssetDimensions
-
- getWebsite() - Method in class io.sphere.sdk.client.SolutionInfo
-
- getWeightInGram() - Method in interface io.sphere.sdk.orders.ParcelMeasurements
-
- getWidth() - Method in interface io.sphere.sdk.models.AssetDimensions
-
- getWidth() - Method in interface io.sphere.sdk.products.Image
-
- getWidth() - Method in class io.sphere.sdk.products.ImageDimensions
-
- getWidthInMillimeter() - Method in interface io.sphere.sdk.orders.ParcelMeasurements
-
- getZone() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.AddShippingRate
-
- getZone() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.AddZone
-
- getZone() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.RemoveShippingRate
-
- getZone() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.RemoveZone
-
- getZone() - Method in interface io.sphere.sdk.shippingmethods.ZoneRate
-
- getZone() - Method in interface io.sphere.sdk.shippingmethods.ZoneRateDraft
-
- getZone() - Method in class io.sphere.sdk.shippingmethods.ZoneRateDraftBuilder
-
- getZone() - Method in class io.sphere.sdk.shippingmethods.ZoneRateDraftDsl
-
- getZoneRates() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- getZoneRates() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- getZoneRates() - Method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
- getZones() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- GiftLineItemCartDiscountValue - Class in io.sphere.sdk.cartdiscounts
-
Adds a free line item as a gift to the cart.
- GraphQLDocumentation - Class in io.sphere.sdk.meta
-
Examples for the usage of GraphQL (experimental).
- groupName(String) - Method in class io.sphere.sdk.customergroups.CustomerGroupDraftBuilder
-
Sets the groupName
property of this builder.
- groups() - Method in interface io.sphere.sdk.discountcodes.queries.DiscountCodeQueryModel
-
- id() - Method in interface io.sphere.sdk.apiclient.queries.ApiClientQueryModel
-
- id() - Method in interface io.sphere.sdk.carts.queries.CustomLineItemCollectionQueryModel
-
- id() - Method in interface io.sphere.sdk.carts.queries.LineItemCollectionQueryModel
-
- id() - Method in interface io.sphere.sdk.carts.queries.LineItemLikeCollectionQueryModel
-
- id(String) - Method in class io.sphere.sdk.models.AddressBuilder
-
- id(String) - Method in class io.sphere.sdk.orders.CustomLineItemImportDraftBuilder
-
- id(String) - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
- id() - Method in interface io.sphere.sdk.payments.queries.TransactionCollectionQueryModel
-
- id(String) - Method in class io.sphere.sdk.products.PriceBuilder
-
Sets the id
property of this builder.
- id() - Method in interface io.sphere.sdk.products.queries.PriceCollectionQueryModel
-
- id() - Method in interface io.sphere.sdk.products.queries.PriceQueryModel
-
- id() - Method in interface io.sphere.sdk.products.search.ProductCategoriesReferenceFacetSearchModel
-
- id() - Method in interface io.sphere.sdk.products.search.ProductCategoriesReferenceFilterSearchModel
-
- id() - Method in class io.sphere.sdk.products.search.ProductDataFacetedSearchSearchModel
-
- id() - Method in class io.sphere.sdk.products.search.ProductDataFacetSearchModel
-
- id() - Method in class io.sphere.sdk.products.search.ProductProjectionFacetedSearchSearchModel
-
- id() - Method in class io.sphere.sdk.products.search.ProductProjectionFacetSearchModel
-
- id() - Method in class io.sphere.sdk.products.search.ProductProjectionFilterSearchModel
-
- id() - Method in class io.sphere.sdk.products.search.ProductProjectionSortSearchModel
-
- id() - Method in interface io.sphere.sdk.queries.AddressQueryModel
-
- id() - Method in interface io.sphere.sdk.queries.AnyReferenceQueryModel
-
- id() - Method in interface io.sphere.sdk.queries.ReferenceCollectionQueryModel
-
- id() - Method in interface io.sphere.sdk.queries.ReferenceQueryModel
-
- id() - Method in interface io.sphere.sdk.queries.ResourceQueryModel
-
- id() - Method in class io.sphere.sdk.queries.ResourceQueryModelImpl
-
- id() - Method in class io.sphere.sdk.search.model.ReferenceFacetedSearchSearchModel
-
- id() - Method in interface io.sphere.sdk.search.model.ReferenceFacetSearchModel
-
- id() - Method in class io.sphere.sdk.search.model.ReferenceFacetSearchModelImpl
-
- id() - Method in interface io.sphere.sdk.search.model.ReferenceFilterSearchModel
-
- Identifiable<T> - Interface in io.sphere.sdk.models
-
Something that is identifiable via an ID.
- ifGuarded(AttributeAccess<I>, Function<I, Optional<T>>) - Method in class io.sphere.sdk.products.attributes.AttributeExtraction
-
- ifIs(AttributeAccess<I>, Function<? super I, ? extends T>) - Method in class io.sphere.sdk.products.attributes.AttributeExtraction
-
- ifIs(AttributeAccess<A>, Function<? super A, ? extends T>, Predicate<? super A>) - Method in class io.sphere.sdk.products.attributes.AttributeExtraction
-
- IgnoreInQueryModel - Annotation Type in io.sphere.sdk.annotations
-
- Image - Interface in io.sphere.sdk.products
-
- ImageDimensions - Class in io.sphere.sdk.products
-
- images(List<Image>) - Method in class io.sphere.sdk.orders.ProductVariantImportDraftBuilder
-
- images(Image) - Method in class io.sphere.sdk.products.ProductVariantDraftBuilder
-
- immutableCopyOf(List<T>) - Static method in class io.sphere.sdk.utils.SphereInternalUtils
-
- immutableCopyOf(Map<K, V>) - Static method in class io.sphere.sdk.utils.SphereInternalUtils
-
- ImportCustomLineItemState - Class in io.sphere.sdk.orders.commands.updateactions
-
These import of states does not follow any predefined rules and should be only used if no transitions are defined.
- ImportLineItemState - Class in io.sphere.sdk.orders.commands.updateactions
-
These import of states does not follow any predefined rules and should be only used if no transitions are defined.
- includedDiscounts() - Method in interface io.sphere.sdk.carts.expansion.DiscountedLineItemPriceExpansionModel
-
- includedDiscounts() - Method in interface io.sphere.sdk.carts.queries.DiscountedLineItemPriceQueryModel
-
- includedInPrice(Boolean) - Method in class io.sphere.sdk.taxcategories.ExternalTaxRateDraftBuilder
-
- includedInPrice() - Method in interface io.sphere.sdk.taxcategories.queries.TaxRateQueryModel
-
- includedInStatistics() - Method in interface io.sphere.sdk.reviews.queries.ReviewQueryModel
-
- includeExamplesExtraction(A) - Method in class io.sphere.sdk.annotations.processors.CommandEndpointAnnotationProcessor
-
- includeExamplesExtraction(HasCreateCommand) - Method in class io.sphere.sdk.annotations.processors.CreateCommandEndpointAnnotationProcessor
-
- includeExamplesExtraction(HasDeleteCommand) - Method in class io.sphere.sdk.annotations.processors.DeleteCommandEndpointAnnotationProcessor
-
- includeExamplesExtraction(HasUpdateCommand) - Method in class io.sphere.sdk.annotations.processors.UpdateCommandEndpointAnnotationProcessor
-
- inclusive(T) - Static method in class io.sphere.sdk.search.model.Bound
-
Creates a bound with the given endpoint, included from the range.
- InequalityQueryModel<T,V> - Interface in io.sphere.sdk.queries
-
- info(Supplier<Object>) - Method in class io.sphere.sdk.utils.SphereInternalLogger
-
- init(ServiceProvider) - Static method in class javax.money.spi.Bootstrap
-
- initialValue(BigInteger) - Method in class io.sphere.sdk.sequencegenerators.CustomObjectBigIntegerNumberGeneratorConfigBuilder
-
Sets the first number generated if the underlying
CustomObject
does not exist.
- inputHint(TextInputHint) - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- inputTip(LocalizedString) - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- integerAttributes() - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- integerModel(String) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- integerModel(QueryModel<T>, String) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- IntegerQueryModel<T> - Interface in io.sphere.sdk.queries
-
- IntegerQuerySortingModel<T> - Interface in io.sphere.sdk.queries
-
- integerQuerySortingModel(String) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- integerSetAttributes() - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- integerTypeReference() - Static method in class io.sphere.sdk.json.TypeReferences
-
- interactionId() - Method in interface io.sphere.sdk.payments.queries.TransactionCollectionQueryModel
-
- interactionId(String) - Method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
Sets the interactionId
property of this builder.
- interfaceCode(String) - Method in class io.sphere.sdk.payments.PaymentStatusBuilder
-
- interfaceCode() - Method in interface io.sphere.sdk.payments.queries.PaymentStatusQueryModel
-
- interfaceId(String) - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
Sets the interfaceId
property of this builder.
- interfaceId() - Method in interface io.sphere.sdk.payments.queries.PaymentQueryModel
-
- interfaceInteractions(List<CustomFieldsDraft>) - Method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
Sets the interfaceInteractions
property of this builder.
- InterfaceRule() - Constructor for class io.sphere.sdk.annotations.processors.GenerationRules.InterfaceRule
-
- interfaceRules - Variable in class io.sphere.sdk.annotations.processors.GenerationRules
-
- interfaceText(String) - Method in class io.sphere.sdk.payments.PaymentStatusBuilder
-
- interfaceText() - Method in interface io.sphere.sdk.payments.queries.PaymentStatusQueryModel
-
- INTERNAL_SERVER_ERROR_500 - Static variable in class io.sphere.sdk.http.HttpStatusCode
-
- InternalConstraintViolatedError - Class in io.sphere.sdk.models.errors
-
- InternalServerErrorException - Exception in io.sphere.sdk.client
-
An exception has been thrown on the server side.
- InternalServerErrorException(String) - Constructor for exception io.sphere.sdk.client.InternalServerErrorException
-
- InternalServerErrorException() - Constructor for exception io.sphere.sdk.client.InternalServerErrorException
-
- InvalidClientCredentialsException - Exception in io.sphere.sdk.client
-
Exception for the case that projectKey/cliendId/clientSecret are invalid.
- InvalidClientCredentialsException(SphereAuthConfig) - Constructor for exception io.sphere.sdk.client.InvalidClientCredentialsException
-
- InvalidField - Class in io.sphere.sdk.models.errors
-
- InvalidInputError - Class in io.sphere.sdk.models.errors
-
- InvalidItemShippingDetailsError - Class in io.sphere.sdk.orders.errors
-
- InvalidItemShippingDetailsError - Class in io.sphere.sdk.shippingmethods.errors
-
- InvalidJsonInputError - Class in io.sphere.sdk.models.errors
-
Invalid JSON was sent to Composable Commerce.
- InvalidOperationError - Class in io.sphere.sdk.models.errors
-
- InvalidRangeException - Exception in io.sphere.sdk.search.model
-
Exception for invalid Range
s.
- InvalidRangeException() - Constructor for exception io.sphere.sdk.search.model.InvalidRangeException
-
- InvalidRangeException(Range<T>) - Constructor for exception io.sphere.sdk.search.model.InvalidRangeException
-
- InvalidRangeException(String, Range<T>) - Constructor for exception io.sphere.sdk.search.model.InvalidRangeException
-
- InvalidScopeException - Exception in io.sphere.sdk.client
-
when trying to make a commercetoold eith invalid scope
- InvalidScopeException(Throwable) - Constructor for exception io.sphere.sdk.client.InvalidScopeException
-
- InvalidTokenException - Exception in io.sphere.sdk.client
-
Exception raised in case the access token is not valid for the used Project.
- InvalidTokenException() - Constructor for exception io.sphere.sdk.client.InvalidTokenException
-
- InventoryEntry - Interface in io.sphere.sdk.inventory
-
Inventory allows you to track stock quantity per SKU and optionally per supply
Channel
.
- InventoryEntryByIdGet - Interface in io.sphere.sdk.inventory.queries
-
- InventoryEntryCreateCommand - Interface in io.sphere.sdk.inventory.commands
-
- InventoryEntryCreatedMessage - Class in io.sphere.sdk.inventory.messages
-
- InventoryEntryDeleteCommand - Interface in io.sphere.sdk.inventory.commands
-
- InventoryEntryDeletedMessage - Class in io.sphere.sdk.inventory.messages
-
- InventoryEntryDraft - Interface in io.sphere.sdk.inventory
-
- InventoryEntryDraftBuilder - Class in io.sphere.sdk.inventory
-
- InventoryEntryDraftDsl - Class in io.sphere.sdk.inventory
-
- InventoryEntryExpansionModel<T> - Interface in io.sphere.sdk.inventory.expansion
-
- InventoryEntryQuantitySetMessage - Class in io.sphere.sdk.inventory.messages
-
- InventoryEntryQuery - Interface in io.sphere.sdk.inventory.queries
-
{@doc.gen summary inventory entries
- InventoryEntryQueryBuilder - Class in io.sphere.sdk.inventory.queries
-
- InventoryEntryQueryModel - Interface in io.sphere.sdk.inventory.queries
-
- InventoryEntryUpdateCommand - Interface in io.sphere.sdk.inventory.commands
-
- InventoryMode - Enum in io.sphere.sdk.carts
-
InventoryMode.
- inventoryMode(InventoryMode) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- InvertedBoundsException - Exception in io.sphere.sdk.search.model
-
Exception for the case that the lower bound is greater than the upper bound.
- InvertedBoundsException() - Constructor for exception io.sphere.sdk.search.model.InvertedBoundsException
-
- InvertedBoundsException(Range<T>) - Constructor for exception io.sphere.sdk.search.model.InvertedBoundsException
-
- io.sphere.sdk.annotations - package io.sphere.sdk.annotations
-
- io.sphere.sdk.annotations.processors - package io.sphere.sdk.annotations.processors
-
- io.sphere.sdk.annotations.processors.generators - package io.sphere.sdk.annotations.processors.generators
-
- io.sphere.sdk.annotations.processors.models - package io.sphere.sdk.annotations.processors.models
-
- io.sphere.sdk.annotations.processors.validators - package io.sphere.sdk.annotations.processors.validators
-
- io.sphere.sdk.apiclient - package io.sphere.sdk.apiclient
-
- io.sphere.sdk.apiclient.commands - package io.sphere.sdk.apiclient.commands
-
- io.sphere.sdk.apiclient.expansion - package io.sphere.sdk.apiclient.expansion
-
- io.sphere.sdk.apiclient.queries - package io.sphere.sdk.apiclient.queries
-
- io.sphere.sdk.cartdiscounts - package io.sphere.sdk.cartdiscounts
-
Provides model classes and builders for cart discounts.
- io.sphere.sdk.cartdiscounts.commands - package io.sphere.sdk.cartdiscounts.commands
-
Provides types to change the state of cart discounts.
- io.sphere.sdk.cartdiscounts.commands.updateactions - package io.sphere.sdk.cartdiscounts.commands.updateactions
-
Provides the possible operations which can be performed on update commands for cart discounts.
- io.sphere.sdk.cartdiscounts.expansion - package io.sphere.sdk.cartdiscounts.expansion
-
Provides reference expansion models for cart discounts.
- io.sphere.sdk.cartdiscounts.queries - package io.sphere.sdk.cartdiscounts.queries
-
Provides types to retrieve the state of cart discounts.
- io.sphere.sdk.carts - package io.sphere.sdk.carts
-
Provides model classes and builders for carts.
- io.sphere.sdk.carts.commands - package io.sphere.sdk.carts.commands
-
Provides types to change the state of carts.
- io.sphere.sdk.carts.commands.updateactions - package io.sphere.sdk.carts.commands.updateactions
-
Provides the possible operations which can be performed on update commands for carts.
- io.sphere.sdk.carts.expansion - package io.sphere.sdk.carts.expansion
-
Provides reference expansion models for carts.
- io.sphere.sdk.carts.queries - package io.sphere.sdk.carts.queries
-
Provides types to retrieve the state of carts.
- io.sphere.sdk.categories - package io.sphere.sdk.categories
-
Provides model types to organize products in a hierarchical structure.
- io.sphere.sdk.categories.commands - package io.sphere.sdk.categories.commands
-
Provides types to change the state of categories.
- io.sphere.sdk.categories.commands.updateactions - package io.sphere.sdk.categories.commands.updateactions
-
Provides the possible operations which can be performed on update commands for categories.
- io.sphere.sdk.categories.expansion - package io.sphere.sdk.categories.expansion
-
Provides reference expansion models for categories.
- io.sphere.sdk.categories.messages - package io.sphere.sdk.categories.messages
-
- io.sphere.sdk.categories.queries - package io.sphere.sdk.categories.queries
-
Provides types to retrieve the state of categories.
- io.sphere.sdk.channels - package io.sphere.sdk.channels
-
Provides model classes and builders for channels.
- io.sphere.sdk.channels.commands - package io.sphere.sdk.channels.commands
-
Provides types to change the state of channels.
- io.sphere.sdk.channels.commands.updateactions - package io.sphere.sdk.channels.commands.updateactions
-
Provides the possible operations which can be performed on update commands for channels.
- io.sphere.sdk.channels.expansion - package io.sphere.sdk.channels.expansion
-
Provides reference expansion models for channels.
- io.sphere.sdk.channels.queries - package io.sphere.sdk.channels.queries
-
Provides types to retrieve the state of channels.
- io.sphere.sdk.client - package io.sphere.sdk.client
-
Provides types to connect to the API via HTTPS.
- io.sphere.sdk.client.correlationid - package io.sphere.sdk.client.correlationid
-
- io.sphere.sdk.client.metrics - package io.sphere.sdk.client.metrics
-
- io.sphere.sdk.client.retry - package io.sphere.sdk.client.retry
-
- io.sphere.sdk.commands - package io.sphere.sdk.commands
-
This package provide tools to change objects in Composable Commerce.
- io.sphere.sdk.customergroups - package io.sphere.sdk.customergroups
-
Provides model classes and builders for customer groups.
- io.sphere.sdk.customergroups.commands - package io.sphere.sdk.customergroups.commands
-
Provides types to change the state of customer groups.
- io.sphere.sdk.customergroups.commands.updateactions - package io.sphere.sdk.customergroups.commands.updateactions
-
Provides the possible operations which can be performed on update commands for customer groups.
- io.sphere.sdk.customergroups.expansion - package io.sphere.sdk.customergroups.expansion
-
Provides reference expansion models for customer groups.
- io.sphere.sdk.customergroups.queries - package io.sphere.sdk.customergroups.queries
-
Provides types to retrieve the state of customer groups.
- io.sphere.sdk.customers - package io.sphere.sdk.customers
-
Provides model classes and builders for customers.
- io.sphere.sdk.customers.commands - package io.sphere.sdk.customers.commands
-
Provides types to change the state of customers.
- io.sphere.sdk.customers.commands.updateactions - package io.sphere.sdk.customers.commands.updateactions
-
Provides the possible operations which can be performed on update commands for customers.
- io.sphere.sdk.customers.errors - package io.sphere.sdk.customers.errors
-
- io.sphere.sdk.customers.expansion - package io.sphere.sdk.customers.expansion
-
Provides reference expansion models for customers.
- io.sphere.sdk.customers.messages - package io.sphere.sdk.customers.messages
-
- io.sphere.sdk.customers.queries - package io.sphere.sdk.customers.queries
-
Provides types to retrieve the state of customers.
- io.sphere.sdk.customobjects - package io.sphere.sdk.customobjects
-
Provides model classes and builders for custom objects.
- io.sphere.sdk.customobjects.commands - package io.sphere.sdk.customobjects.commands
-
Provides types to change the state of custom objects.
- io.sphere.sdk.customobjects.expansion - package io.sphere.sdk.customobjects.expansion
-
Provides reference expansion models for custom objects.
- io.sphere.sdk.customobjects.queries - package io.sphere.sdk.customobjects.queries
-
Provides types to retrieve the state of custom objects.
- io.sphere.sdk.discountcodes - package io.sphere.sdk.discountcodes
-
Provides model classes and builders for discount codes.
- io.sphere.sdk.discountcodes.commands - package io.sphere.sdk.discountcodes.commands
-
Provides types to change the state of discount codes.
- io.sphere.sdk.discountcodes.commands.updateactions - package io.sphere.sdk.discountcodes.commands.updateactions
-
Provides the possible operations which can be performed on update commands for discount codes.
- io.sphere.sdk.discountcodes.expansion - package io.sphere.sdk.discountcodes.expansion
-
Provides reference expansion models for discount codes.
- io.sphere.sdk.discountcodes.queries - package io.sphere.sdk.discountcodes.queries
-
Provides types to retrieve the state of discount codes.
- io.sphere.sdk.expansion - package io.sphere.sdk.expansion
-
Provides classes to describe reference expansion paths and their models.
- io.sphere.sdk.extensions - package io.sphere.sdk.extensions
-
- io.sphere.sdk.extensions.commands - package io.sphere.sdk.extensions.commands
-
- io.sphere.sdk.extensions.commands.updateactions - package io.sphere.sdk.extensions.commands.updateactions
-
Provides the possible operations which can be performed on update commands for extensions.
- io.sphere.sdk.extensions.errors - package io.sphere.sdk.extensions.errors
-
- io.sphere.sdk.extensions.expansion - package io.sphere.sdk.extensions.expansion
-
- io.sphere.sdk.extensions.queries - package io.sphere.sdk.extensions.queries
-
- io.sphere.sdk.http - package io.sphere.sdk.http
-
Provides types to deal with HTTP.
- io.sphere.sdk.inventory - package io.sphere.sdk.inventory
-
Provides model classes and builders for inventory entries.
- io.sphere.sdk.inventory.commands - package io.sphere.sdk.inventory.commands
-
Provides types to change the state of inventory entries.
- io.sphere.sdk.inventory.commands.updateactions - package io.sphere.sdk.inventory.commands.updateactions
-
Provides the possible operations which can be performed on update commands for inventory entries.
- io.sphere.sdk.inventory.expansion - package io.sphere.sdk.inventory.expansion
-
Provides reference expansion models for inventory entries.
- io.sphere.sdk.inventory.messages - package io.sphere.sdk.inventory.messages
-
- io.sphere.sdk.inventory.queries - package io.sphere.sdk.inventory.queries
-
Provides types to retrieve the state of inventory entries.
- io.sphere.sdk.json - package io.sphere.sdk.json
-
Provides utils the JSON mapping for resources specific to Composable Commerce.
- io.sphere.sdk.jsonnodes.expansion - package io.sphere.sdk.jsonnodes.expansion
-
Provides reference expansion models for json nodes.
- io.sphere.sdk.jsonnodes.queries - package io.sphere.sdk.jsonnodes.queries
-
Provides types to retrieve the state of json nodes.
- io.sphere.sdk.messages - package io.sphere.sdk.messages
-
Provides model classes and builders for messages.
- io.sphere.sdk.messages.expansion - package io.sphere.sdk.messages.expansion
-
Provides reference expansion models for messages.
- io.sphere.sdk.messages.queries - package io.sphere.sdk.messages.queries
-
Provides types to retrieve the state of messages.
- io.sphere.sdk.meta - package io.sphere.sdk.meta
-
Serves as documentation pages about the SDK itself, classes should not be in the classpath.
- io.sphere.sdk.models - package io.sphere.sdk.models
-
Provides the common API types of Composable Commerce.
- io.sphere.sdk.models.errors - package io.sphere.sdk.models.errors
-
Provides base classes for errors related to Composable Commerce.
- io.sphere.sdk.orderedits - package io.sphere.sdk.orderedits
-
- io.sphere.sdk.orderedits.commands - package io.sphere.sdk.orderedits.commands
-
- io.sphere.sdk.orderedits.commands.stagedactions - package io.sphere.sdk.orderedits.commands.stagedactions
-
- io.sphere.sdk.orderedits.commands.updateactions - package io.sphere.sdk.orderedits.commands.updateactions
-
- io.sphere.sdk.orderedits.expansion - package io.sphere.sdk.orderedits.expansion
-
Provides reference expansion models for orderedits.
- io.sphere.sdk.orderedits.queries - package io.sphere.sdk.orderedits.queries
-
- io.sphere.sdk.orders - package io.sphere.sdk.orders
-
Provides model classes and builders for orders.
- io.sphere.sdk.orders.commands - package io.sphere.sdk.orders.commands
-
Provides types to change the state of orders.
- io.sphere.sdk.orders.commands.updateactions - package io.sphere.sdk.orders.commands.updateactions
-
Provides the possible operations which can be performed on update commands for orders.
- io.sphere.sdk.orders.errors - package io.sphere.sdk.orders.errors
-
Errors related to
Order
operations.
- io.sphere.sdk.orders.expansion - package io.sphere.sdk.orders.expansion
-
Provides reference expansion models for orders.
- io.sphere.sdk.orders.messages - package io.sphere.sdk.orders.messages
-
Provides model classes and builders for orders.
- io.sphere.sdk.orders.queries - package io.sphere.sdk.orders.queries
-
Provides types to retrieve the state of orders.
- io.sphere.sdk.payments - package io.sphere.sdk.payments
-
Provides model classes and builders for payments.
- io.sphere.sdk.payments.commands - package io.sphere.sdk.payments.commands
-
Provides types to change the state of payments.
- io.sphere.sdk.payments.commands.updateactions - package io.sphere.sdk.payments.commands.updateactions
-
Provides the possible operations which can be performed on update commands for payments.
- io.sphere.sdk.payments.expansion - package io.sphere.sdk.payments.expansion
-
Provides reference expansion models for payments.
- io.sphere.sdk.payments.messages - package io.sphere.sdk.payments.messages
-
Provides model classes and builders for payments.
- io.sphere.sdk.payments.queries - package io.sphere.sdk.payments.queries
-
Provides types to retrieve the state of payments.
- io.sphere.sdk.productdiscounts - package io.sphere.sdk.productdiscounts
-
Provides model classes and builders for product discounts.
- io.sphere.sdk.productdiscounts.commands - package io.sphere.sdk.productdiscounts.commands
-
Provides types to change the state of product discounts.
- io.sphere.sdk.productdiscounts.commands.updateactions - package io.sphere.sdk.productdiscounts.commands.updateactions
-
Provides the possible operations which can be performed on update commands for product discounts.
- io.sphere.sdk.productdiscounts.errors - package io.sphere.sdk.productdiscounts.errors
-
- io.sphere.sdk.productdiscounts.expansion - package io.sphere.sdk.productdiscounts.expansion
-
Provides reference expansion models for product discounts.
- io.sphere.sdk.productdiscounts.queries - package io.sphere.sdk.productdiscounts.queries
-
Provides types to retrieve the state of product discounts.
- io.sphere.sdk.products - package io.sphere.sdk.products
-
Provides model classes and builders for products.
- io.sphere.sdk.products.attributes - package io.sphere.sdk.products.attributes
-
Provides model classes for product type attributes.
- io.sphere.sdk.products.commands - package io.sphere.sdk.products.commands
-
Provides types to change the state of products.
- io.sphere.sdk.products.commands.updateactions - package io.sphere.sdk.products.commands.updateactions
-
Provides the possible operations which can be performed on update commands for products.
- io.sphere.sdk.products.errors - package io.sphere.sdk.products.errors
-
- io.sphere.sdk.products.expansion - package io.sphere.sdk.products.expansion
-
Provides reference expansion models for products.
- io.sphere.sdk.products.messages - package io.sphere.sdk.products.messages
-
Provides model classes and builders for products.
- io.sphere.sdk.products.queries - package io.sphere.sdk.products.queries
-
Provides types to retrieve the state of products.
- io.sphere.sdk.products.search - package io.sphere.sdk.products.search
-
Endpoint related classes to search products.
- io.sphere.sdk.productselections - package io.sphere.sdk.productselections
-
Provides model classes and builders for product selections.
- io.sphere.sdk.productselections.commands - package io.sphere.sdk.productselections.commands
-
Provides types to change the state of product selection.
- io.sphere.sdk.productselections.commands.updateactions - package io.sphere.sdk.productselections.commands.updateactions
-
Provides the possible operations which can be performed on update commands for product selections.
- io.sphere.sdk.productselections.expansion - package io.sphere.sdk.productselections.expansion
-
Provides reference expansion models for product selections.
- io.sphere.sdk.productselections.messages - package io.sphere.sdk.productselections.messages
-
- io.sphere.sdk.productselections.queries - package io.sphere.sdk.productselections.queries
-
Provides types to retrieve the state of product selections.
- io.sphere.sdk.producttypes - package io.sphere.sdk.producttypes
-
Provides model classes and builders for product types.
- io.sphere.sdk.producttypes.commands - package io.sphere.sdk.producttypes.commands
-
Provides types to change the state of product types.
- io.sphere.sdk.producttypes.commands.updateactions - package io.sphere.sdk.producttypes.commands.updateactions
-
Provides the possible operations which can be performed on update commands for product types.
- io.sphere.sdk.producttypes.errors - package io.sphere.sdk.producttypes.errors
-
- io.sphere.sdk.producttypes.expansion - package io.sphere.sdk.producttypes.expansion
-
Provides reference expansion models for product types.
- io.sphere.sdk.producttypes.queries - package io.sphere.sdk.producttypes.queries
-
Provides types to retrieve the state of product types.
- io.sphere.sdk.projects - package io.sphere.sdk.projects
-
Provides models for the project endpoint.
- io.sphere.sdk.projects.commands - package io.sphere.sdk.projects.commands
-
- io.sphere.sdk.projects.commands.updateactions - package io.sphere.sdk.projects.commands.updateactions
-
- io.sphere.sdk.projects.error - package io.sphere.sdk.projects.error
-
- io.sphere.sdk.projects.queries - package io.sphere.sdk.projects.queries
-
Provides the project endpoint.
- io.sphere.sdk.queries - package io.sphere.sdk.queries
-
Provides types to prepare and receive queries.
- io.sphere.sdk.retry - package io.sphere.sdk.retry
-
- io.sphere.sdk.reviews - package io.sphere.sdk.reviews
-
Provides model classes and builders for reviews.
- io.sphere.sdk.reviews.commands - package io.sphere.sdk.reviews.commands
-
Provides types to change the state of reviews.
- io.sphere.sdk.reviews.commands.updateactions - package io.sphere.sdk.reviews.commands.updateactions
-
Provides the possible operations which can be performed on update commands for reviews.
- io.sphere.sdk.reviews.expansion - package io.sphere.sdk.reviews.expansion
-
Provides reference expansion models for reviews.
- io.sphere.sdk.reviews.messages - package io.sphere.sdk.reviews.messages
-
Provides model classes and builders for reviews.
- io.sphere.sdk.reviews.queries - package io.sphere.sdk.reviews.queries
-
Provides types to retrieve the state of reviews.
- io.sphere.sdk.reviews.search - package io.sphere.sdk.reviews.search
-
Provides model classes and builders for reviews.
- io.sphere.sdk.search - package io.sphere.sdk.search
-
Provides types to perform searches.
- io.sphere.sdk.search.model - package io.sphere.sdk.search.model
-
Models to support using search endpoints.
- io.sphere.sdk.search.tokenizer - package io.sphere.sdk.search.tokenizer
-
Provides Tokenizers for the search endpoint.
- io.sphere.sdk.selection - package io.sphere.sdk.selection
-
- io.sphere.sdk.sequencegenerators - package io.sphere.sdk.sequencegenerators
-
- io.sphere.sdk.shippingmethods - package io.sphere.sdk.shippingmethods
-
Provides model classes and builders for shipping methods.
- io.sphere.sdk.shippingmethods.commands - package io.sphere.sdk.shippingmethods.commands
-
Provides types to change the state of shipping methods.
- io.sphere.sdk.shippingmethods.commands.updateactions - package io.sphere.sdk.shippingmethods.commands.updateactions
-
Provides the possible operations which can be performed on update commands for shipping methods.
- io.sphere.sdk.shippingmethods.errors - package io.sphere.sdk.shippingmethods.errors
-
- io.sphere.sdk.shippingmethods.expansion - package io.sphere.sdk.shippingmethods.expansion
-
Provides reference expansion models for shipping methods.
- io.sphere.sdk.shippingmethods.queries - package io.sphere.sdk.shippingmethods.queries
-
Provides types to retrieve the state of shipping methods.
- io.sphere.sdk.shoppinglists - package io.sphere.sdk.shoppinglists
-
Provides model classes and builders for shopping lists.
- io.sphere.sdk.shoppinglists.commands - package io.sphere.sdk.shoppinglists.commands
-
Provides types to change the state of shopping list methods.
- io.sphere.sdk.shoppinglists.commands.updateactions - package io.sphere.sdk.shoppinglists.commands.updateactions
-
Provides the possible operations which can be performed on update commands for shopping list methods.
- io.sphere.sdk.shoppinglists.expansion - package io.sphere.sdk.shoppinglists.expansion
-
Provides reference expansion models for shopping lists.
- io.sphere.sdk.shoppinglists.queries - package io.sphere.sdk.shoppinglists.queries
-
Provides types to retrieve the state of shopping lists.
- io.sphere.sdk.states - package io.sphere.sdk.states
-
Provides model classes and builders for states.
- io.sphere.sdk.states.commands - package io.sphere.sdk.states.commands
-
Provides types to change the state of states.
- io.sphere.sdk.states.commands.updateactions - package io.sphere.sdk.states.commands.updateactions
-
Provides the possible operations which can be performed on update commands for states.
- io.sphere.sdk.states.expansion - package io.sphere.sdk.states.expansion
-
Provides reference expansion models for states.
- io.sphere.sdk.states.queries - package io.sphere.sdk.states.queries
-
Provides types to retrieve the state of states.
- io.sphere.sdk.states.relatedupdateactions - package io.sphere.sdk.states.relatedupdateactions
-
Provides model classes and builders for states.
- io.sphere.sdk.stores - package io.sphere.sdk.stores
-
- io.sphere.sdk.stores.commands - package io.sphere.sdk.stores.commands
-
- io.sphere.sdk.stores.commands.updateactions - package io.sphere.sdk.stores.commands.updateactions
-
- io.sphere.sdk.stores.error - package io.sphere.sdk.stores.error
-
- io.sphere.sdk.stores.expansion - package io.sphere.sdk.stores.expansion
-
Provides reference expansion models for stores.
- io.sphere.sdk.stores.messages - package io.sphere.sdk.stores.messages
-
- io.sphere.sdk.stores.queries - package io.sphere.sdk.stores.queries
-
- io.sphere.sdk.subscriptions - package io.sphere.sdk.subscriptions
-
Subscriptions are used to trigger an asynchronous background process in response to an event on commercetools Composable Commerce.
- io.sphere.sdk.subscriptions.commands - package io.sphere.sdk.subscriptions.commands
-
Provides types to change the state of subscription methods.
- io.sphere.sdk.subscriptions.commands.updateactions - package io.sphere.sdk.subscriptions.commands.updateactions
-
Provides the possible operations which can be performed on update commands for subscription methods.
- io.sphere.sdk.subscriptions.expansion - package io.sphere.sdk.subscriptions.expansion
-
Provides reference expansion models for subscriptions.
- io.sphere.sdk.subscriptions.queries - package io.sphere.sdk.subscriptions.queries
-
- io.sphere.sdk.taxcategories - package io.sphere.sdk.taxcategories
-
Provides model classes and builders for tax categories.
- io.sphere.sdk.taxcategories.commands - package io.sphere.sdk.taxcategories.commands
-
Provides types to change the state of tax categories.
- io.sphere.sdk.taxcategories.commands.updateactions - package io.sphere.sdk.taxcategories.commands.updateactions
-
Provides the possible operations which can be performed on update commands for tax categories.
- io.sphere.sdk.taxcategories.expansion - package io.sphere.sdk.taxcategories.expansion
-
Provides reference expansion models for tax categories.
- io.sphere.sdk.taxcategories.queries - package io.sphere.sdk.taxcategories.queries
-
Provides types to retrieve the state of tax categories.
- io.sphere.sdk.types - package io.sphere.sdk.types
-
Provides model classes and builders for types.
- io.sphere.sdk.types.commands - package io.sphere.sdk.types.commands
-
Provides types to change the state of types.
- io.sphere.sdk.types.commands.updateactions - package io.sphere.sdk.types.commands.updateactions
-
Provides the possible operations which can be performed on update commands for types.
- io.sphere.sdk.types.customupdateactions - package io.sphere.sdk.types.customupdateactions
-
Provides update actions to update fields of resources implementing
Custom
.
- io.sphere.sdk.types.expansion - package io.sphere.sdk.types.expansion
-
Provides reference expansion models for types.
- io.sphere.sdk.types.queries - package io.sphere.sdk.types.queries
-
Provides types to retrieve the state of types.
- io.sphere.sdk.utils - package io.sphere.sdk.utils
-
Provides utilities for miscellaneous things.
- io.sphere.sdk.zones - package io.sphere.sdk.zones
-
Provides model classes and builders for zones.
- io.sphere.sdk.zones.commands - package io.sphere.sdk.zones.commands
-
Provides types to change the state of zones.
- io.sphere.sdk.zones.commands.updateactions - package io.sphere.sdk.zones.commands.updateactions
-
Provides the possible operations which can be performed on update commands for zones.
- io.sphere.sdk.zones.expansion - package io.sphere.sdk.zones.expansion
-
Provides reference expansion models for zones.
- io.sphere.sdk.zones.queries - package io.sphere.sdk.zones.queries
-
Provides types to retrieve the state of zones.
- IronMqDestination - Interface in io.sphere.sdk.subscriptions
-
IronMQ can be used as a pull-queue, but it can also be used to push messages to IronWorkers or HTTP endpoints
(webhooks) or fan-out messages to other IronMQ queues.
- is(MessageDerivateHint<?>) - Method in interface io.sphere.sdk.messages.queries.MessageTypeQueryModel
-
- is(Referenceable<Product>) - Method in interface io.sphere.sdk.products.queries.ProductProjectionQueryModel
-
- is(String) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFilterSearchModel
-
Creates filters for a product which should directly belong to the given category in categoryId
.
- is(Referenceable<R>) - Method in interface io.sphere.sdk.queries.AnyReferenceQueryModel
-
- is(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQueryModel
-
- is(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQuerySortingModel
-
- is(Boolean) - Method in interface io.sphere.sdk.queries.BooleanQueryModel
-
- is(CountryCode) - Method in interface io.sphere.sdk.queries.CountryQueryModel
-
- is(String) - Method in interface io.sphere.sdk.queries.CurrencyCodeQueryModel
-
- is(CurrencyUnit) - Method in interface io.sphere.sdk.queries.CurrencyCodeQueryModel
-
- is(Double) - Method in interface io.sphere.sdk.queries.DoubleQuerySortingModel
-
- is(E) - Method in interface io.sphere.sdk.queries.EqualityQueryModel
-
- is(Integer) - Method in interface io.sphere.sdk.queries.IntegerQueryModel
-
- is(Integer) - Method in interface io.sphere.sdk.queries.IntegerQuerySortingModel
-
- is(Locale) - Method in interface io.sphere.sdk.queries.LocaleQueryModel
-
- is(Long) - Method in interface io.sphere.sdk.queries.LongQueryModel
-
- is(Long) - Method in interface io.sphere.sdk.queries.LongQuerySortingModel
-
- is(Referenceable<R>) - Method in interface io.sphere.sdk.queries.ReferenceOptionalQueryModel
-
- is(Referenceable<R>) - Method in interface io.sphere.sdk.queries.ReferenceQueryModel
-
- is(Identifiable<T>) - Method in interface io.sphere.sdk.queries.ResourceQueryModel
-
- is(Identifiable<T>) - Method in class io.sphere.sdk.queries.ResourceQueryModelImpl
-
- is(E) - Method in interface io.sphere.sdk.queries.SphereEnumerationOptionalQueryModel
-
- is(E) - Method in interface io.sphere.sdk.queries.SphereEnumerationQueryModel
-
- is(String) - Method in interface io.sphere.sdk.queries.StringQueryModel
-
- is(String) - Method in interface io.sphere.sdk.queries.StringQuerySortingModel
-
- is(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampModel
-
- is(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampSortingModel
-
- is(String) - Method in interface io.sphere.sdk.search.model.FacetedSearchSearchModel
-
Generates an expression to select all elements with the given attribute value, along with the facet for all terms for this attribute.
- is(V) - Method in interface io.sphere.sdk.search.model.FilterSearchModel
-
Generates an expression to select all elements with the given attribute value.
- is(String) - Method in class io.sphere.sdk.search.model.RangeTermFacetedSearchSearchModel
-
Generates an expression to select all elements with the given attribute value, along with the facet for all terms for this attribute.
- is(V) - Method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Generates an expression to select all elements with the given attribute value.
- is(String) - Method in class io.sphere.sdk.search.model.TermFacetedSearchSearchModel
-
- is(V) - Method in interface io.sphere.sdk.search.model.TermFilterExistsAndMissingSearchModel
-
- is(V) - Method in interface io.sphere.sdk.search.model.TermFilterSearchModel
-
- is(V) - Method in class io.sphere.sdk.search.model.TermFilterSearchModelImpl
-
Generates an expression to select all elements with the given attribute value.
- isActive() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
Flag if the discount is active.
- isActive() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- isActive(boolean) - Method in class io.sphere.sdk.cartdiscounts.CartDiscountDraftBuilder
-
- isActive() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeIsActive
-
- isActive() - Method in interface io.sphere.sdk.discountcodes.DiscountCode
-
Flag if this cart discount is enabled
- isActive() - Method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- isActive(boolean) - Method in class io.sphere.sdk.discountcodes.DiscountCodeDraftBuilder
-
- isActive() - Method in class io.sphere.sdk.productdiscounts.commands.updateactions.ChangeIsActive
-
- isActive() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscount
-
- isActive() - Method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- isActive() - Method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
- isActive() - Method in interface io.sphere.sdk.productdiscounts.queries.ProductDiscountQueryModel
-
- isActive(Boolean) - Method in class io.sphere.sdk.stores.ProductSelectionSettingDraftBuilder
-
Sets the active
property of this builder.
- isBetween(FilterRange<String>) - Method in class io.sphere.sdk.search.model.RangeTermFacetedSearchSearchModel
-
Generates an expression to select all elements with an attribute value within the given range, along with the facet for all ranges for this attribute.
- isBetween(FilterRange<V>) - Method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Generates an expression to select all elements with an attribute value within the given range.
- isBetween(V, V) - Method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Generates an expression to select all elements with an attribute value within the range defined by the given endpoints.
- isBetweenAll(Iterable<FilterRange<String>>) - Method in class io.sphere.sdk.search.model.RangeTermFacetedSearchSearchModel
-
Generates an expression to select all elements with an attribute value within all the given ranges, along with the facet for all ranges for this attribute.
- isBetweenAll(Iterable<FilterRange<V>>) - Method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Generates an expression to select all elements with an attribute value within all the given ranges.
- isBetweenAny(Iterable<FilterRange<String>>) - Method in class io.sphere.sdk.search.model.RangeTermFacetedSearchSearchModel
-
Generates an expression to select all elements with an attribute value within any of the given ranges, along with the facet for all ranges for this attribute.
- isBetweenAny(Iterable<FilterRange<V>>) - Method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Generates an expression to select all elements with an attribute value within any of the given ranges.
- isBuiltIn() - Method in interface io.sphere.sdk.states.State
-
- isCountingProducts() - Method in interface io.sphere.sdk.search.model.FacetSearchModel
-
Whether the facet is counting products.
- isCountryTaxRateFallbackEnabled() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeCountryTaxRateFallbackEnabled
-
- isDefault() - Method in class io.sphere.sdk.shippingmethods.commands.updateactions.ChangeIsDefault
-
- isDefault() - Method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodQueryModel
-
- isDefault() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethod
-
- isDefault() - Method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- isDefault() - Method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
- isDeprecated() - Method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
- isDryRun() - Method in interface io.sphere.sdk.orderedits.OrderEditDraft
-
- isDryRun(Boolean) - Method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
Sets the dryRun
property of this builder.
- isDryRun() - Method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
- isDryRun() - Method in class io.sphere.sdk.orderedits.OrderEditDraftDsl
-
- isEmailVerified() - Method in interface io.sphere.sdk.customers.Customer
-
- isEmailVerified() - Method in interface io.sphere.sdk.customers.CustomerDraft
-
- isEmailVerified() - Method in interface io.sphere.sdk.customers.queries.CustomerQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.carts.queries.CustomLineItemCollectionQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.carts.queries.DiscountCodeInfoCollectionQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.carts.queries.LineItemCollectionQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.carts.queries.LineItemLikeCollectionQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.products.queries.PriceCollectionQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.products.queries.PriceTierQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.queries.AddressCollectionQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.queries.CollectionQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.queries.SphereEnumerationCollectionQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.queries.StringCollectionQueryModel
-
- isEmpty() - Method in interface io.sphere.sdk.types.queries.FieldDefinitionCollectionQueryModel
-
- isEmpty(Iterable<?>) - Static method in class io.sphere.sdk.utils.SphereInternalUtils
-
- isEmptyCollectionQueryPredicate() - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isEnabled() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeProductSearchIndexingEnabled
-
- isEnabled() - Method in interface io.sphere.sdk.projects.MessagesConfiguration
-
- isEnabled() - Method in interface io.sphere.sdk.projects.MessagesConfigurationDraft
-
- isEnumType(TypeName) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- isEqualTo(MonetaryAmount) - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- isEqualTo(MonetaryAmount) - Method in class io.sphere.sdk.utils.MoneyImpl
-
- isExclusive() - Method in class io.sphere.sdk.search.model.Bound
-
Determines whether the endpoint is excluded from the range or included.
- isFirst() - Method in interface io.sphere.sdk.queries.PagedResult
-
Checks if this is the first page of a result.
- isForce() - Method in class io.sphere.sdk.states.relatedupdateactions.TransitionStateBase
-
Using true disables the state machine validation and allows a transition in any state.
- isFuzzy() - Method in class io.sphere.sdk.search.MetaModelSearchDslImpl
-
- isFuzzy() - Method in interface io.sphere.sdk.search.ResourceSearch
-
- isGreaterThan(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQueryModel
-
- isGreaterThan(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQuerySortingModel
-
- isGreaterThan(Double) - Method in interface io.sphere.sdk.queries.DoubleQuerySortingModel
-
- isGreaterThan(V) - Method in interface io.sphere.sdk.queries.InequalityQueryModel
-
- isGreaterThan(Integer) - Method in interface io.sphere.sdk.queries.IntegerQueryModel
-
- isGreaterThan(Integer) - Method in interface io.sphere.sdk.queries.IntegerQuerySortingModel
-
- isGreaterThan(Long) - Method in interface io.sphere.sdk.queries.LongQueryModel
-
- isGreaterThan(Long) - Method in interface io.sphere.sdk.queries.LongQuerySortingModel
-
- isGreaterThan(String) - Method in interface io.sphere.sdk.queries.StringQueryModel
-
- isGreaterThan(String) - Method in interface io.sphere.sdk.queries.StringQuerySortingModel
-
- isGreaterThan(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampModel
-
- isGreaterThan(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampSortingModel
-
- isGreaterThan(MonetaryAmount) - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- isGreaterThan(MonetaryAmount) - Method in class io.sphere.sdk.utils.MoneyImpl
-
- isGreaterThanOrEqualTo(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQueryModel
-
- isGreaterThanOrEqualTo(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQuerySortingModel
-
- isGreaterThanOrEqualTo(Double) - Method in interface io.sphere.sdk.queries.DoubleQuerySortingModel
-
- isGreaterThanOrEqualTo(V) - Method in interface io.sphere.sdk.queries.InequalityQueryModel
-
- isGreaterThanOrEqualTo(Integer) - Method in interface io.sphere.sdk.queries.IntegerQueryModel
-
- isGreaterThanOrEqualTo(Integer) - Method in interface io.sphere.sdk.queries.IntegerQuerySortingModel
-
- isGreaterThanOrEqualTo(Long) - Method in interface io.sphere.sdk.queries.LongQueryModel
-
- isGreaterThanOrEqualTo(Long) - Method in interface io.sphere.sdk.queries.LongQuerySortingModel
-
- isGreaterThanOrEqualTo(String) - Method in interface io.sphere.sdk.queries.StringQueryModel
-
- isGreaterThanOrEqualTo(String) - Method in interface io.sphere.sdk.queries.StringQuerySortingModel
-
- isGreaterThanOrEqualTo(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampModel
-
- isGreaterThanOrEqualTo(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampSortingModel
-
- isGreaterThanOrEqualTo(V) - Method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Generates an expression to select all elements with an attribute value greater than or equal to the given value.
- isGreaterThanOrEqualTo(MonetaryAmount) - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- isGreaterThanOrEqualTo(MonetaryAmount) - Method in class io.sphere.sdk.utils.MoneyImpl
-
- isGreaterThanOrEqualToPredicate(V) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isGreaterThanPredicate(V) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isIn(Iterable<String>) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFilterSearchModel
-
Creates filters for a product which needs to be in any of the given categories directly (categoryIds
).
- isIn(List<? extends Referenceable<R>>) - Method in interface io.sphere.sdk.queries.AnyReferenceQueryModel
-
- isIn(Iterable<BigDecimal>) - Method in interface io.sphere.sdk.queries.BigDecimalQueryModel
-
- isIn(Iterable<BigDecimal>) - Method in interface io.sphere.sdk.queries.BigDecimalQuerySortingModel
-
- isIn(Iterable<CountryCode>) - Method in interface io.sphere.sdk.queries.CountryQueryModel
-
- isIn(Iterable<Double>) - Method in interface io.sphere.sdk.queries.DoubleQuerySortingModel
-
- isIn(Iterable<Integer>) - Method in interface io.sphere.sdk.queries.IntegerQueryModel
-
- isIn(Iterable<Integer>) - Method in interface io.sphere.sdk.queries.IntegerQuerySortingModel
-
- isIn(Iterable<V>) - Method in interface io.sphere.sdk.queries.IsInQueryModel
-
- isIn(Iterable<Locale>) - Method in interface io.sphere.sdk.queries.LocaleQueryModel
-
- isIn(Iterable<Long>) - Method in interface io.sphere.sdk.queries.LongQueryModel
-
- isIn(Iterable<Long>) - Method in interface io.sphere.sdk.queries.LongQuerySortingModel
-
- isIn(Iterable<? extends Referenceable<R>>) - Method in interface io.sphere.sdk.queries.ReferenceCollectionQueryModel
-
- isIn(List<? extends Referenceable<R>>) - Method in interface io.sphere.sdk.queries.ReferenceOptionalQueryModel
-
- isIn(List<? extends Referenceable<R>>) - Method in interface io.sphere.sdk.queries.ReferenceQueryModel
-
- isIn(Iterable<E>) - Method in interface io.sphere.sdk.queries.SphereEnumerationOptionalQueryModel
-
- isIn(Iterable<E>) - Method in interface io.sphere.sdk.queries.SphereEnumerationQueryModel
-
- isIn(Iterable<String>) - Method in interface io.sphere.sdk.queries.StringQueryModel
-
- isIn(Iterable<String>) - Method in interface io.sphere.sdk.queries.StringQuerySortingModel
-
- isIn(Iterable<ZonedDateTime>) - Method in interface io.sphere.sdk.queries.TimestampModel
-
- isIn(Iterable<ZonedDateTime>) - Method in interface io.sphere.sdk.queries.TimestampSortingModel
-
- isIn(Iterable<String>) - Method in interface io.sphere.sdk.search.model.FacetedSearchSearchModel
-
Generates an expression to select all elements with attributes matching any of the given values, along with the facet for all terms for this attribute.
- isIn(Iterable<V>) - Method in interface io.sphere.sdk.search.model.FilterSearchModel
-
Generates an expression to select all elements with attributes matching any of the given values.
- isIn(Iterable<String>) - Method in class io.sphere.sdk.search.model.RangeTermFacetedSearchSearchModel
-
Generates an expression to select all elements with attributes matching any of the given values, along with the facet for all terms for this attribute.
- isIn(Iterable<V>) - Method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Generates an expression to select all elements with attributes matching any of the given values.
- isIn(Iterable<V>) - Method in interface io.sphere.sdk.search.model.TermFilterExistsAndMissingSearchModel
-
- isIn(Iterable<V>) - Method in interface io.sphere.sdk.search.model.TermFilterSearchModel
-
- isIn(Iterable<V>) - Method in class io.sphere.sdk.search.model.TermFilterSearchModelImpl
-
Generates an expression to select all elements with attributes matching any of the given values.
- isIncludedInPrice() - Method in interface io.sphere.sdk.taxcategories.ExternalTaxRateDraft
-
- isIncludedInPrice() - Method in interface io.sphere.sdk.taxcategories.TaxRate
-
- isIncludedInPrice() - Method in interface io.sphere.sdk.taxcategories.TaxRateDraft
-
- isIncludedInStatistics() - Method in class io.sphere.sdk.reviews.messages.ReviewRatingSetMessage
-
- isIncludedInStatistics() - Method in interface io.sphere.sdk.reviews.Review
-
Indicates if this review is taken into account in the ratings statistics of the target.
- isInclusive() - Method in class io.sphere.sdk.search.model.Bound
-
Determines whether the endpoint is included from the range or excluded.
- isInIds(List<String>) - Method in interface io.sphere.sdk.queries.AnyReferenceQueryModel
-
- isInIds(List<String>) - Method in interface io.sphere.sdk.queries.ReferenceQueryModel
-
- isInitial() - Method in class io.sphere.sdk.states.commands.updateactions.ChangeInitial
-
- isInitial() - Method in interface io.sphere.sdk.states.State
-
- isInitial() - Method in interface io.sphere.sdk.states.StateDraft
-
- isInPredicate(Iterable<V>) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- IsInQueryModel<T,V> - Interface in io.sphere.sdk.queries
-
- isInSubtree(String) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFilterSearchModel
-
Creates filters for a product which is in a category and its descendants.
- isInSubtreeOrInCategory(Iterable<String>, Iterable<String>) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFilterSearchModel
-
Creates filters for a product which is in certain category trees (categoryIdsSubtree
) or direct categories ().
- isInteger(Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- isIntegerSet(Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- isLast() - Method in interface io.sphere.sdk.queries.PagedResult
-
Checks if it is the last possible page.
- isLessThan(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQueryModel
-
- isLessThan(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQuerySortingModel
-
- isLessThan(Double) - Method in interface io.sphere.sdk.queries.DoubleQuerySortingModel
-
- isLessThan(V) - Method in interface io.sphere.sdk.queries.InequalityQueryModel
-
- isLessThan(Integer) - Method in interface io.sphere.sdk.queries.IntegerQueryModel
-
- isLessThan(Integer) - Method in interface io.sphere.sdk.queries.IntegerQuerySortingModel
-
- isLessThan(Long) - Method in interface io.sphere.sdk.queries.LongQueryModel
-
- isLessThan(Long) - Method in interface io.sphere.sdk.queries.LongQuerySortingModel
-
- isLessThan(String) - Method in interface io.sphere.sdk.queries.StringQueryModel
-
- isLessThan(String) - Method in interface io.sphere.sdk.queries.StringQuerySortingModel
-
- isLessThan(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampModel
-
- isLessThan(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampSortingModel
-
- isLessThan(MonetaryAmount) - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- isLessThan(MonetaryAmount) - Method in class io.sphere.sdk.utils.MoneyImpl
-
- isLessThanOrEqualTo(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQueryModel
-
- isLessThanOrEqualTo(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQuerySortingModel
-
- isLessThanOrEqualTo(Double) - Method in interface io.sphere.sdk.queries.DoubleQuerySortingModel
-
- isLessThanOrEqualTo(V) - Method in interface io.sphere.sdk.queries.InequalityQueryModel
-
- isLessThanOrEqualTo(Integer) - Method in interface io.sphere.sdk.queries.IntegerQueryModel
-
- isLessThanOrEqualTo(Integer) - Method in interface io.sphere.sdk.queries.IntegerQuerySortingModel
-
- isLessThanOrEqualTo(Long) - Method in interface io.sphere.sdk.queries.LongQueryModel
-
- isLessThanOrEqualTo(Long) - Method in interface io.sphere.sdk.queries.LongQuerySortingModel
-
- isLessThanOrEqualTo(String) - Method in interface io.sphere.sdk.queries.StringQueryModel
-
- isLessThanOrEqualTo(String) - Method in interface io.sphere.sdk.queries.StringQuerySortingModel
-
- isLessThanOrEqualTo(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampModel
-
- isLessThanOrEqualTo(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampSortingModel
-
- isLessThanOrEqualTo(V) - Method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Generates an expression to select all elements with an attribute value less than or equal to the given value.
- isLessThanOrEqualTo(MonetaryAmount) - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- isLessThanOrEqualTo(MonetaryAmount) - Method in class io.sphere.sdk.utils.MoneyImpl
-
- isLessThanOrEqualToPredicate(V) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isLessThanPredicate(V) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isLong(Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- isLongSet(Attribute, ProductType) - Method in class io.sphere.sdk.products.attributes.ProductAttributeConverterBase
-
- isMarkingMatchingVariants() - Method in interface io.sphere.sdk.products.search.ProductProjectionSearch
-
- isMatching(Boolean) - Method in class io.sphere.sdk.shippingmethods.CartClassificationBuilder
-
Sets the matching
property of this builder.
- isMatching(Boolean) - Method in class io.sphere.sdk.shippingmethods.CartValueBuilder
-
Sets the matching
property of this builder.
- isMatching() - Method in interface io.sphere.sdk.shippingmethods.ShippingRate
-
- isMatching() - Method in interface io.sphere.sdk.shippingmethods.ShippingRatePriceTier
-
- isMatchingVariant() - Method in interface io.sphere.sdk.products.ProductVariant
-
A flag that indicates whether the variant matches the search criteria used when requesting the list of products or not.
- isMessagesEnabled() - Method in class io.sphere.sdk.projects.commands.updateactions.ChangeMessagesEnabled
-
- isNegative() - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- isNegative() - Method in class io.sphere.sdk.utils.MoneyImpl
-
- isNegativeOrZero() - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- isNegativeOrZero() - Method in class io.sphere.sdk.utils.MoneyImpl
-
- isNot(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQueryModel
-
- isNot(BigDecimal) - Method in interface io.sphere.sdk.queries.BigDecimalQuerySortingModel
-
- isNot(CountryCode) - Method in interface io.sphere.sdk.queries.CountryQueryModel
-
- isNot(Double) - Method in interface io.sphere.sdk.queries.DoubleQuerySortingModel
-
- isNot(Integer) - Method in interface io.sphere.sdk.queries.IntegerQueryModel
-
- isNot(Integer) - Method in interface io.sphere.sdk.queries.IntegerQuerySortingModel
-
- isNot(Locale) - Method in interface io.sphere.sdk.queries.LocaleQueryModel
-
- isNot(Long) - Method in interface io.sphere.sdk.queries.LongQueryModel
-
- isNot(Long) - Method in interface io.sphere.sdk.queries.LongQuerySortingModel
-
- isNot(E) - Method in interface io.sphere.sdk.queries.NotEqualQueryModel
-
- isNot(E) - Method in interface io.sphere.sdk.queries.SphereEnumerationOptionalQueryModel
-
- isNot(E) - Method in interface io.sphere.sdk.queries.SphereEnumerationQueryModel
-
- isNot(String) - Method in interface io.sphere.sdk.queries.StringQueryModel
-
- isNot(String) - Method in interface io.sphere.sdk.queries.StringQuerySortingModel
-
- isNot(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampModel
-
- isNot(ZonedDateTime) - Method in interface io.sphere.sdk.queries.TimestampSortingModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.carts.queries.CustomLineItemCollectionQueryModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.carts.queries.DiscountCodeInfoCollectionQueryModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.carts.queries.LineItemCollectionQueryModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.carts.queries.LineItemLikeCollectionQueryModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.products.queries.PriceCollectionQueryModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.products.queries.PriceTierQueryModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.queries.AddressCollectionQueryModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.queries.CollectionQueryModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.queries.SphereEnumerationCollectionQueryModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.queries.StringCollectionQueryModel
-
- isNotEmpty() - Method in interface io.sphere.sdk.types.queries.FieldDefinitionCollectionQueryModel
-
- isNotEmptyCollectionQueryPredicate() - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isNotIn(Iterable<BigDecimal>) - Method in interface io.sphere.sdk.queries.BigDecimalQueryModel
-
- isNotIn(Iterable<BigDecimal>) - Method in interface io.sphere.sdk.queries.BigDecimalQuerySortingModel
-
- isNotIn(Iterable<Double>) - Method in interface io.sphere.sdk.queries.DoubleQuerySortingModel
-
- isNotIn(Iterable<Integer>) - Method in interface io.sphere.sdk.queries.IntegerQueryModel
-
- isNotIn(Iterable<Integer>) - Method in interface io.sphere.sdk.queries.IntegerQuerySortingModel
-
- isNotIn(Iterable<V>) - Method in interface io.sphere.sdk.queries.IsNotInQueryModel
-
- isNotIn(Iterable<Long>) - Method in interface io.sphere.sdk.queries.LongQueryModel
-
- isNotIn(Iterable<Long>) - Method in interface io.sphere.sdk.queries.LongQuerySortingModel
-
- isNotIn(Iterable<E>) - Method in interface io.sphere.sdk.queries.SphereEnumerationOptionalQueryModel
-
- isNotIn(Iterable<E>) - Method in interface io.sphere.sdk.queries.SphereEnumerationQueryModel
-
- isNotIn(Iterable<String>) - Method in interface io.sphere.sdk.queries.StringQueryModel
-
- isNotIn(Iterable<String>) - Method in interface io.sphere.sdk.queries.StringQuerySortingModel
-
- isNotIn(Iterable<ZonedDateTime>) - Method in interface io.sphere.sdk.queries.TimestampModel
-
- isNotIn(Iterable<ZonedDateTime>) - Method in interface io.sphere.sdk.queries.TimestampSortingModel
-
- isNotInPredicate(Iterable<V>) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- IsNotInQueryModel<T,V> - Interface in io.sphere.sdk.queries
-
- isNotPredicate(V) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isNotPredicate(String) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isNotPresent() - Method in interface io.sphere.sdk.carts.queries.DiscountedLineItemPriceQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.carts.queries.PaymentInfoQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.carts.queries.TaxedPriceOptionalQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.products.queries.DiscountedPriceOptionalQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.products.queries.PriceTierQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.AddressQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.BigDecimalQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.BigDecimalQuerySortingModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.DoubleQuerySortingModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.IntegerQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.IntegerQuerySortingModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.LocalizedStringOptionalQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.LongQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.LongQuerySortingModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.OptionalQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.ReferenceOptionalQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.SphereEnumerationOptionalQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.StringQueryModel
-
- isNotPresent() - Method in interface io.sphere.sdk.queries.StringQuerySortingModel
-
- isNotPresentPredicate() - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isOnStock() - Method in interface io.sphere.sdk.inventory.AvailabilityInfo
-
- isOnStock(Boolean) - Method in class io.sphere.sdk.inventory.AvailabilityInfoBuilder
-
- isOnStock() - Method in class io.sphere.sdk.inventory.AvailabilityInfoBuilder
-
- isOnStock() - Method in interface io.sphere.sdk.products.ProductVariantAvailability
-
- isOnStock() - Method in interface io.sphere.sdk.products.search.ChannelProductVariantAvailabilityFilterSearchModel
-
- isOnStock() - Method in interface io.sphere.sdk.products.search.ProductVariantAvailabilityFilterSearchModel
-
- isOptional() - Method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
- isPositive() - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- isPositive() - Method in class io.sphere.sdk.utils.MoneyImpl
-
- isPositiveOrZero() - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- isPositiveOrZero() - Method in class io.sphere.sdk.utils.MoneyImpl
-
- isPredicate(V) - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isPresent() - Method in interface io.sphere.sdk.carts.queries.DiscountedLineItemPriceQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.carts.queries.PaymentInfoQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.carts.queries.TaxedPriceOptionalQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.products.queries.DiscountedPriceOptionalQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.products.queries.PriceTierQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.AddressQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.BigDecimalQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.BigDecimalQuerySortingModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.DoubleQuerySortingModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.IntegerQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.IntegerQuerySortingModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.LocalizedStringOptionalQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.LongQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.LongQuerySortingModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.OptionalQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.ReferenceOptionalQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.SphereEnumerationOptionalQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.StringQueryModel
-
- isPresent() - Method in interface io.sphere.sdk.queries.StringQuerySortingModel
-
- isPresentPredicate() - Method in class io.sphere.sdk.queries.QueryModelImpl
-
- isPrimitiveOrEnum(TypeName) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- isPrimitiveType(TypeName) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
- isPropertyMethod(ExecutableElement) - Method in class io.sphere.sdk.annotations.processors.models.TypeUtils
-
Returns true iff.
- isPublish() - Method in interface io.sphere.sdk.products.ProductDraft
-
Flag for publishing the product immediately.
- isPublish() - Method in class io.sphere.sdk.products.ProductDraftDsl
-
- isPublished() - Method in interface io.sphere.sdk.products.ProductCatalogData
-
- isPublished() - Method in interface io.sphere.sdk.products.ProductProjection
-
- isPublished() - Method in interface io.sphere.sdk.products.queries.ProductCatalogDataQueryModel
-
- isRequired() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinition
-
Whether the attribute is required to have a value.
- isRequired(boolean) - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- isRequired() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- isRequired() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinitionDraft
-
- isRequired() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftDsl
-
- isRequired() - Method in interface io.sphere.sdk.types.FieldDefinition
-
- isRequiresDiscountCode() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscountDraft
-
- isRequiringDiscountCode() - Method in interface io.sphere.sdk.cartdiscounts.CartDiscount
-
States whether the the discount code can only be used in a connection with a
DiscountCode
.
- isRequiringDiscountCode() - Method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeRequiresDiscountCode
-
- isReturn() - Method in interface io.sphere.sdk.orders.TrackingData
-
- isReturn(boolean) - Method in class io.sphere.sdk.orders.TrackingDataBuilder
-
- isScopedPriceDiscounted() - Method in interface io.sphere.sdk.products.ProductVariant
-
Flag if scoped price is discounted.
- isSearchable() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinition
-
Whether the attribute's values should generally be enabled in product search.
- isSearchable(boolean) - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- isSearchable() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- isSearchable() - Method in interface io.sphere.sdk.products.attributes.AttributeDefinitionDraft
-
- isSearchable() - Method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftDsl
-
- isSearchable() - Method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeIsSearchable
-
- isShipping() - Method in class io.sphere.sdk.orders.errors.PriceChangedError
-
- isStaged() - Method in class io.sphere.sdk.products.commands.updateactions.SetImageLabel
-
- isStaged() - Method in enum io.sphere.sdk.products.ProductProjectionType
-
- isTraceEnabled() - Method in class io.sphere.sdk.utils.SphereInternalLogger
-
- isUpdateProductData() - Method in class io.sphere.sdk.carts.commands.updateactions.Recalculate
-
- isValid(TypeElement) - Method in class io.sphere.sdk.annotations.processors.validators.ResourceDraftValueValidator
-
Validates the given type.
- isValid(TypeElement) - Method in class io.sphere.sdk.annotations.processors.validators.ResourceValueValidator
-
Validates the given type.
- isValid() - Method in interface io.sphere.sdk.carts.ItemShippingDetails
-
Boolean, true if the quantity of the (custom) line item is equal to the sum of the quantities in targets
, false
otherwise.
- isZero() - Method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- isZero() - Method in class io.sphere.sdk.utils.MoneyImpl
-
- items(List<DeliveryItem>) - Method in class io.sphere.sdk.orders.ParcelDraftBuilder
-
Sets the items
property of this builder.
- items(List<ReturnItemDraft>) - Method in class io.sphere.sdk.orders.ReturnInfoDraftBuilder
-
Sets the items
property of this builder.
- itemShippingAddresses() - Method in interface io.sphere.sdk.carts.queries.CartLikeQueryModel
-
- itemShippingAddresses() - Method in class io.sphere.sdk.carts.queries.CartLikeQueryModelImpl
-
- itemShippingAddresses() - Method in interface io.sphere.sdk.carts.queries.CartQueryModel
-
- itemShippingAddresses(List<Address>) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- itemShippingAddresses() - Method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- ItemShippingDetails - Interface in io.sphere.sdk.carts
-
In case multiple shipping addresses are needed for a cart,
ItemShippingDetails
contains the information where
the individual items should be sent to.
- ItemShippingDetailsDraft - Interface in io.sphere.sdk.carts
-
- ItemShippingDetailsDraftBuilder - Class in io.sphere.sdk.carts
-
- ItemShippingDetailsDraftDsl - Class in io.sphere.sdk.carts
-
- ItemShippingTarget - Interface in io.sphere.sdk.carts
-
- ItemShippingTargetBuilder - Class in io.sphere.sdk.carts
-
- ItemState - Interface in io.sphere.sdk.carts
-
- ItemStateCollectionQueryModel<T> - Interface in io.sphere.sdk.carts.queries
-
- ItemStateExpansionModel<T> - Interface in io.sphere.sdk.carts.expansion
-
- ObjectNotFoundError - Class in io.sphere.sdk.models.errors
-
- ObservedDeserializationDuration - Class in io.sphere.sdk.client.metrics
-
Message for the duration of transforming the http response body into a Java object.
- ObservedDuration - Interface in io.sphere.sdk.client.metrics
-
- ObservedSerializationDuration - Class in io.sphere.sdk.client.metrics
-
Contains the amount of time spent to transform the Java request object into a
HttpRequestIntent
object.
- ObservedTotalDuration - Class in io.sphere.sdk.client.metrics
-
- of(ExecutableElement) - Static method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
Creates an instance from the given getter method.
- of(String, String, TypeMirror, String, boolean, boolean) - Static method in class io.sphere.sdk.annotations.processors.models.PropertyGenModel
-
- of(String, String, SphereScope, SphereScope...) - Static method in class io.sphere.sdk.apiclient.ApiClientDraftBuilder
-
- of(String, String, List<SphereScope>) - Static method in class io.sphere.sdk.apiclient.ApiClientDraftBuilder
-
- of(String, String) - Static method in class io.sphere.sdk.apiclient.ApiClientDraftBuilder
-
- of(String, String) - Static method in class io.sphere.sdk.apiclient.ApiClientDraftDsl
-
Creates a new object initialized with the given values.
- of(ApiClientDraft) - Static method in class io.sphere.sdk.apiclient.ApiClientDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(ApiClientDraft) - Static method in interface io.sphere.sdk.apiclient.commands.ApiClientCreateCommand
-
Creates a command object to create a
ApiClient
.
- of(ApiClient) - Static method in interface io.sphere.sdk.apiclient.commands.ApiClientDeleteCommand
-
- of(String) - Static method in interface io.sphere.sdk.apiclient.commands.ApiClientDeleteCommand
-
- of() - Static method in interface io.sphere.sdk.apiclient.expansion.ApiClientExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.apiclient.queries.ApiClientByIdGet
-
- of(Identifiable<ApiClient>) - Static method in interface io.sphere.sdk.apiclient.queries.ApiClientByIdGet
-
- of() - Static method in interface io.sphere.sdk.apiclient.queries.ApiClientQuery
-
- of() - Static method in class io.sphere.sdk.apiclient.queries.ApiClientQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.apiclient.queries.ApiClientQueryModel
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.cartdiscounts.AbsoluteCartDiscountValue
-
- of(List<MonetaryAmount>) - Static method in class io.sphere.sdk.cartdiscounts.AbsoluteCartDiscountValue
-
- of(String, LocalizedString, boolean, String, CartDiscountTarget, CartDiscountValue) - Static method in class io.sphere.sdk.cartdiscounts.CartDiscountDraftBuilder
-
- of(LocalizedString, CartPredicate, CartDiscountValue, CartDiscountTarget, String, boolean) - Static method in class io.sphere.sdk.cartdiscounts.CartDiscountDraftBuilder
-
- of(String) - Static method in interface io.sphere.sdk.cartdiscounts.CartDiscountPredicate
-
Deprecated.
- of(String) - Static method in interface io.sphere.sdk.cartdiscounts.CartPredicate
-
- of(CartDiscountDraft) - Static method in interface io.sphere.sdk.cartdiscounts.commands.CartDiscountCreateCommand
-
- of(Versioned<CartDiscount>) - Static method in interface io.sphere.sdk.cartdiscounts.commands.CartDiscountDeleteCommand
-
- of(Versioned<CartDiscount>, List<? extends UpdateAction<CartDiscount>>) - Static method in interface io.sphere.sdk.cartdiscounts.commands.CartDiscountUpdateCommand
-
Creates a command to update a CartDiscount selected by its ID using several update actions.
- of(Versioned<CartDiscount>, UpdateAction<CartDiscount>, UpdateAction<CartDiscount>...) - Static method in interface io.sphere.sdk.cartdiscounts.commands.CartDiscountUpdateCommand
-
Creates a command to update a CartDiscount selected by its ID using one update action.
- of(CartPredicate) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeCartPredicate
-
- of(String) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeCartPredicate
-
- of(Boolean) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeIsActive
-
Creates a new object initialized with the given values.
- of(LocalizedString) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeName
-
Creates a new object initialized with the given values.
- of(Boolean) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeRequiresDiscountCode
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeSortOrder
-
Creates a new object initialized with the given values.
- of(StackingMode) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeStackingMode
-
Creates a new object initialized with the given values.
- of(CartDiscountTarget) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeTarget
-
Creates a new object initialized with the given values.
- of(CartDiscountValue) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeValue
-
Creates a new object initialized with the given values.
- of(LocalizedString) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetDescription
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- of(ZonedDateTime) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetValidFrom
-
Creates a new object initialized with the given values.
- of(ZonedDateTime, ZonedDateTime) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetValidFromAndUntil
-
Creates a new object initialized with the given values.
- of(ZonedDateTime) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetValidUntil
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.cartdiscounts.CustomLineItemsTarget
-
- of(Referenceable<CartDiscount>, MonetaryAmount) - Static method in interface io.sphere.sdk.cartdiscounts.DiscountedLineItemPortion
-
- of(MonetaryAmount, List<DiscountedLineItemPortion>) - Static method in interface io.sphere.sdk.cartdiscounts.DiscountedLineItemPrice
-
- of(DiscountedLineItemPrice, long) - Static method in interface io.sphere.sdk.cartdiscounts.DiscountedLineItemPriceForQuantity
-
- of() - Static method in interface io.sphere.sdk.cartdiscounts.expansion.CartDiscountExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.cartdiscounts.expansion.CartDiscountExpansionModel
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.cartdiscounts.FixedCartDiscountValue
-
- of(List<MonetaryAmount>) - Static method in class io.sphere.sdk.cartdiscounts.FixedCartDiscountValue
-
- of(ResourceIdentifier<Product>, Integer, ResourceIdentifier<Channel>, ResourceIdentifier<Channel>) - Static method in class io.sphere.sdk.cartdiscounts.GiftLineItemCartDiscountValue
-
- of(String) - Static method in class io.sphere.sdk.cartdiscounts.LineItemsTarget
-
- of(String, Long, Long, SelectionMode) - Static method in class io.sphere.sdk.cartdiscounts.MultiBuyCustomLineItemsTarget
-
- of(String, Long, Long, SelectionMode, Long) - Static method in class io.sphere.sdk.cartdiscounts.MultiBuyCustomLineItemsTarget
-
- of(String, Long, Long, SelectionMode) - Static method in class io.sphere.sdk.cartdiscounts.MultiBuyLineItemsTarget
-
- of(String, Long, Long, SelectionMode, Long) - Static method in class io.sphere.sdk.cartdiscounts.MultiBuyLineItemsTarget
-
- of(String) - Static method in interface io.sphere.sdk.cartdiscounts.queries.CartDiscountByIdGet
-
- of(Identifiable<CartDiscount>) - Static method in interface io.sphere.sdk.cartdiscounts.queries.CartDiscountByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.cartdiscounts.queries.CartDiscountByKeyGet
-
- of() - Static method in interface io.sphere.sdk.cartdiscounts.queries.CartDiscountQuery
-
- of() - Static method in class io.sphere.sdk.cartdiscounts.queries.CartDiscountQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.cartdiscounts.queries.CartDiscountQueryModel
-
- of(Integer) - Static method in class io.sphere.sdk.cartdiscounts.RelativeCartDiscountValue
-
- of() - Static method in class io.sphere.sdk.cartdiscounts.ShippingCostTarget
-
- of(CurrencyUnit) - Static method in interface io.sphere.sdk.carts.CartDraft
-
- of(Integer) - Static method in interface io.sphere.sdk.carts.CartsConfiguration
-
- of(Boolean) - Static method in interface io.sphere.sdk.carts.CartsConfiguration
-
- of(String) - Static method in class io.sphere.sdk.carts.ClassificationShippingRateInputDraftBuilder
-
Creates a new object initialized with the given values.
- of(ClassificationShippingRateInputDraft) - Static method in class io.sphere.sdk.carts.ClassificationShippingRateInputDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in class io.sphere.sdk.carts.ClassificationShippingRateInputDraftDsl
-
Creates a new object initialized with the given values.
- of(ClassificationShippingRateInputDraft) - Static method in class io.sphere.sdk.carts.ClassificationShippingRateInputDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(CartDraft) - Static method in interface io.sphere.sdk.carts.commands.CartCreateCommand
-
Creates a command object to create a
Cart
.
- of(Versioned<Cart>) - Static method in interface io.sphere.sdk.carts.commands.CartDeleteCommand
-
Creates a command object to delete a
Cart
by ID.
- of(Versioned<Cart>, boolean) - Static method in interface io.sphere.sdk.carts.commands.CartDeleteCommand
-
Creates a command object to delete a
Cart
by ID.
- of(String, CartDraft) - Static method in interface io.sphere.sdk.carts.commands.CartInStoreCreateCommand
-
- of(String, Versioned<Cart>) - Static method in interface io.sphere.sdk.carts.commands.CartInStoreDeleteCommand
-
- of(String, Versioned<Cart>, boolean) - Static method in interface io.sphere.sdk.carts.commands.CartInStoreDeleteCommand
-
- of(String, CartReplicationDraft) - Static method in class io.sphere.sdk.carts.commands.CartInStoreReplicationCommand
-
- of(String, Versioned<Cart>, List<? extends UpdateAction<Cart>>) - Static method in interface io.sphere.sdk.carts.commands.CartInStoreUpdateCommand
-
- of(String, Versioned<Cart>, UpdateAction<Cart>, UpdateAction<Cart>...) - Static method in interface io.sphere.sdk.carts.commands.CartInStoreUpdateCommand
-
- of(CartReplicationDraft) - Static method in class io.sphere.sdk.carts.commands.CartReplicationCommand
-
- of(Reference<? extends CartLike>) - Static method in class io.sphere.sdk.carts.commands.CartReplicationDraftBuilder
-
Creates a new object initialized with the given values.
- of(CartReplicationDraft) - Static method in class io.sphere.sdk.carts.commands.CartReplicationDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(Reference<? extends CartLike>) - Static method in class io.sphere.sdk.carts.commands.CartReplicationDraftDsl
-
Creates a new object initialized with the given values.
- of(CartReplicationDraft) - Static method in class io.sphere.sdk.carts.commands.CartReplicationDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(Versioned<Cart>, List<? extends UpdateAction<Cart>>) - Static method in interface io.sphere.sdk.carts.commands.CartUpdateCommand
-
Creates a command to update a Cart selected by its ID using several update actions.
- of(Versioned<Cart>, UpdateAction<Cart>, UpdateAction<Cart>...) - Static method in interface io.sphere.sdk.carts.commands.CartUpdateCommand
-
Creates a command to update a Cart selected by its ID using one update action.
- of(LocalizedString, String, MonetaryAmount, Referenceable<TaxCategory>, long) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- of(LocalizedString, String, MonetaryAmount, Referenceable<TaxCategory>, long, CustomFieldsDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- of(LocalizedString, String, MonetaryAmount, ResourceIdentifier<TaxCategory>, long, CustomFieldsDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- of(CustomLineItemDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddCustomLineItem
-
- of(DiscountCode) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddDiscountCode
-
- of(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddDiscountCode
-
- of(Address) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddItemShippingAddress
-
Creates a new object initialized with the given values.
- of(ProductIdentifiable, int, long) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- of(String, int, long) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- of(LineItemDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddLineItem
-
- of(Referenceable<Payment>) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddPayment
-
- of(Reference<ShoppingList>) - Static method in class io.sphere.sdk.carts.commands.updateactions.AddShoppingList
-
- of(String, List<ItemShippingTarget>) - Static method in class io.sphere.sdk.carts.commands.updateactions.ApplyDeltaToCustomLineItemShippingDetailsTargets
-
Creates a new object initialized with the given values.
- of(String, List<ItemShippingTarget>) - Static method in class io.sphere.sdk.carts.commands.updateactions.ApplyDeltaToLineItemShippingDetailsTargets
-
Creates a new object initialized with the given values.
- of(String, MonetaryAmount) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeCustomLineItemMoney
-
- of(CustomLineItem, MonetaryAmount) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeCustomLineItemMoney
-
- of(String, long) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeCustomLineItemQuantity
-
- of(CustomLineItem, long) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeCustomLineItemQuantity
-
- of(LineItem, long) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeLineItemQuantity
-
- of(String, long) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeLineItemQuantity
-
- of(TaxCalculationMode) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeTaxCalculationMode
-
Creates a new object initialized with the given values.
- of(TaxMode) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeTaxMode
-
- of(RoundingMode) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeTaxRoundingMode
-
- of() - Static method in class io.sphere.sdk.carts.commands.updateactions.FreezeCart
-
- of() - Static method in class io.sphere.sdk.carts.commands.updateactions.Recalculate
-
- of(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveCustomLineItem
-
- of(CustomLineItem) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveCustomLineItem
-
- of(Referenceable<DiscountCode>) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveDiscountCode
-
- of(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveItemShippingAddress
-
Creates a new object initialized with the given values.
- of(String, Long) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveLineItem
-
- of(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveLineItem
-
- of(LineItem, Long) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveLineItem
-
- of(LineItem) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveLineItem
-
- of(Referenceable<Payment>) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemovePayment
-
- of(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetAnonymousId
-
Creates a new object initialized with the given values.
- of(Address) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddress
-
- of(MonetaryAmount, List<TaxPortion>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCartTotalTax
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCartTotalTax
-
- of(CountryCode) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCountry
-
- of(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomerEmail
-
- of(ResourceIdentifiable<CustomerGroup>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomerGroup
-
- of(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomerId
-
- of(String, ItemShippingDetailsDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemShippingDetails
-
Creates a new object initialized with the given values.
- of(String, ExternalTaxAmountDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemTaxAmount
-
- of(String, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemTaxRate
-
- of(String, ShippingRate, ResourceIdentifier<TaxCategory>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomShippingMethod
-
- of(String, ShippingRate, Referenceable<TaxCategory>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomShippingMethod
-
- of(Integer) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeleteDaysAfterLastModification
-
- of(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetKey
-
- of(String, Reference<Channel>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemDistributionChannel
-
- of(LineItem) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemPrice
-
- of(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemPrice
-
- of(LineItem, MonetaryAmount) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemPrice
-
- of(String, MonetaryAmount) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemPrice
-
- of(String, ItemShippingDetailsDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemShippingDetails
-
Creates a new object initialized with the given values.
- of(String, Reference<Channel>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemSupplyChannel
-
- of(String, ExternalTaxAmountDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemTaxAmount
-
- of(String, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemTaxRate
-
- of(String, ExternalLineItemTotalPrice) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemTotalPrice
-
- of(Locale) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLocale
-
- of(Address) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddress
-
- of(ResourceIdentifier<ShippingMethod>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingMethod
-
- of(ExternalTaxAmountDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingMethodTaxAmount
-
- of(ExternalTaxRateDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingMethodTaxRate
-
- of(ShippingRateInputDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingRateInput
-
Creates a new object initialized with the given values.
- of() - Static method in class io.sphere.sdk.carts.commands.updateactions.UnfreezeCart
-
- of(Address) - Static method in class io.sphere.sdk.carts.commands.updateactions.UpdateItemShippingAddress
-
Creates a new object initialized with the given values.
- of(LocalizedString, String, MonetaryAmount, Referenceable<TaxCategory>, long) - Static method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
Creates a draft having a standard tax category and no custom fields.
- of(LocalizedString, String, MonetaryAmount, Referenceable<TaxCategory>, long, CustomFieldsDraft) - Static method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
Creates a draft having a standard tax category and custom fields.
- of() - Static method in interface io.sphere.sdk.carts.expansion.CartExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.carts.expansion.CartExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.carts.expansion.DiscountedLineItemPriceExpansionModel
-
- of(MonetaryAmount, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.carts.ExternalTaxAmountDraftBuilder
-
Creates a new object initialized with the given values.
- of(ExternalTaxAmountDraft) - Static method in class io.sphere.sdk.carts.ExternalTaxAmountDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(MonetaryAmount, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.carts.ExternalTaxAmountDraftDsl
-
Creates a new object initialized with the given values.
- of(ExternalTaxAmountDraft) - Static method in class io.sphere.sdk.carts.ExternalTaxAmountDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(List<ItemShippingTarget>) - Static method in class io.sphere.sdk.carts.ItemShippingDetailsDraftBuilder
-
Creates a new object initialized with the given values.
- of(ItemShippingDetailsDraft) - Static method in class io.sphere.sdk.carts.ItemShippingDetailsDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(List<ItemShippingTarget>) - Static method in class io.sphere.sdk.carts.ItemShippingDetailsDraftDsl
-
Creates a new object initialized with the given values.
- of(ItemShippingDetailsDraft) - Static method in class io.sphere.sdk.carts.ItemShippingDetailsDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String, Long) - Static method in class io.sphere.sdk.carts.ItemShippingTargetBuilder
-
Creates a new object initialized with the given values.
- of(ItemShippingTarget) - Static method in class io.sphere.sdk.carts.ItemShippingTargetBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(Referenceable<State>, long) - Static method in interface io.sphere.sdk.carts.ItemState
-
- of(ProductIdentifiable, Integer, long) - Static method in interface io.sphere.sdk.carts.LineItemDraft
-
- of(String, Integer, long) - Static method in interface io.sphere.sdk.carts.LineItemDraft
-
- of(List<Reference<Payment>>) - Static method in interface io.sphere.sdk.carts.PaymentInfo
-
- of(Identifiable<Customer>) - Static method in interface io.sphere.sdk.carts.queries.CartByCustomerIdGet
-
- of(String) - Static method in interface io.sphere.sdk.carts.queries.CartByCustomerIdGet
-
- of(String) - Static method in interface io.sphere.sdk.carts.queries.CartByIdGet
-
- of(Identifiable<Cart>) - Static method in interface io.sphere.sdk.carts.queries.CartByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.carts.queries.CartByKeyGet
-
- of(String, String) - Static method in interface io.sphere.sdk.carts.queries.CartInStoreByCustomerIdGet
-
- of(String, String) - Static method in interface io.sphere.sdk.carts.queries.CartInStoreByIdGet
-
- of(String, String) - Static method in interface io.sphere.sdk.carts.queries.CartInStoreByKeyGet
-
- of(String) - Static method in interface io.sphere.sdk.carts.queries.CartInStoreQuery
-
- of(String) - Static method in class io.sphere.sdk.carts.queries.CartInStoreQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.carts.queries.CartQuery
-
- of() - Static method in class io.sphere.sdk.carts.queries.CartQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.carts.queries.CartQueryModel
-
- of(Long) - Static method in class io.sphere.sdk.carts.ScoreShippingRateInputDraftBuilder
-
Creates a new object initialized with the given values.
- of(ScoreShippingRateInputDraft) - Static method in class io.sphere.sdk.carts.ScoreShippingRateInputDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(Long) - Static method in class io.sphere.sdk.carts.ScoreShippingRateInputDraftDsl
-
Creates a new object initialized with the given values.
- of(ScoreShippingRateInputDraft) - Static method in class io.sphere.sdk.carts.ScoreShippingRateInputDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(Integer) - Static method in interface io.sphere.sdk.carts.ShoppingListsConfiguration
-
- of(MonetaryAmount, MonetaryAmount, List<TaxPortion>) - Static method in interface io.sphere.sdk.carts.TaxedPrice
-
- of(double, MonetaryAmount) - Static method in interface io.sphere.sdk.carts.TaxPortion
-
- of(double, MonetaryAmount, String) - Static method in interface io.sphere.sdk.carts.TaxPortion
-
- of(LocalizedString, LocalizedString) - Static method in class io.sphere.sdk.categories.CategoryDraftDsl
-
Creates a new object initialized with the given values.
- of(CategoryDraft) - Static method in class io.sphere.sdk.categories.CategoryDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(List<Category>) - Static method in interface io.sphere.sdk.categories.CategoryTree
-
Creates a category tree from a flat list of categories.
- of(CategoryDraft) - Static method in interface io.sphere.sdk.categories.commands.CategoryCreateCommand
-
Creates a command object to create a
Category
.
- of(Versioned<Category>) - Static method in interface io.sphere.sdk.categories.commands.CategoryDeleteCommand
-
Creates a command object to delete a
Category
by ID.
- of(Versioned<Category>, List<? extends UpdateAction<Category>>) - Static method in interface io.sphere.sdk.categories.commands.CategoryUpdateCommand
-
Creates a command to update a Category selected by its ID using several update actions.
- of(Versioned<Category>, UpdateAction<Category>, UpdateAction<Category>...) - Static method in interface io.sphere.sdk.categories.commands.CategoryUpdateCommand
-
Creates a command to update a Category selected by its ID using one update action.
- of(AssetDraft) - Static method in class io.sphere.sdk.categories.commands.updateactions.AddAsset
-
Creates a new object initialized with the given values.
- of(AssetDraft, Integer) - Static method in class io.sphere.sdk.categories.commands.updateactions.AddAsset
-
Creates a new object initialized with the given values.
- of(String, LocalizedString) - Static method in class io.sphere.sdk.categories.commands.updateactions.ChangeAssetName
-
Creates a new object initialized with the given values.
- of(List<String>) - Static method in class io.sphere.sdk.categories.commands.updateactions.ChangeAssetOrder
-
- of(LocalizedString) - Static method in class io.sphere.sdk.categories.commands.updateactions.ChangeName
-
- of(String) - Static method in class io.sphere.sdk.categories.commands.updateactions.ChangeOrderHint
-
- of(Referenceable<Category>) - Static method in class io.sphere.sdk.categories.commands.updateactions.ChangeParent
-
- of(ResourceIdentifier<Category>) - Static method in class io.sphere.sdk.categories.commands.updateactions.ChangeParent
-
- of(LocalizedString) - Static method in class io.sphere.sdk.categories.commands.updateactions.ChangeSlug
-
- of(String) - Static method in class io.sphere.sdk.categories.commands.updateactions.RemoveAsset
-
Creates a new object initialized with the given values.
- of(String, String, Object) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetCustomField
-
- of(String, CustomFieldsDraft) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetCustomType
-
- of(String, LocalizedString) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetDescription
-
Creates a new object initialized with the given values.
- of(String, String) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetKey
-
Creates a new object initialized with the given values.
- of(String, List<AssetSource>) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetSources
-
- of(String, Set<String>) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetTags
-
- of(LocalizedString) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetDescription
-
- of(String) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetExternalId
-
- of(String) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetKey
-
- of(LocalizedString) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetMetaDescription
-
- of(LocalizedString) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetMetaKeywords
-
- of(LocalizedString) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetMetaTitle
-
- of() - Static method in interface io.sphere.sdk.categories.expansion.CategoryExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.categories.expansion.CategoryExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.categories.queries.CategoryByIdGet
-
- of(Identifiable<Category>) - Static method in interface io.sphere.sdk.categories.queries.CategoryByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.categories.queries.CategoryByKeyGet
-
- of() - Static method in interface io.sphere.sdk.categories.queries.CategoryQuery
-
- of() - Static method in class io.sphere.sdk.categories.queries.CategoryQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.categories.queries.CategoryQueryModel
-
- of(String) - Static method in interface io.sphere.sdk.channels.ChannelDraft
-
- of(String) - Static method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
Creates a new object initialized with the given values.
- of(ChannelDraft) - Static method in class io.sphere.sdk.channels.ChannelDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(ChannelDraft) - Static method in interface io.sphere.sdk.channels.commands.ChannelCreateCommand
-
Creates a command object to create a
Channel
.
- of(Versioned<Channel>) - Static method in interface io.sphere.sdk.channels.commands.ChannelDeleteCommand
-
Creates a command object to delete a
Channel
by ID.
- of(Versioned<Channel>, List<? extends UpdateAction<Channel>>) - Static method in interface io.sphere.sdk.channels.commands.ChannelUpdateCommand
-
Creates a command to update a Channel selected by its ID using several update actions.
- of(Versioned<Channel>, UpdateAction<Channel>, UpdateAction<Channel>...) - Static method in interface io.sphere.sdk.channels.commands.ChannelUpdateCommand
-
Creates a command to update a Channel selected by its ID using one update action.
- of(Set<ChannelRole>) - Static method in class io.sphere.sdk.channels.commands.updateactions.AddRoles
-
- of(LocalizedString) - Static method in class io.sphere.sdk.channels.commands.updateactions.ChangeDescription
-
- of(String) - Static method in class io.sphere.sdk.channels.commands.updateactions.ChangeKey
-
- of(LocalizedString) - Static method in class io.sphere.sdk.channels.commands.updateactions.ChangeName
-
- of(Set<ChannelRole>) - Static method in class io.sphere.sdk.channels.commands.updateactions.RemoveRoles
-
- of(Address) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetAddress
-
- of(GeoJSON) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetGeoLocation
-
- of(Set<ChannelRole>) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetRoles
-
- of() - Static method in interface io.sphere.sdk.channels.expansion.ChannelExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.channels.expansion.ChannelExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.channels.queries.ChannelByIdGet
-
- of(Identifiable<Channel>) - Static method in interface io.sphere.sdk.channels.queries.ChannelByIdGet
-
- of() - Static method in interface io.sphere.sdk.channels.queries.ChannelQuery
-
- of() - Static method in class io.sphere.sdk.channels.queries.ChannelQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.channels.queries.ChannelQueryModel
-
- of(SphereClient, long, TimeUnit) - Static method in interface io.sphere.sdk.client.BlockingSphereClient
-
Creates a blocking client with a configured default timeout for blocking requests.
- of(SphereClient, Duration) - Static method in interface io.sphere.sdk.client.BlockingSphereClient
-
Creates a blocking client with a configured default timeout for blocking requests.
- of(SphereRequest<T>, String) - Static method in class io.sphere.sdk.client.correlationid.CorrelationIdRequestDecorator
-
- of(String) - Static method in interface io.sphere.sdk.client.CorrelationIdGenerator
-
Creates a new default correlation id generator for the given project key.
- of(SphereClient) - Static method in class io.sphere.sdk.client.DeprecationExceptionSphereClientDecorator
-
- of(HttpMethod, String) - Static method in class io.sphere.sdk.client.HttpRequestIntent
-
- of(HttpMethod, String, HttpHeaders, HttpRequestBody) - Static method in class io.sphere.sdk.client.HttpRequestIntent
-
- of(HttpMethod, String, String) - Static method in class io.sphere.sdk.client.HttpRequestIntent
-
- of(HttpMethod, String, File, String) - Static method in class io.sphere.sdk.client.HttpRequestIntent
-
- of(SphereRequest<T>) - Static method in class io.sphere.sdk.client.JavaAndHttpResponseSphereRequest
-
- of(SphereRequest<T>) - Static method in class io.sphere.sdk.client.JavaAndJsonSphereRequest
-
- of(TypeReference<T>, String) - Static method in class io.sphere.sdk.client.JsonEndpoint
-
- of(HttpRequestIntent) - Static method in class io.sphere.sdk.client.JsonNodeSphereRequest
-
- of(HttpMethod, String) - Static method in class io.sphere.sdk.client.JsonNodeSphereRequest
-
- of(SphereRequest<T>) - Static method in class io.sphere.sdk.client.JsonNodeSphereRequest
-
- of(HttpMethod, String, JsonNode) - Static method in class io.sphere.sdk.client.JsonNodeSphereRequest
-
- of(long, String, SphereRequest<?>, String) - Static method in class io.sphere.sdk.client.metrics.ObservedDeserializationDuration
-
- of(long, String, SphereRequest<?>, String, HttpResponse, Object) - Static method in class io.sphere.sdk.client.metrics.ObservedDeserializationDuration
-
- of(long, String, SphereRequest<?>) - Static method in class io.sphere.sdk.client.metrics.ObservedSerializationDuration
-
- of(long, String, SphereRequest<?>, String) - Static method in class io.sphere.sdk.client.metrics.ObservedTotalDuration
-
- of(long, String, SphereRequest<?>, String, Object, Throwable) - Static method in class io.sphere.sdk.client.metrics.ObservedTotalDuration
-
- of(SphereClient) - Static method in class io.sphere.sdk.client.metrics.SimpleMetricsSphereClient
-
- of(SphereClient, int, boolean) - Static method in class io.sphere.sdk.client.QueueSphereClientDecorator
-
- of(SphereClient, int) - Static method in class io.sphere.sdk.client.QueueSphereClientDecorator
-
- of(SphereClientConfig, HttpClient) - Static method in class io.sphere.sdk.client.retry.RetryableSphereClientBuilder
-
- of(SphereClient, List<RetryRule>) - Static method in interface io.sphere.sdk.client.RetrySphereClientDecorator
-
- of(String) - Static method in interface io.sphere.sdk.client.SphereApiConfig
-
- of(String, String) - Static method in interface io.sphere.sdk.client.SphereApiConfig
-
- of(String, String, CorrelationIdGenerator) - Static method in interface io.sphere.sdk.client.SphereApiConfig
-
- of(String, String, String) - Static method in interface io.sphere.sdk.client.SphereAuthConfig
-
- of(String, String, String, String) - Static method in interface io.sphere.sdk.client.SphereAuthConfig
-
- of(SphereApiConfig, HttpClient, SphereAccessTokenSupplier) - Static method in interface io.sphere.sdk.client.SphereClient
-
Raw client creation.
- of(SphereApiConfig, HttpClient, SphereAccessTokenSupplier, List<SolutionInfo>) - Static method in interface io.sphere.sdk.client.SphereClient
-
Raw client creation.
- of(String, String, String) - Static method in class io.sphere.sdk.client.SphereClientConfig
-
- of(String, String, String, String, String) - Static method in class io.sphere.sdk.client.SphereClientConfig
-
- of(String, String, String, String, String, CorrelationIdGenerator) - Static method in class io.sphere.sdk.client.SphereClientConfig
-
- of(String, String, String, String, String, List<String>) - Static method in class io.sphere.sdk.client.SphereClientConfig
-
- of(Supplier<HttpClient>) - Static method in interface io.sphere.sdk.client.SphereClientFactory
-
- of() - Static method in interface io.sphere.sdk.client.SphereClientFactory
-
- of(String) - Static method in class io.sphere.sdk.client.SphereProjectScope
-
- of(SphereClient, long, TimeUnit) - Static method in class io.sphere.sdk.client.TimeoutSphereClientDecorator
-
- of(SphereClient, Duration) - Static method in class io.sphere.sdk.client.TimeoutSphereClientDecorator
-
- of(String, String, Long) - Static method in interface io.sphere.sdk.client.Tokens
-
- of(SphereAuthConfig, HttpClient, boolean) - Static method in interface io.sphere.sdk.client.TokensSupplier
-
- of(SphereAuthConfig, HttpClient, boolean, List<SolutionInfo>) - Static method in interface io.sphere.sdk.client.TokensSupplier
-
- of(CustomerGroupDraft) - Static method in interface io.sphere.sdk.customergroups.commands.CustomerGroupCreateCommand
-
- of(String) - Static method in interface io.sphere.sdk.customergroups.commands.CustomerGroupCreateCommand
-
- of(Versioned<CustomerGroup>) - Static method in interface io.sphere.sdk.customergroups.commands.CustomerGroupDeleteCommand
-
- of(Versioned<CustomerGroup>, List<? extends UpdateAction<CustomerGroup>>) - Static method in interface io.sphere.sdk.customergroups.commands.CustomerGroupUpdateCommand
-
Creates a command to update a CustomerGroup selected by its ID using several update actions.
- of(Versioned<CustomerGroup>, UpdateAction<CustomerGroup>, UpdateAction<CustomerGroup>...) - Static method in interface io.sphere.sdk.customergroups.commands.CustomerGroupUpdateCommand
-
Creates a command to update a CustomerGroup selected by its ID using one update action.
- of(String) - Static method in class io.sphere.sdk.customergroups.commands.updateactions.ChangeName
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.customergroups.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- of(String) - Static method in interface io.sphere.sdk.customergroups.CustomerGroupDraft
-
- of(String, String) - Static method in interface io.sphere.sdk.customergroups.CustomerGroupDraft
-
- of(String) - Static method in class io.sphere.sdk.customergroups.CustomerGroupDraftBuilder
-
Creates a new object initialized with the given values.
- of(CustomerGroupDraft) - Static method in class io.sphere.sdk.customergroups.CustomerGroupDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in class io.sphere.sdk.customergroups.CustomerGroupDraftDsl
-
Creates a new object initialized with the given values.
- of(CustomerGroupDraft) - Static method in class io.sphere.sdk.customergroups.CustomerGroupDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of() - Static method in interface io.sphere.sdk.customergroups.expansion.CustomerGroupExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.customergroups.expansion.CustomerGroupExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.customergroups.queries.CustomerGroupByIdGet
-
- of(Identifiable<CustomerGroup>) - Static method in interface io.sphere.sdk.customergroups.queries.CustomerGroupByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.customergroups.queries.CustomerGroupByKeyGet
-
- of() - Static method in interface io.sphere.sdk.customergroups.queries.CustomerGroupQuery
-
- of() - Static method in class io.sphere.sdk.customergroups.queries.CustomerGroupQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.customergroups.queries.CustomerGroupQueryModel
-
- of(Versioned<Customer>, String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerChangePasswordCommand
-
- of(CustomerDraft) - Static method in interface io.sphere.sdk.customers.commands.CustomerCreateCommand
-
- of(Identifiable<Customer>, Integer) - Static method in class io.sphere.sdk.customers.commands.CustomerCreateEmailTokenCommand
-
Creates a command object to create a token to verify a customer's email.
- of(String) - Static method in class io.sphere.sdk.customers.commands.CustomerCreatePasswordTokenCommand
-
- of(String, Long) - Static method in class io.sphere.sdk.customers.commands.CustomerCreatePasswordTokenCommand
-
- of(Versioned<Customer>) - Static method in interface io.sphere.sdk.customers.commands.CustomerDeleteCommand
-
Creates a command object to delete a
Customer
by ID.
- of(Versioned<Customer>, boolean) - Static method in interface io.sphere.sdk.customers.commands.CustomerDeleteCommand
-
Creates a command object to delete a
Customer
by ID.
- of(Versioned<Customer>, String, String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerInStoreChangePasswordCommand
-
- of(String, CustomerDraft) - Static method in interface io.sphere.sdk.customers.commands.CustomerInStoreCreateCommand
-
- of(String, Identifiable<Customer>, Integer) - Static method in class io.sphere.sdk.customers.commands.CustomerInStoreCreateEmailTokenCommand
-
Creates a command object to create a token to verify a customer's email.
- of(String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerInStoreCreatePasswordTokenCommand
-
- of(String, String, Long) - Static method in class io.sphere.sdk.customers.commands.CustomerInStoreCreatePasswordTokenCommand
-
- of(String, Versioned<Customer>) - Static method in interface io.sphere.sdk.customers.commands.CustomerInStoreDeleteCommand
-
- of(String, Versioned<Customer>, boolean) - Static method in interface io.sphere.sdk.customers.commands.CustomerInStoreDeleteCommand
-
- of(String, String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerInStoreSignInCommand
-
- of(String, String, String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerInStoreSignInCommand
-
- of(String, String, String, ResourceIdentifier<Cart>) - Static method in class io.sphere.sdk.customers.commands.CustomerInStoreSignInCommand
-
- of(Versioned<Customer>, String, List<? extends UpdateAction<Customer>>) - Static method in interface io.sphere.sdk.customers.commands.CustomerInStoreUpdateCommand
-
- of(Versioned<Customer>, String, UpdateAction<Customer>, UpdateAction<Customer>...) - Static method in interface io.sphere.sdk.customers.commands.CustomerInStoreUpdateCommand
-
- of(Versioned<Customer>, CustomerToken, String) - Static method in class io.sphere.sdk.customers.commands.CustomerPasswordResetCommand
-
- of(Versioned<Customer>, String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerPasswordResetCommand
-
- of(String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerSignInCommand
-
- of(String, String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerSignInCommand
-
- of(String, String, ResourceIdentifier<Cart>) - Static method in class io.sphere.sdk.customers.commands.CustomerSignInCommand
-
- of(Versioned<Customer>, List<? extends UpdateAction<Customer>>) - Static method in interface io.sphere.sdk.customers.commands.CustomerUpdateCommand
-
Creates a command to update a Customer selected by its ID using several update actions.
- of(Versioned<Customer>, UpdateAction<Customer>, UpdateAction<Customer>...) - Static method in interface io.sphere.sdk.customers.commands.CustomerUpdateCommand
-
Creates a command to update a Customer selected by its ID using one update action.
- of(Versioned<Customer>, String) - Static method in class io.sphere.sdk.customers.commands.CustomerVerifyEmailCommand
-
- of(Versioned<Customer>, CustomerToken) - Static method in class io.sphere.sdk.customers.commands.CustomerVerifyEmailCommand
-
- of(Address) - Static method in class io.sphere.sdk.customers.commands.updateactions.AddAddress
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.AddBillingAddressId
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.AddShippingAddressId
-
- of(ResourceIdentifier<Store>) - Static method in class io.sphere.sdk.customers.commands.updateactions.AddStore
-
- of(String, Address) - Static method in class io.sphere.sdk.customers.commands.updateactions.ChangeAddress
-
- of(Address, String) - Static method in class io.sphere.sdk.customers.commands.updateactions.ChangeAddress
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.ChangeEmail
-
Creates a new update action from the given parameters.
- of(CustomerName) - Static method in class io.sphere.sdk.customers.commands.updateactions.ChangeName
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.RemoveAddress
-
- of(Address) - Static method in class io.sphere.sdk.customers.commands.updateactions.RemoveAddress
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.RemoveBillingAddressId
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.RemoveShippingAddressId
-
- of(ResourceIdentifier<Store>) - Static method in class io.sphere.sdk.customers.commands.updateactions.RemoveStore
-
- of(AuthenticationMode, String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetAuthenticationMode
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCompanyName
-
Creates a new update action from the given parameters.
- of(ResourceIdentifiable<CustomerGroup>) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomerGroup
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomerNumber
-
Creates a new update action from the given parameters.
- of(LocalDate) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetDateOfBirth
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetDefaultBillingAddress
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetDefaultShippingAddress
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetExternalId
-
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetFirstName
-
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetKey
-
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetLastName
-
Creates a new update action from the given parameters.
- of(Locale) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetLocale
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetMiddleName
-
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetSalutation
-
Creates a new update action from the given parameters.
- of(List<ResourceIdentifier<Store>>) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetStores
-
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetTitle
-
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetVatId
-
Creates a new update action from the given parameters.
- of(CustomerName, String, String) - Static method in class io.sphere.sdk.customers.CustomerDraftBuilder
-
- of(CustomerName, String, String) - Static method in class io.sphere.sdk.customers.CustomerDraftDsl
-
- of(String, String, String, String) - Static method in class io.sphere.sdk.customers.CustomerName
-
- of(String) - Static method in class io.sphere.sdk.customers.errors.CustomerInvalidCredentials
-
- of(String) - Static method in class io.sphere.sdk.customers.errors.CustomerInvalidCurrentPassword
-
- of(String) - Static method in class io.sphere.sdk.customers.errors.CustomerMissingTaxRateForCountry
-
- of(String) - Static method in class io.sphere.sdk.customers.errors.CustomerWeakPassword
-
- of() - Static method in interface io.sphere.sdk.customers.expansion.CustomerExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.customers.expansion.CustomerExpansionModel
-
- of() - Static method in interface io.sphere.sdk.customers.expansion.CustomerSignInResultExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.customers.queries.CustomerByEmailTokenGet
-
- of(CustomerToken) - Static method in interface io.sphere.sdk.customers.queries.CustomerByEmailTokenGet
-
- of(String) - Static method in interface io.sphere.sdk.customers.queries.CustomerByIdGet
-
- of(Identifiable<Customer>) - Static method in interface io.sphere.sdk.customers.queries.CustomerByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.customers.queries.CustomerByKeyGet
-
- of(String) - Static method in interface io.sphere.sdk.customers.queries.CustomerByPasswordTokenGet
-
- of(CustomerToken) - Static method in interface io.sphere.sdk.customers.queries.CustomerByPasswordTokenGet
-
- of(String, String) - Static method in interface io.sphere.sdk.customers.queries.CustomerInStoreByEmailTokenGet
-
- of(String, CustomerToken) - Static method in interface io.sphere.sdk.customers.queries.CustomerInStoreByEmailTokenGet
-
- of(String, String) - Static method in interface io.sphere.sdk.customers.queries.CustomerInStoreByIdGet
-
- of(String, String) - Static method in interface io.sphere.sdk.customers.queries.CustomerInStoreByKeyGet
-
- of(String, String) - Static method in interface io.sphere.sdk.customers.queries.CustomerInStoreByPasswordTokenGet
-
- of(String, CustomerToken) - Static method in interface io.sphere.sdk.customers.queries.CustomerInStoreByPasswordTokenGet
-
- of(String) - Static method in interface io.sphere.sdk.customers.queries.CustomerInStoreQuery
-
- of(String) - Static method in class io.sphere.sdk.customers.queries.CustomerInStoreQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.customers.queries.CustomerQuery
-
- of() - Static method in class io.sphere.sdk.customers.queries.CustomerQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.customers.queries.CustomerQueryModel
-
- of(CustomObject<T>, TypeReference<T>) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in valueTypeReference
specified value type.
- of(CustomObject<T>, Class<T>) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in valueTypeReference
specified value type.
- of(String, String, TypeReference<T>) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in valueTypeReference
specified value type.
- of(String, String, Class<T>) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in valueTypeReference
specified value type.
- of(String, Long, TypeReference<T>) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with the in valueTypeReference
specified value type.
- of(String, Long, Class<T>) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with the in valueClass
specified value type.
- of(CustomObject<T>, TypeReference<T>, boolean) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in valueTypeReference
specified value type.
- of(CustomObject<T>, Class<T>, boolean) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in valueTypeReference
specified value type.
- of(String, String, TypeReference<T>, boolean) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in valueTypeReference
specified value type.
- of(String, String, Class<T>, boolean) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with the in valueTypeReference
specified value type.
- of(String, Long, TypeReference<T>, boolean) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with the in valueTypeReference
specified value type.
- of(String, Long, Class<T>, boolean) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with the in valueClass
specified value type.
- of(CustomObjectDraft<T>) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectUpsertCommand
-
- of() - Static method in interface io.sphere.sdk.customobjects.expansion.CustomObjectExpansionModel
-
- of(String, Class<T>) - Static method in interface io.sphere.sdk.customobjects.queries.CustomObjectByIdGet
-
Creates an object to fetch a custom object by id with POJO mapping.
- of(String, TypeReference<T>) - Static method in interface io.sphere.sdk.customobjects.queries.CustomObjectByIdGet
-
Creates an object to fetch a custom object by the container and key with POJO mapping.
- of(String, String, Class<T>) - Static method in interface io.sphere.sdk.customobjects.queries.CustomObjectByKeyGet
-
Creates an object to fetch a custom object by the container and key with POJO mapping.
- of(String, String, TypeReference<T>) - Static method in interface io.sphere.sdk.customobjects.queries.CustomObjectByKeyGet
-
Creates an object to fetch a custom object by the container and key with POJO mapping.
- of(TypeReference<T>) - Static method in interface io.sphere.sdk.customobjects.queries.CustomObjectQuery
-
Query object for custom objects where the result value is a POJO.
- of(Class<T>) - Static method in interface io.sphere.sdk.customobjects.queries.CustomObjectQuery
-
Query object for custom objects where the result value is a POJO.
- of(TypeReference<T>) - Static method in class io.sphere.sdk.customobjects.queries.CustomObjectQueryBuilder
-
- of(Class<T>) - Static method in class io.sphere.sdk.customobjects.queries.CustomObjectQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.customobjects.queries.CustomObjectQueryModel
-
- of(DiscountCodeDraft) - Static method in interface io.sphere.sdk.discountcodes.commands.DiscountCodeCreateCommand
-
- of(Versioned<DiscountCode>) - Static method in interface io.sphere.sdk.discountcodes.commands.DiscountCodeDeleteCommand
-
- of(Versioned<DiscountCode>, boolean) - Static method in interface io.sphere.sdk.discountcodes.commands.DiscountCodeDeleteCommand
-
- of(Versioned<DiscountCode>, List<? extends UpdateAction<DiscountCode>>) - Static method in interface io.sphere.sdk.discountcodes.commands.DiscountCodeUpdateCommand
-
Creates a command to update a DiscountCode selected by its ID using several update actions.
- of(Versioned<DiscountCode>, UpdateAction<DiscountCode>, UpdateAction<DiscountCode>...) - Static method in interface io.sphere.sdk.discountcodes.commands.DiscountCodeUpdateCommand
-
Creates a command to update a DiscountCode selected by its ID using one update action.
- of(Referenceable<CartDiscount>) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.ChangeCartDiscounts
-
- of(List<Reference<CartDiscount>>) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.ChangeCartDiscounts
-
- of(List<String>) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.ChangeGroups
-
Creates a new object initialized with the given values.
- of(CartPredicate) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetCartPredicate
-
- of(LocalizedString) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetDescription
-
- of(Long) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetMaxApplications
-
- of(Long) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetMaxApplicationsPerCustomer
-
- of(LocalizedString) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetName
-
- of(ZonedDateTime) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetValidFrom
-
Creates a new object initialized with the given values.
- of(ZonedDateTime, ZonedDateTime) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetValidFromAndUntil
-
Creates a new object initialized with the given values.
- of(ZonedDateTime) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetValidUntil
-
Creates a new object initialized with the given values.
- of(String, Referenceable<CartDiscount>) - Static method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- of(String, List<Reference<CartDiscount>>) - Static method in interface io.sphere.sdk.discountcodes.DiscountCodeDraft
-
- of(String, Referenceable<CartDiscount>) - Static method in class io.sphere.sdk.discountcodes.DiscountCodeDraftBuilder
-
- of(String, Referenceable<CartDiscount>) - Static method in class io.sphere.sdk.discountcodes.DiscountCodeDraftDsl
-
- of(Referenceable<DiscountCode>, DiscountCodeState) - Static method in interface io.sphere.sdk.discountcodes.DiscountCodeInfo
-
- of() - Static method in interface io.sphere.sdk.discountcodes.expansion.DiscountCodeExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.discountcodes.expansion.DiscountCodeExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.discountcodes.queries.DiscountCodeByIdGet
-
- of(Identifiable<DiscountCode>) - Static method in interface io.sphere.sdk.discountcodes.queries.DiscountCodeByIdGet
-
- of() - Static method in interface io.sphere.sdk.discountcodes.queries.DiscountCodeQuery
-
- of() - Static method in class io.sphere.sdk.discountcodes.queries.DiscountCodeQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.discountcodes.queries.DiscountCodeQueryModel
-
- of(String) - Static method in interface io.sphere.sdk.expansion.ExpansionPath
-
- of(String) - Static method in class io.sphere.sdk.extensions.AuthorizationHeaderAuthenticationBuilder
-
Creates a new object initialized with the given values.
- of(AuthorizationHeaderAuthentication) - Static method in class io.sphere.sdk.extensions.AuthorizationHeaderAuthenticationBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String, AwsCredentials) - Static method in class io.sphere.sdk.extensions.AWSLambdaDestinationBuilder
-
Creates a new object initialized with the given values.
- of(AWSLambdaDestination) - Static method in class io.sphere.sdk.extensions.AWSLambdaDestinationBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in class io.sphere.sdk.extensions.AzureFunctionsAuthenticationBuilder
-
Creates a new object initialized with the given values.
- of(AzureFunctionsAuthentication) - Static method in class io.sphere.sdk.extensions.AzureFunctionsAuthenticationBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(ExtensionDraft) - Static method in interface io.sphere.sdk.extensions.commands.ExtensionCreateCommand
-
Creates a command object to create a
Extension
.
- of(Versioned<Extension>) - Static method in interface io.sphere.sdk.extensions.commands.ExtensionDeleteCommand
-
Creates a command object to delete a
Extension
by ID.
- of(Versioned<Extension>, List<? extends UpdateAction<Extension>>) - Static method in interface io.sphere.sdk.extensions.commands.ExtensionUpdateCommand
-
Creates a command to update a Extension selected by its ID using several update actions.
- of(Versioned<Extension>, UpdateAction<Extension>, UpdateAction<Extension>...) - Static method in interface io.sphere.sdk.extensions.commands.ExtensionUpdateCommand
-
Creates a command to update a Extension selected by its ID using one update action.
- of(Destination) - Static method in class io.sphere.sdk.extensions.commands.updateactions.ChangeDestination
-
Creates a new object initialized with the given values.
- of(List<Trigger>) - Static method in class io.sphere.sdk.extensions.commands.updateactions.ChangeTriggers
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.extensions.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- of(Long) - Static method in class io.sphere.sdk.extensions.commands.updateactions.SetTimeoutInMs
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.extensions.errors.ExtensionBadResponseError
-
- of(String) - Static method in class io.sphere.sdk.extensions.errors.ExtensionNoResponseError
-
- of(String) - Static method in class io.sphere.sdk.extensions.errors.ExtensionUpdateActionsFailedError
-
- of() - Static method in interface io.sphere.sdk.extensions.expansion.ExtensionExpansionModel
-
- of(String, Destination, List<Trigger>, Long) - Static method in class io.sphere.sdk.extensions.ExtensionDraftBuilder
-
Creates a new object initialized with the given values.
- of(String, Destination, List<Trigger>) - Static method in class io.sphere.sdk.extensions.ExtensionDraftBuilder
-
Creates a new object initialized with the given values.
- of(Destination, List<Trigger>) - Static method in class io.sphere.sdk.extensions.ExtensionDraftBuilder
-
Creates a new object initialized with the given values.
- of(ExtensionDraft) - Static method in class io.sphere.sdk.extensions.ExtensionDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String, Destination, List<Trigger>, Long) - Static method in class io.sphere.sdk.extensions.ExtensionDraftDsl
-
Creates a new object initialized with the given values.
- of(String, Destination, List<Trigger>) - Static method in class io.sphere.sdk.extensions.ExtensionDraftDsl
-
Creates a new object initialized with the given values.
- of(Destination, List<Trigger>) - Static method in class io.sphere.sdk.extensions.ExtensionDraftDsl
-
Creates a new object initialized with the given values.
- of(ExtensionDraft) - Static method in class io.sphere.sdk.extensions.ExtensionDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String, HttpDestinationAuthentication) - Static method in class io.sphere.sdk.extensions.HttpDestinationBuilder
-
Creates a new object initialized with the given values.
- of(HttpDestination) - Static method in class io.sphere.sdk.extensions.HttpDestinationBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in interface io.sphere.sdk.extensions.queries.ExtensionByIdGet
-
- of(Identifiable<Extension>) - Static method in interface io.sphere.sdk.extensions.queries.ExtensionByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.extensions.queries.ExtensionByKeyGet
-
- of() - Static method in interface io.sphere.sdk.extensions.queries.ExtensionQuery
-
- of() - Static method in class io.sphere.sdk.extensions.queries.ExtensionQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.extensions.queries.ExtensionQueryModel
-
- of(ExtensionResourceType, List<TriggerType>) - Static method in class io.sphere.sdk.extensions.TriggerBuilder
-
Creates a new object initialized with the given values.
- of(Trigger) - Static method in class io.sphere.sdk.extensions.TriggerBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(CloseableHttpAsyncClient) - Static method in interface io.sphere.sdk.http.ApacheHttpClientAdapter
-
- of(AsyncHttpClient) - Static method in interface io.sphere.sdk.http.AsyncHttpClientAdapter
-
- of(File) - Static method in class io.sphere.sdk.http.FileHttpRequestBody
-
- of(List<NameValuePair>) - Static method in class io.sphere.sdk.http.FormUrlEncodedHttpRequestBody
-
- of(Map<String, List<String>>) - Static method in class io.sphere.sdk.http.FormUrlEncodedHttpRequestBody
-
Creator if the order does not matter and there are no duplicates.
- of(List<NameValuePair>) - Static method in class io.sphere.sdk.http.HttpHeaders
-
- of(Map<String, List<String>>) - Static method in class io.sphere.sdk.http.HttpHeaders
-
- of(String, String) - Static method in class io.sphere.sdk.http.HttpHeaders
-
- of() - Static method in class io.sphere.sdk.http.HttpHeaders
-
- of(HttpMethod, String) - Static method in interface io.sphere.sdk.http.HttpRequest
-
- of(HttpMethod, String, HttpHeaders, HttpRequestBody) - Static method in interface io.sphere.sdk.http.HttpRequest
-
- of(Integer, String) - Static method in interface io.sphere.sdk.http.HttpResponse
-
- of(Integer, String, HttpHeaders) - Static method in interface io.sphere.sdk.http.HttpResponse
-
- of(Integer) - Static method in interface io.sphere.sdk.http.HttpResponse
-
- of(Integer, HttpHeaders) - Static method in interface io.sphere.sdk.http.HttpResponse
-
- of(Integer, String, HttpRequest) - Static method in interface io.sphere.sdk.http.HttpResponse
-
- of(Integer, String, HttpRequest, HttpHeaders) - Static method in interface io.sphere.sdk.http.HttpResponse
-
- of(Integer, byte[], HttpRequest) - Static method in interface io.sphere.sdk.http.HttpResponse
-
- of(Integer, byte[], HttpRequest, HttpHeaders) - Static method in interface io.sphere.sdk.http.HttpResponse
-
- of(String, String) - Static method in interface io.sphere.sdk.http.NameValuePair
-
- of(String) - Static method in class io.sphere.sdk.http.StringHttpRequestBody
-
- of(String) - Static method in class io.sphere.sdk.http.UriTemplate
-
Creates a new uri template from the given parameter.
- of(UriTemplate) - Static method in class io.sphere.sdk.http.UrlBuilder
-
Creates a new builder from the given parameter.
- of() - Static method in class io.sphere.sdk.http.UrlQueryBuilder
-
- of() - Static method in class io.sphere.sdk.inventory.AvailabilityInfoBuilder
-
- of(InventoryEntryDraft) - Static method in interface io.sphere.sdk.inventory.commands.InventoryEntryCreateCommand
-
- of(Versioned<InventoryEntry>) - Static method in interface io.sphere.sdk.inventory.commands.InventoryEntryDeleteCommand
-
- of(Versioned<InventoryEntry>, List<? extends UpdateAction<InventoryEntry>>) - Static method in interface io.sphere.sdk.inventory.commands.InventoryEntryUpdateCommand
-
Creates a command to update a InventoryEntry selected by its ID using several update actions.
- of(Versioned<InventoryEntry>, UpdateAction<InventoryEntry>, UpdateAction<InventoryEntry>...) - Static method in interface io.sphere.sdk.inventory.commands.InventoryEntryUpdateCommand
-
Creates a command to update a InventoryEntry selected by its ID using one update action.
- of(long) - Static method in class io.sphere.sdk.inventory.commands.updateactions.AddQuantity
-
- of(long) - Static method in class io.sphere.sdk.inventory.commands.updateactions.ChangeQuantity
-
- of(long) - Static method in class io.sphere.sdk.inventory.commands.updateactions.RemoveQuantity
-
- of(ZonedDateTime) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetExpectedDelivery
-
- of(Integer) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetRestockableInDays
-
- of(ResourceIdentifier<Channel>) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetSupplyChannel
-
- of() - Static method in interface io.sphere.sdk.inventory.expansion.InventoryEntryExpansionModel
-
- of(String, long) - Static method in interface io.sphere.sdk.inventory.InventoryEntryDraft
-
- of(String, long, ZonedDateTime, Integer, Referenceable<Channel>) - Static method in interface io.sphere.sdk.inventory.InventoryEntryDraft
-
- of(String, Long) - Static method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
Creates a new object initialized with the given values.
- of(String, Long, ZonedDateTime) - Static method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
Creates a new object initialized with the given values.
- of(String, Long, ZonedDateTime, Integer, ResourceIdentifier<Channel>) - Static method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
Creates a new object initialized with the given values.
- of(InventoryEntryDraft) - Static method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(InventoryEntry) - Static method in class io.sphere.sdk.inventory.InventoryEntryDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in interface io.sphere.sdk.inventory.queries.InventoryEntryByIdGet
-
- of(Identifiable<InventoryEntry>) - Static method in interface io.sphere.sdk.inventory.queries.InventoryEntryByIdGet
-
- of() - Static method in interface io.sphere.sdk.inventory.queries.InventoryEntryQuery
-
- of() - Static method in class io.sphere.sdk.inventory.queries.InventoryEntryQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.inventory.queries.InventoryEntryQueryModel
-
- of() - Static method in interface io.sphere.sdk.jsonnodes.expansion.JsonNodeExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.jsonnodes.queries.JsonNodeQuery
-
- of() - Static method in interface io.sphere.sdk.jsonnodes.queries.JsonNodeQueryModel
-
- of() - Static method in interface io.sphere.sdk.messages.expansion.MessageExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.messages.queries.MessageByIdGet
-
- of(Identifiable<Message>) - Static method in interface io.sphere.sdk.messages.queries.MessageByIdGet
-
- of() - Static method in interface io.sphere.sdk.messages.queries.MessageQuery
-
- of() - Static method in class io.sphere.sdk.messages.queries.MessageQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.messages.queries.MessageQueryModel
-
- of(CountryCode) - Static method in class io.sphere.sdk.models.Address
-
- of(Address) - Static method in class io.sphere.sdk.models.AddressBuilder
-
- of(CountryCode) - Static method in class io.sphere.sdk.models.AddressBuilder
-
- of(List<AssetSource>, LocalizedString) - Static method in class io.sphere.sdk.models.AssetDraftDsl
-
Creates a new object initialized with the given values.
- of(AssetDraft) - Static method in class io.sphere.sdk.models.AssetDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String, String) - Static method in interface io.sphere.sdk.models.ContainerAndKey
-
- of(String, String) - Static method in interface io.sphere.sdk.models.EnumValue
-
- of(String) - Static method in class io.sphere.sdk.models.errors.AnonymousIdAlreadyInUseError
-
- of(String, Long) - Static method in class io.sphere.sdk.models.errors.ConcurrentModificationError
-
- of(String, String, String) - Static method in class io.sphere.sdk.models.errors.DuplicateFieldError
-
- of(String, String, String, Reference<Resource>) - Static method in class io.sphere.sdk.models.errors.DuplicateFieldWithConflictingResourceError
-
- of(Integer, String, List<? extends SphereError>) - Static method in interface io.sphere.sdk.models.errors.ErrorResponse
-
- of(String) - Static method in class io.sphere.sdk.models.errors.ExternalOAuthFailedError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.FeatureRemovedError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.GeneralError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.InternalConstraintViolatedError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.InvalidField
-
- of(String) - Static method in class io.sphere.sdk.models.errors.InvalidInputError
-
- of(String, String) - Static method in class io.sphere.sdk.models.errors.InvalidJsonInputError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.InvalidOperationError
-
- of(String, Reference<Type>) - Static method in class io.sphere.sdk.models.errors.MaxResourceLimitExceededError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.ObjectNotFoundError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.OverCapacityError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.PendingOperationError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.QueryComplexityLimitExceededError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.QueryTimedOutError
-
- of(String, Reference<Type>, String, String) - Static method in class io.sphere.sdk.models.errors.ReferencedResourceNotFoundError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.ReferenceExistsError
-
- of(String, String) - Static method in class io.sphere.sdk.models.errors.RequiredField
-
- of(String) - Static method in class io.sphere.sdk.models.errors.ResourceNotFoundError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.SemanticError
-
- of(String, String) - Static method in class io.sphere.sdk.models.errors.SphereError
-
- of(String) - Static method in class io.sphere.sdk.models.errors.SyntaxError
-
- of(String, String) - Static method in interface io.sphere.sdk.models.KeyReference
-
- of(String, String, T) - Static method in interface io.sphere.sdk.models.KeyReference
-
- of(String, LocalizedString) - Static method in interface io.sphere.sdk.models.LocalizedEnumValue
-
- of() - Static method in class io.sphere.sdk.models.LocalizedString
-
Creates an instance without any value.
- of(Locale, String) - Static method in class io.sphere.sdk.models.LocalizedString
-
Creates an instance with one locale translation pair.
- of(Locale, String, Locale, String) - Static method in class io.sphere.sdk.models.LocalizedString
-
Creates an instance for two different locales.
- of(Map<Locale, String>) - Static method in class io.sphere.sdk.models.LocalizedString
-
Creates an instance by supplying a map of
Locale
and
String
.
- of(Locale, String) - Static method in class io.sphere.sdk.models.LocalizedStringEntry
-
- of(String, String) - Static method in class io.sphere.sdk.models.LocalizedStringEntry
-
Creates an entry for language tag and a value.
- of() - Static method in interface io.sphere.sdk.models.MetaAttributesDsl
-
- of(Double, Double) - Static method in interface io.sphere.sdk.models.Point
-
- of(String, String) - Static method in interface io.sphere.sdk.models.Reference
-
- of(String, String, T) - Static method in interface io.sphere.sdk.models.Reference
-
- of(String, T) - Static method in interface io.sphere.sdk.models.Reference
-
- of(Versioned<T>) - Static method in interface io.sphere.sdk.models.Versioned
-
Creates a versioned that only contains the id and the version.
- of(String, long) - Static method in interface io.sphere.sdk.models.Versioned
-
- of(String, Long, Long) - Static method in class io.sphere.sdk.orderedits.commands.OrderEditApplyCommand
-
- of(Versioned<OrderEdit>, Long) - Static method in class io.sphere.sdk.orderedits.commands.OrderEditApplyCommand
-
- of(OrderEditDraft) - Static method in interface io.sphere.sdk.orderedits.commands.OrderEditCreateCommand
-
Creates a command object to create a
OrderEdit
.
- of(Versioned<OrderEdit>) - Static method in interface io.sphere.sdk.orderedits.commands.OrderEditDeleteCommand
-
Creates a command object to delete a
OrderEdit
by ID.
- of(Versioned<OrderEdit>, List<? extends UpdateAction<OrderEdit>>) - Static method in interface io.sphere.sdk.orderedits.commands.OrderEditUpdateCommand
-
Creates a command to update a OrderEdit selected by its ID using several update actions.
- of(Versioned<OrderEdit>, UpdateAction<OrderEdit>, UpdateAction<OrderEdit>...) - Static method in interface io.sphere.sdk.orderedits.commands.OrderEditUpdateCommand
-
Creates a command to update a OrderEdit selected by its ID using one update action.
- of(LocalizedString, String, MonetaryAmount, ResourceIdentifier<TaxCategory>, Long, CustomFieldsDraft, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.AddCustomLineItem
-
- of(DiscountCode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.AddDiscountCode
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.AddDiscountCode
-
- of(Address) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.AddItemShippingAddress
-
- of(ProductIdentifiable, int, long) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- of(String, int, long) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- of(LineItemDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.AddLineItem
-
- of(Referenceable<Payment>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.AddPayment
-
- of(Reference<ShoppingList>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.AddShoppingList
-
- of(String, MonetaryAmount) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeCustomLineItemMoney
-
- of(String, long) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeCustomLineItemQuantity
-
- of(String, long) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeLineItemQuantity
-
- of(TaxCalculationMode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeTaxCalculationMode
-
- of(TaxMode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeTaxMode
-
- of(RoundingMode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeTaxRoundingMode
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveCustomLineItem
-
- of(CustomLineItem) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveCustomLineItem
-
- of(Referenceable<DiscountCode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveDiscountCode
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveItemShippingAddress
-
- of(String, Long, MonetaryAmount, ExternalLineItemTotalPrice, ItemShippingDetailsDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
Creates a new object initialized with the given values.
- of(String, Long) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- of(LineItem, Long) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- of(LineItem) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- of(Referenceable<Payment>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemovePayment
-
- of(Address) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetBillingAddress
-
- of(String, JsonNode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetBillingAddressCustomField
-
- of(ResourceIdentifier<Type>, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetBillingAddressCustomType
-
- of(CountryCode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCountry
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomerEmail
-
- of(ResourceIdentifiable<CustomerGroup>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomerGroup
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomerId
-
- of(String, String, JsonNode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomLineItemCustomField
-
- of(String, ResourceIdentifier<Type>, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomLineItemCustomType
-
- of(String, ExternalTaxAmountDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomLineItemTaxAmount
-
- of(String, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomLineItemTaxRate
-
- of(String, ShippingRate, ResourceIdentifier<TaxCategory>, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomShippingMethod
-
- of(String, String, JsonNode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryAddressCustomField
-
- of(String, ResourceIdentifier<Type>, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryAddressCustomType
-
- of(String, JsonNode, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomField
-
- of(String, String, String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomType
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomType
-
- of(String, String, JsonNode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetItemShippingAddressCustomField
-
- of(String, ResourceIdentifier<Type>, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetItemShippingAddressCustomType
-
- of(String, JsonNode, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomField
-
- of(String, String, String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomType
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomType
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemDistributionChannel
-
- of(String, MonetaryAmount) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemPrice
-
- of(String, ItemShippingDetailsDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemShippingDetails
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemShippingDetails
-
- of(String, ExternalTaxAmountDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemTaxAmount
-
- of(String, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemTaxRate
-
- of(String, ExternalLineItemTotalPrice) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemTotalPrice
-
- of(Locale) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLocale
-
- of(MonetaryAmount, List<TaxPortion>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetOrderTotalTax
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetOrderTotalTax
-
- of(String, JsonNode, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomField
-
- of(String, String, String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomType
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomType
-
- of(List<? extends ReturnInfoDraft>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnInfo
-
- of(String, JsonNode, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomField
-
- of(String, String, String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomType
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomType
-
- of(Address) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddress
-
- of(Address, String, ShippingRate, ResourceIdentifier<TaxCategory>, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndCustomShippingMethod
-
- of(Address, String, ShippingRate) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndCustomShippingMethod
-
- of(Address, ResourceIdentifier<ShippingMethod>, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndShippingMethod
-
- of(Address) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressAndShippingMethod
-
- of(String, JsonNode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressCustomField
-
- of(ResourceIdentifier<Type>, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingAddressCustomType
-
- of(ResourceIdentifier<ShippingMethod>, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingMethod
-
- of(ExternalTaxAmountDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingMethodTaxAmount
-
- of(ExternalTaxRateDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingMethodTaxRate
-
- of(ShippingRateInputDraft) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingRateInput
-
- of(Address) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.UpdateItemShippingAddress
-
- of(OrderEditStagedUpdateAction) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.AddStagedAction
-
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetComment
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- of(List<OrderEditStagedUpdateAction>) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetStagedActions
-
Creates a new object initialized with the given values.
- of() - Static method in interface io.sphere.sdk.orderedits.expansion.OrderEditExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.orderedits.expansion.OrderEditExpansionModel
-
- of(String, Reference<Order>, List<StagedUpdateAction<OrderEdit>>, CustomFieldsDraft, String, Boolean) - Static method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
Creates a new object initialized with the given values.
- of(Reference<Order>, List<StagedUpdateAction<OrderEdit>>) - Static method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
Creates a new object initialized with the given values.
- of(OrderEditDraft) - Static method in class io.sphere.sdk.orderedits.OrderEditDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String, Reference<Order>, List<StagedUpdateAction<OrderEdit>>, CustomFieldsDraft, String, Boolean) - Static method in class io.sphere.sdk.orderedits.OrderEditDraftDsl
-
Creates a new object initialized with the given values.
- of(Reference<Order>, List<StagedUpdateAction<OrderEdit>>) - Static method in class io.sphere.sdk.orderedits.OrderEditDraftDsl
-
Creates a new object initialized with the given values.
- of(OrderEditDraft) - Static method in class io.sphere.sdk.orderedits.OrderEditDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in interface io.sphere.sdk.orderedits.queries.OrderEditByIdGet
-
- of(Identifiable<OrderEdit>) - Static method in interface io.sphere.sdk.orderedits.queries.OrderEditByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.orderedits.queries.OrderEditByKeyGet
-
- of() - Static method in interface io.sphere.sdk.orderedits.queries.OrderEditQuery
-
- of() - Static method in class io.sphere.sdk.orderedits.queries.OrderEditQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.orderedits.queries.OrderEditQueryModel
-
- of(Versioned<Order>) - Static method in interface io.sphere.sdk.orders.commands.OrderDeleteCommand
-
Creates a command object to delete a
Order
by ID.
- of(Versioned<Order>, boolean) - Static method in interface io.sphere.sdk.orders.commands.OrderDeleteCommand
-
Creates a command object to delete a
Order
by ID.
- of(OrderFromCartDraft) - Static method in interface io.sphere.sdk.orders.commands.OrderFromCartCreateCommand
-
- of(ResourceIdentifier<Cart>, Long) - Static method in interface io.sphere.sdk.orders.commands.OrderFromCartCreateCommand
-
- of(Versioned<Cart>) - Static method in interface io.sphere.sdk.orders.commands.OrderFromCartCreateCommand
-
- of(String, OrderFromCartDraft) - Static method in interface io.sphere.sdk.orders.commands.OrderFromCartInStoreCreateCommand
-
- of(String, Versioned<Cart>) - Static method in interface io.sphere.sdk.orders.commands.OrderFromCartInStoreCreateCommand
-
- of(String, ResourceIdentifier<Cart>, Long) - Static method in interface io.sphere.sdk.orders.commands.OrderFromCartInStoreCreateCommand
-
- of(OrderImportDraft) - Static method in class io.sphere.sdk.orders.commands.OrderImportCommand
-
- of(String, Versioned<Order>, boolean) - Static method in interface io.sphere.sdk.orders.commands.OrderInStoreDeleteByIdCommand
-
- of(String, Versioned<Order>) - Static method in interface io.sphere.sdk.orders.commands.OrderInStoreDeleteByIdCommand
-
- of(String, String, Long, boolean) - Static method in interface io.sphere.sdk.orders.commands.OrderInStoreDeleteByOrderNumberCommand
-
- of(String, String, Long) - Static method in interface io.sphere.sdk.orders.commands.OrderInStoreDeleteByOrderNumberCommand
-
- of(String, Versioned<Order>, List<? extends UpdateAction<Order>>) - Static method in interface io.sphere.sdk.orders.commands.OrderInStoreUpdateByIdCommand
-
- of(String, Versioned<Order>, UpdateAction<Order>, UpdateAction<Order>...) - Static method in interface io.sphere.sdk.orders.commands.OrderInStoreUpdateByIdCommand
-
- of(String, String, Long, List<UpdateAction<Order>>) - Static method in interface io.sphere.sdk.orders.commands.OrderInStoreUpdateByOrderNumberCommand
-
- of(String, String, Long, UpdateAction<Order>, UpdateAction<Order>...) - Static method in interface io.sphere.sdk.orders.commands.OrderInStoreUpdateByOrderNumberCommand
-
- of(Versioned<Order>, List<? extends UpdateAction<Order>>) - Static method in interface io.sphere.sdk.orders.commands.OrderUpdateCommand
-
Creates a command to update a Order selected by its ID using several update actions.
- of(Versioned<Order>, UpdateAction<Order>, UpdateAction<Order>...) - Static method in interface io.sphere.sdk.orders.commands.OrderUpdateCommand
-
Creates a command to update a Order selected by its ID using one update action.
- of(List<DeliveryItem>, List<ParcelDraft>) - Static method in class io.sphere.sdk.orders.commands.updateactions.AddDelivery
-
- of(List<DeliveryItem>) - Static method in class io.sphere.sdk.orders.commands.updateactions.AddDelivery
-
- of(Address) - Static method in class io.sphere.sdk.orders.commands.updateactions.AddItemShippingAddress
-
Creates a new object initialized with the given values.
- of(String, ParcelDraft) - Static method in class io.sphere.sdk.orders.commands.updateactions.AddParcelToDelivery
-
- of(Delivery, ParcelDraft) - Static method in class io.sphere.sdk.orders.commands.updateactions.AddParcelToDelivery
-
- of(String, ParcelDraft, List<DeliveryItem>) - Static method in class io.sphere.sdk.orders.commands.updateactions.AddParcelToDelivery
-
- of(Delivery, ParcelDraft, List<DeliveryItem>) - Static method in class io.sphere.sdk.orders.commands.updateactions.AddParcelToDelivery
-
- of(Referenceable<Payment>) - Static method in class io.sphere.sdk.orders.commands.updateactions.AddPayment
-
- of(List<? extends ReturnItemDraft>, ZonedDateTime, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.AddReturnInfo
-
- of(List<? extends ReturnItemDraft>) - Static method in class io.sphere.sdk.orders.commands.updateactions.AddReturnInfo
-
- of(OrderState) - Static method in class io.sphere.sdk.orders.commands.updateactions.ChangeOrderState
-
- of(PaymentState) - Static method in class io.sphere.sdk.orders.commands.updateactions.ChangePaymentState
-
- of(ShipmentState) - Static method in class io.sphere.sdk.orders.commands.updateactions.ChangeShipmentState
-
- of(CustomLineItem, Set<ItemState>) - Static method in class io.sphere.sdk.orders.commands.updateactions.ImportCustomLineItemState
-
- of(String, Set<ItemState>) - Static method in class io.sphere.sdk.orders.commands.updateactions.ImportCustomLineItemState
-
- of(LineItem, Set<ItemState>) - Static method in class io.sphere.sdk.orders.commands.updateactions.ImportLineItemState
-
- of(String, Set<ItemState>) - Static method in class io.sphere.sdk.orders.commands.updateactions.ImportLineItemState
-
- of(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.RemoveDelivery
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.RemoveItemShippingAddress
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.RemoveParcelFromDelivery
-
Creates a new object initialized with the given values.
- of(Referenceable<Payment>) - Static method in class io.sphere.sdk.orders.commands.updateactions.RemovePayment
-
- of(Address) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetBillingAddress
-
- of(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomerEmail
-
- of(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomerId
-
Creates a new object initialized with the given values.
- of(String, ItemShippingDetailsDraft) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemShippingDetails
-
Creates a new object initialized with the given values.
- of(String, Address) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryAddress
-
- of(String, List<DeliveryItem>) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryItems
-
Creates a new object initialized with the given values.
- of(String, ItemShippingDetailsDraft) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemShippingDetails
-
Creates a new object initialized with the given values.
- of(Locale) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLocale
-
- of(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetOrderNumber
-
- of(String, List<DeliveryItem>) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelItems
-
Creates a new object initialized with the given values.
- of(String, ParcelMeasurements) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelMeasurements
-
Creates a new object initialized with the given values.
- of(String, TrackingData) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelTrackingData
-
Creates a new object initialized with the given values.
- of(List<? extends ReturnInfoDraft>) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnInfo
-
- of(String, ReturnPaymentState) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnPaymentState
-
- of(ReturnItem, ReturnPaymentState) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnPaymentState
-
- of(String, ReturnShipmentState) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnShipmentState
-
- of(ReturnItem, ReturnShipmentState) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnShipmentState
-
- of(Address) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetShippingAddress
-
- of(ResourceIdentifier<Store>) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetStore
-
- of(String, long, Referenceable<State>, Referenceable<State>, ZonedDateTime) - Static method in class io.sphere.sdk.orders.commands.updateactions.TransitionCustomLineItemState
-
- of(CustomLineItem, long, Referenceable<State>, Referenceable<State>, ZonedDateTime) - Static method in class io.sphere.sdk.orders.commands.updateactions.TransitionCustomLineItemState
-
- of(CustomLineItem, long, Referenceable<State>, Referenceable<State>) - Static method in class io.sphere.sdk.orders.commands.updateactions.TransitionCustomLineItemState
-
- of(String, long, Referenceable<State>, Referenceable<State>, ZonedDateTime) - Static method in class io.sphere.sdk.orders.commands.updateactions.TransitionLineItemState
-
- of(LineItem, long, Referenceable<State>, Referenceable<State>, ZonedDateTime) - Static method in class io.sphere.sdk.orders.commands.updateactions.TransitionLineItemState
-
- of(LineItem, long, Referenceable<State>, Referenceable<State>) - Static method in class io.sphere.sdk.orders.commands.updateactions.TransitionLineItemState
-
- of(Referenceable<State>) - Static method in class io.sphere.sdk.orders.commands.updateactions.TransitionState
-
- of(Referenceable<State>, Boolean) - Static method in class io.sphere.sdk.orders.commands.updateactions.TransitionState
-
- of(Address) - Static method in class io.sphere.sdk.orders.commands.updateactions.UpdateItemShippingAddress
-
Creates a new object initialized with the given values.
- of(ResourceIdentifier<Channel>, String, ZonedDateTime) - Static method in class io.sphere.sdk.orders.commands.updateactions.UpdateSyncInfo
-
- of(ResourceIdentifier<Channel>) - Static method in class io.sphere.sdk.orders.commands.updateactions.UpdateSyncInfo
-
- of(Reference<Channel>, String, ZonedDateTime) - Static method in class io.sphere.sdk.orders.commands.updateactions.UpdateSyncInfo
-
- of(Referenceable<Channel>) - Static method in class io.sphere.sdk.orders.commands.updateactions.UpdateSyncInfo
-
- of(LocalizedString, long, MonetaryAmount, Referenceable<TaxCategory>) - Static method in class io.sphere.sdk.orders.CustomLineItemImportDraftBuilder
-
- of(LocalizedString, long, MonetaryAmount, Referenceable<TaxCategory>, CustomFieldsDraft, ItemShippingDetailsDraft) - Static method in class io.sphere.sdk.orders.CustomLineItemImportDraftBuilder
-
- of(LocalizedString, long, MonetaryAmount, Referenceable<TaxCategory>, ItemShippingDetailsDraft) - Static method in class io.sphere.sdk.orders.CustomLineItemImportDraftBuilder
-
- of(LocalizedString, long, MonetaryAmount, Referenceable<TaxCategory>, CustomFieldsDraft) - Static method in class io.sphere.sdk.orders.CustomLineItemImportDraftBuilder
-
- of(String, ZonedDateTime, String, String, ZonedDateTime, ReturnPaymentState, Long, ReturnShipmentState) - Static method in interface io.sphere.sdk.orders.CustomLineItemReturnItem
-
- of(String, ZonedDateTime, String, String, ZonedDateTime, ReturnPaymentState, Long, ReturnShipmentState, CustomFields) - Static method in interface io.sphere.sdk.orders.CustomLineItemReturnItem
-
- of(long, String, ReturnShipmentState, String) - Static method in interface io.sphere.sdk.orders.CustomLineItemReturnItemDraft
-
- of(long, CustomFieldsDraft, String, ReturnShipmentState, String) - Static method in interface io.sphere.sdk.orders.CustomLineItemReturnItemDraft
-
- of(long, String, ReturnShipmentState) - Static method in interface io.sphere.sdk.orders.CustomLineItemReturnItemDraft
-
- of(Long, String, ReturnShipmentState, String, CustomFieldsDraft) - Static method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftBuilder
-
Creates a new object initialized with the given values.
- of(CustomLineItemReturnItemDraft) - Static method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(Long, String, ReturnShipmentState, String, CustomFieldsDraft) - Static method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftDsl
-
Creates a new object initialized with the given values.
- of(CustomLineItemReturnItemDraft) - Static method in class io.sphere.sdk.orders.CustomLineItemReturnItemDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String, ZonedDateTime, List<DeliveryItem>, List<Parcel>) - Static method in interface io.sphere.sdk.orders.Delivery
-
- of(String, long) - Static method in interface io.sphere.sdk.orders.DeliveryItem
-
- of(String, Long) - Static method in interface io.sphere.sdk.orders.DeliveryItem
-
- of(LineItemLike, Long) - Static method in interface io.sphere.sdk.orders.DeliveryItem
-
- of(LineItemLike) - Static method in interface io.sphere.sdk.orders.DeliveryItem
-
- of(String) - Static method in class io.sphere.sdk.orders.errors.DiscountCodeNonApplicableError
-
- of(String, String, String) - Static method in class io.sphere.sdk.orders.errors.InvalidItemShippingDetailsError
-
- of(String, String, int, String, String, Reference<CustomerGroup>, Reference<Channel>) - Static method in class io.sphere.sdk.orders.errors.MatchingPriceNotFoundError
-
- of(String, String, String, String) - Static method in class io.sphere.sdk.orders.errors.MissingTaxRateForCountryError
-
- of(String, List<String>, List<String>) - Static method in class io.sphere.sdk.orders.errors.OutOfStockError
-
- of(String, List<String>, boolean) - Static method in class io.sphere.sdk.orders.errors.PriceChangedError
-
- of(String) - Static method in class io.sphere.sdk.orders.errors.ShippingMethodDoesNotMatchCartError
-
- of() - Static method in interface io.sphere.sdk.orders.expansion.OrderExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.orders.expansion.OrderExpansionModel
-
- of() - Static method in interface io.sphere.sdk.orders.expansion.SyncInfoExpansionModel
-
- of(ProductVariantImportDraft, long, PriceDraft, LocalizedString) - Static method in class io.sphere.sdk.orders.LineItemImportDraftBuilder
-
- of(ProductVariantImportDraft, long, Price, LocalizedString) - Static method in class io.sphere.sdk.orders.LineItemImportDraftBuilder
-
- of(String, Long, String, String, ReturnShipmentState, ReturnPaymentState, ZonedDateTime, ZonedDateTime) - Static method in interface io.sphere.sdk.orders.LineItemReturnItem
-
- of(String, Long, String, String, ReturnShipmentState, ReturnPaymentState, CustomFields, ZonedDateTime, ZonedDateTime) - Static method in interface io.sphere.sdk.orders.LineItemReturnItem
-
- of(long, String, ReturnShipmentState, String) - Static method in interface io.sphere.sdk.orders.LineItemReturnItemDraft
-
- of(long, String, ReturnShipmentState, String, CustomFieldsDraft) - Static method in interface io.sphere.sdk.orders.LineItemReturnItemDraft
-
- of(long, String, ReturnShipmentState) - Static method in interface io.sphere.sdk.orders.LineItemReturnItemDraft
-
- of(Long, String, ReturnShipmentState, String, CustomFieldsDraft) - Static method in class io.sphere.sdk.orders.LineItemReturnItemDraftBuilder
-
Creates a new object initialized with the given values.
- of(LineItemReturnItemDraft) - Static method in class io.sphere.sdk.orders.LineItemReturnItemDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(Long, String, ReturnShipmentState, String, CustomFieldsDraft) - Static method in class io.sphere.sdk.orders.LineItemReturnItemDraftDsl
-
Creates a new object initialized with the given values.
- of(LineItemReturnItemDraft) - Static method in class io.sphere.sdk.orders.LineItemReturnItemDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(Versioned<Cart>, String, PaymentState) - Static method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- of(Versioned<Cart>) - Static method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- of(ResourceIdentifier<Cart>, Long, String, PaymentState) - Static method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- of(ResourceIdentifier<Cart>, Long) - Static method in interface io.sphere.sdk.orders.OrderFromCartDraft
-
- of(String, Long, String, PaymentState) - Static method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
Creates a new object initialized with the given values.
- of(String, Long) - Static method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
Creates a new object initialized with the given values.
- of(ResourceIdentifier<Cart>, Long, String, PaymentState) - Static method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
Creates a new object initialized with the given values.
- of(ResourceIdentifier<Cart>, Long) - Static method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
Creates a new object initialized with the given values.
- of(OrderFromCartDraft) - Static method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String, Long, String, PaymentState) - Static method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
Creates a new object initialized with the given values.
- of(String, Long) - Static method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
Creates a new object initialized with the given values.
- of(ResourceIdentifier<Cart>, Long, String, PaymentState) - Static method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
Creates a new object initialized with the given values.
- of(ResourceIdentifier<Cart>, Long) - Static method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
Creates a new object initialized with the given values.
- of(OrderFromCartDraft) - Static method in class io.sphere.sdk.orders.OrderFromCartDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String, MonetaryAmount, ShippingRate, TaxRate, Reference<TaxCategory>, Reference<ShippingMethod>, List<Delivery>) - Static method in interface io.sphere.sdk.orders.OrderShippingInfo
-
- of(String, ZonedDateTime, ParcelMeasurements, TrackingData) - Static method in interface io.sphere.sdk.orders.Parcel
-
Deprecated.
- of(ZonedDateTime, String, List<DeliveryItem>, ParcelMeasurements, TrackingData) - Static method in interface io.sphere.sdk.orders.Parcel
-
- of(ZonedDateTime, String, CustomFields, List<DeliveryItem>, ParcelMeasurements, TrackingData) - Static method in interface io.sphere.sdk.orders.Parcel
-
- of(ParcelMeasurements, TrackingData) - Static method in interface io.sphere.sdk.orders.ParcelDraft
-
- of(ParcelMeasurements) - Static method in interface io.sphere.sdk.orders.ParcelDraft
-
- of(TrackingData) - Static method in interface io.sphere.sdk.orders.ParcelDraft
-
- of(TrackingData, List<DeliveryItem>) - Static method in interface io.sphere.sdk.orders.ParcelDraft
-
- of(TrackingData, List<DeliveryItem>, CustomFieldsDraft) - Static method in interface io.sphere.sdk.orders.ParcelDraft
-
- of() - Static method in class io.sphere.sdk.orders.ParcelDraftBuilder
-
Creates a new object initialized with the given values.
- of(ParcelDraft) - Static method in class io.sphere.sdk.orders.ParcelDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of() - Static method in class io.sphere.sdk.orders.ParcelDraftDsl
-
Creates a new object initialized with the given values.
- of(ParcelDraft) - Static method in class io.sphere.sdk.orders.ParcelDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(Integer, Integer, Integer, Integer) - Static method in interface io.sphere.sdk.orders.ParcelMeasurements
-
Deprecated.
- of(Integer, List<DeliveryItem>, Integer, Integer, Integer) - Static method in interface io.sphere.sdk.orders.ParcelMeasurements
-
- of(String, Integer, String) - Static method in class io.sphere.sdk.orders.ProductVariantImportDraftBuilder
-
- of(String, Integer) - Static method in class io.sphere.sdk.orders.ProductVariantImportDraftBuilder
-
- of(String) - Static method in interface io.sphere.sdk.orders.queries.OrderByIdGet
-
- of(Identifiable<Order>) - Static method in interface io.sphere.sdk.orders.queries.OrderByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.orders.queries.OrderByOrderNumberGet
-
- of(String, String) - Static method in interface io.sphere.sdk.orders.queries.OrderInStoreByIdGet
-
- of(String, Identifiable<Order>) - Static method in interface io.sphere.sdk.orders.queries.OrderInStoreByIdGet
-
- of(String, String) - Static method in interface io.sphere.sdk.orders.queries.OrderInStoreByOrderNumberGet
-
- of(String) - Static method in interface io.sphere.sdk.orders.queries.OrderInStoreQuery
-
- of(String) - Static method in class io.sphere.sdk.orders.queries.OrderInStoreQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.orders.queries.OrderQuery
-
- of() - Static method in class io.sphere.sdk.orders.queries.OrderQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- of(List<ReturnItem>, String, ZonedDateTime) - Static method in interface io.sphere.sdk.orders.ReturnInfo
-
- of(List<ReturnItemDraft>, String, ZonedDateTime) - Static method in interface io.sphere.sdk.orders.ReturnInfoDraft
-
- of() - Static method in class io.sphere.sdk.orders.ReturnInfoDraftBuilder
-
Creates a new object initialized with the given values.
- of(ReturnInfoDraft) - Static method in class io.sphere.sdk.orders.ReturnInfoDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of() - Static method in class io.sphere.sdk.orders.ReturnInfoDraftDsl
-
Creates a new object initialized with the given values.
- of(ReturnInfoDraft) - Static method in class io.sphere.sdk.orders.ReturnInfoDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String, MonetaryAmount, ShippingRate, TaxRate, ResourceIdentifier<TaxCategory>, ResourceIdentifier<ShippingMethod>, ShippingMethodState, List<Delivery>) - Static method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
Creates a new object initialized with the given values.
- of(ShippingInfoImportDraft) - Static method in class io.sphere.sdk.orders.ShippingInfoImportDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String, MonetaryAmount, ShippingRate, TaxRate, ResourceIdentifier<TaxCategory>, ResourceIdentifier<ShippingMethod>, ShippingMethodState, List<Delivery>) - Static method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
Creates a new object initialized with the given values.
- of(ShippingInfoImportDraft) - Static method in class io.sphere.sdk.orders.ShippingInfoImportDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(Referenceable<Channel>, ZonedDateTime, String) - Static method in interface io.sphere.sdk.orders.SyncInfo
-
- of() - Static method in interface io.sphere.sdk.orders.TrackingData
-
- of(String, String, String, String, boolean) - Static method in interface io.sphere.sdk.orders.TrackingData
-
- of() - Static method in class io.sphere.sdk.orders.TrackingDataBuilder
-
- of(TrackingData) - Static method in class io.sphere.sdk.orders.TrackingDataBuilder
-
- of(PaymentDraft) - Static method in interface io.sphere.sdk.payments.commands.PaymentCreateCommand
-
Creates a command object to create a
Payment
.
- of(Versioned<Payment>) - Static method in interface io.sphere.sdk.payments.commands.PaymentDeleteCommand
-
Creates a command object to delete a
Payment
by ID.
- of(Versioned<Payment>, boolean) - Static method in interface io.sphere.sdk.payments.commands.PaymentDeleteCommand
-
Creates a command object to delete a
Payment
by ID.
- of(Versioned<Payment>, List<? extends UpdateAction<Payment>>) - Static method in interface io.sphere.sdk.payments.commands.PaymentUpdateCommand
-
Creates a command to update a Payment selected by its ID using several update actions.
- of(Versioned<Payment>, UpdateAction<Payment>, UpdateAction<Payment>...) - Static method in interface io.sphere.sdk.payments.commands.PaymentUpdateCommand
-
Creates a command to update a Payment selected by its ID using one update action.
- of(TransactionDraft) - Static method in class io.sphere.sdk.payments.commands.updateactions.AddTransaction
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.payments.commands.updateactions.ChangeAmountPlanned
-
- of(String, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.ChangeTransactionInteractionId
-
- of(TransactionState, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.ChangeTransactionState
-
- of(ZonedDateTime, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.ChangeTransactionTimestamp
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetAmountPaid
-
Deprecated.
- of(MonetaryAmount) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetAmountRefunded
-
Deprecated.
- of(String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetAnonymousId
-
Creates a new update action from the given parameters.
- of(MonetaryAmount) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetAuthorization
-
Deprecated.
- of(MonetaryAmount, ZonedDateTime) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetAuthorization
-
Deprecated.
- of(Referenceable<Customer>) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetCustomer
-
- of(String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetExternalId
-
Deprecated.
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetInterfaceId
-
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetKey
-
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetMethodInfoInterface
-
- of(String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetMethodInfoMethod
-
- of(LocalizedString) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetMethodInfoName
-
- of(String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetStatusInterfaceCode
-
- of(String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetStatusInterfaceText
-
- of(Referenceable<State>) - Static method in class io.sphere.sdk.payments.commands.updateactions.TransitionState
-
- of() - Static method in interface io.sphere.sdk.payments.expansion.PaymentExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.payments.expansion.PaymentExpansionModel
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
Creates a new object initialized with the given values.
- of(PaymentDraft) - Static method in class io.sphere.sdk.payments.PaymentDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(MonetaryAmount) - Static method in class io.sphere.sdk.payments.PaymentDraftDsl
-
Creates a new object initialized with the given values.
- of(PaymentDraft) - Static method in class io.sphere.sdk.payments.PaymentDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of() - Static method in class io.sphere.sdk.payments.PaymentMethodInfoBuilder
-
- of() - Static method in class io.sphere.sdk.payments.PaymentStatusBuilder
-
- of(String) - Static method in interface io.sphere.sdk.payments.queries.PaymentByIdGet
-
- of(Identifiable<Payment>) - Static method in interface io.sphere.sdk.payments.queries.PaymentByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.payments.queries.PaymentByKeyGet
-
- of() - Static method in interface io.sphere.sdk.payments.queries.PaymentQuery
-
- of() - Static method in class io.sphere.sdk.payments.queries.PaymentQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.payments.queries.PaymentQueryModel
-
- of(TransactionType, MonetaryAmount) - Static method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
Creates a new object initialized with the given values.
- of(TransactionType, MonetaryAmount, ZonedDateTime) - Static method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
Creates a new object initialized with the given values.
- of(TransactionDraft) - Static method in class io.sphere.sdk.payments.TransactionDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(List<MonetaryAmount>) - Static method in class io.sphere.sdk.productdiscounts.AbsoluteProductDiscountValue
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.productdiscounts.AbsoluteProductDiscountValue
-
- of(ProductDiscountDraft) - Static method in interface io.sphere.sdk.productdiscounts.commands.ProductDiscountCreateCommand
-
- of(Versioned<ProductDiscount>) - Static method in interface io.sphere.sdk.productdiscounts.commands.ProductDiscountDeleteCommand
-
- of(Versioned<ProductDiscount>, List<? extends UpdateAction<ProductDiscount>>) - Static method in interface io.sphere.sdk.productdiscounts.commands.ProductDiscountUpdateCommand
-
Creates a command to update a ProductDiscount selected by its ID using several update actions.
- of(Versioned<ProductDiscount>, UpdateAction<ProductDiscount>, UpdateAction<ProductDiscount>...) - Static method in interface io.sphere.sdk.productdiscounts.commands.ProductDiscountUpdateCommand
-
Creates a command to update a ProductDiscount selected by its ID using one update action.
- of(boolean) - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.ChangeIsActive
-
- of(LocalizedString) - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.ChangeName
-
- of(ProductDiscountPredicate) - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.ChangePredicate
-
- of(String) - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.ChangeSortOrder
-
- of(ProductDiscountValue) - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.ChangeValue
-
- of(LocalizedString) - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetDescription
-
- of(String) - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- of(ZonedDateTime) - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetValidFrom
-
Creates a new object initialized with the given values.
- of(ZonedDateTime, ZonedDateTime) - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetValidFromAndUntil
-
Creates a new object initialized with the given values.
- of(ZonedDateTime) - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetValidUntil
-
Creates a new object initialized with the given values.
- of(MonetaryAmount, Reference<ProductDiscount>) - Static method in interface io.sphere.sdk.productdiscounts.DiscountedPrice
-
- of(String) - Static method in exception io.sphere.sdk.productdiscounts.errors.NoMatchingProductDiscountFoundError
-
- of() - Static method in interface io.sphere.sdk.productdiscounts.expansion.ProductDiscountExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.productdiscounts.expansion.ProductDiscountExpansionModel
-
- of() - Static method in class io.sphere.sdk.productdiscounts.ExternalProductDiscountValue
-
- of(LocalizedString, LocalizedString, ProductDiscountPredicate, ProductDiscountValue, String, boolean) - Static method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- of(LocalizedString, String, LocalizedString, ProductDiscountPredicate, ProductDiscountValue, String, boolean) - Static method in interface io.sphere.sdk.productdiscounts.ProductDiscountDraft
-
- of() - Static method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
Creates a new object initialized with the given values.
- of(Boolean, LocalizedString, LocalizedString, String, String, ProductDiscountValue) - Static method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
Creates a new object initialized with the given values.
- of(ProductDiscountDraft) - Static method in class io.sphere.sdk.productdiscounts.ProductDiscountDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in interface io.sphere.sdk.productdiscounts.ProductDiscountPredicate
-
- of(String, Integer, Boolean, Price) - Static method in class io.sphere.sdk.productdiscounts.queries.MatchingProductDiscountGet
-
- of(String) - Static method in interface io.sphere.sdk.productdiscounts.queries.ProductDiscountByIdGet
-
- of(Identifiable<ProductDiscount>) - Static method in interface io.sphere.sdk.productdiscounts.queries.ProductDiscountByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.productdiscounts.queries.ProductDiscountByKeyGet
-
- of() - Static method in interface io.sphere.sdk.productdiscounts.queries.ProductDiscountQuery
-
- of() - Static method in class io.sphere.sdk.productdiscounts.queries.ProductDiscountQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.productdiscounts.queries.ProductDiscountQueryModel
-
- of(Integer) - Static method in class io.sphere.sdk.productdiscounts.RelativeProductDiscountValue
-
- of(List<Attribute>) - Static method in interface io.sphere.sdk.products.AttributeContainer
-
- of(AttributeDraft...) - Static method in interface io.sphere.sdk.products.AttributeContainerDraft
-
- of(List<AttributeDraft>) - Static method in interface io.sphere.sdk.products.AttributeContainerDraft
-
- of(String, JsonNode) - Static method in interface io.sphere.sdk.products.attributes.Attribute
-
- of(String, AttributeAccess<T>, T) - Static method in interface io.sphere.sdk.products.attributes.Attribute
-
- of(NamedAttributeAccess<T>, T) - Static method in interface io.sphere.sdk.products.attributes.Attribute
-
- of(String, LocalizedString, AttributeType) - Static method in class io.sphere.sdk.products.attributes.AttributeDefinitionBuilder
-
- of(AttributeDefinition) - Static method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(AttributeType, String, LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftDsl
-
Creates a new object initialized with the given values.
- of(AttributeDefinitionDraft) - Static method in class io.sphere.sdk.products.attributes.AttributeDefinitionDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String, T) - Static method in interface io.sphere.sdk.products.attributes.AttributeDraft
-
- of(String, JsonNode) - Static method in interface io.sphere.sdk.products.attributes.AttributeDraft
-
- of(String, AttributeAccess<T>, T) - Static method in interface io.sphere.sdk.products.attributes.AttributeDraft
-
- of(NamedAttributeAccess<T>, T) - Static method in interface io.sphere.sdk.products.attributes.AttributeDraft
-
- of(AttributeDraft) - Static method in class io.sphere.sdk.products.attributes.AttributeDraftBuilder
-
- of(Attribute) - Static method in class io.sphere.sdk.products.attributes.AttributeDraftBuilder
-
- of(AttributeDefinitionContainer, Attribute) - Static method in class io.sphere.sdk.products.attributes.AttributeExtraction
-
- of(AttributeDefinition, Attribute) - Static method in class io.sphere.sdk.products.attributes.AttributeExtraction
-
- of(String, JsonNode) - Static method in interface io.sphere.sdk.products.attributes.AttributeImportDraft
-
- of(String, T) - Static method in interface io.sphere.sdk.products.attributes.AttributeImportDraft
-
- of(TypeReference<T>) - Static method in interface io.sphere.sdk.products.attributes.AttributeMapper
-
- of() - Static method in class io.sphere.sdk.products.attributes.BooleanAttributeType
-
- of() - Static method in class io.sphere.sdk.products.attributes.DateAttributeType
-
- of() - Static method in class io.sphere.sdk.products.attributes.DateTimeAttributeType
-
- of(EnumValue, EnumValue...) - Static method in class io.sphere.sdk.products.attributes.EnumAttributeType
-
- of(List<EnumValue>) - Static method in class io.sphere.sdk.products.attributes.EnumAttributeType
-
- of(LocalizedEnumValue, LocalizedEnumValue...) - Static method in class io.sphere.sdk.products.attributes.LocalizedEnumAttributeType
-
- of(List<LocalizedEnumValue>) - Static method in class io.sphere.sdk.products.attributes.LocalizedEnumAttributeType
-
- of() - Static method in class io.sphere.sdk.products.attributes.LocalizedStringAttributeType
-
- of() - Static method in class io.sphere.sdk.products.attributes.MoneyAttributeType
-
- of(Referenceable<ProductType>) - Static method in class io.sphere.sdk.products.attributes.NestedAttributeType
-
- of() - Static method in class io.sphere.sdk.products.attributes.NumberAttributeType
-
- of(String) - Static method in class io.sphere.sdk.products.attributes.ReferenceAttributeType
-
- of(AttributeType) - Static method in class io.sphere.sdk.products.attributes.SetAttributeType
-
- of() - Static method in class io.sphere.sdk.products.attributes.StringAttributeType
-
- of() - Static method in class io.sphere.sdk.products.attributes.TimeAttributeType
-
- of(Referenceable<Product>, Integer) - Static method in interface io.sphere.sdk.products.ByIdVariantIdentifier
-
- of(String, Integer) - Static method in interface io.sphere.sdk.products.ByIdVariantIdentifier
-
- of(String) - Static method in interface io.sphere.sdk.products.BySkuVariantIdentifier
-
- of(String, String) - Static method in class io.sphere.sdk.products.CategoryOrderHints
-
- of(Map<String, String>) - Static method in class io.sphere.sdk.products.CategoryOrderHints
-
- of(ProductDraft) - Static method in interface io.sphere.sdk.products.commands.ProductCreateCommand
-
- of(Versioned<Product>) - Static method in interface io.sphere.sdk.products.commands.ProductDeleteCommand
-
Creates a command object to delete a
Product
by ID.
- of(Versioned<Product>, UpdateAction<Product>, UpdateAction<Product>...) - Static method in interface io.sphere.sdk.products.commands.ProductUpdateCommand
-
- of(Versioned<Product>, List<? extends UpdateAction<Product>>) - Static method in interface io.sphere.sdk.products.commands.ProductUpdateCommand
-
- of(Image, Integer) - Static method in class io.sphere.sdk.products.commands.updateactions.AddExternalImage
-
- of(Integer, PriceDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.AddPrice
-
- of(Referenceable<Category>) - Static method in class io.sphere.sdk.products.commands.updateactions.AddToCategory
-
- of(Referenceable<Category>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.AddToCategory
-
- of(Referenceable<Category>, String) - Static method in class io.sphere.sdk.products.commands.updateactions.AddToCategory
-
- of(Referenceable<Category>, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.AddToCategory
-
- of(ResourceIdentifier<Category>) - Static method in class io.sphere.sdk.products.commands.updateactions.AddToCategory
-
- of(ResourceIdentifier<Category>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.AddToCategory
-
- of(ResourceIdentifier<Category>, String) - Static method in class io.sphere.sdk.products.commands.updateactions.AddToCategory
-
- of(ResourceIdentifier<Category>, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.AddToCategory
-
- of(List<AttributeDraft>, List<PriceDraft>, String) - Static method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
- of(List<AttributeDraft>, List<PriceDraft>, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
- of(List<AttributeDraft>, List<PriceDraft>) - Static method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
- of(List<AttributeDraft>, List<PriceDraft>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.AddVariant
-
- of(LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeName
-
- of(LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeName
-
- of(Price, PriceDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangePrice
-
- of(Price, PriceDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangePrice
-
- of(String, PriceDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangePrice
-
- of(String, PriceDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangePrice
-
- of(LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeSlug
-
- of(LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeSlug
-
- of(Integer, String) - Static method in class io.sphere.sdk.products.commands.updateactions.LegacySetSku
-
Deprecated.
- of(MetaAttributes) - Static method in class io.sphere.sdk.products.commands.updateactions.MetaAttributesUpdateActions
-
- of() - Static method in class io.sphere.sdk.products.commands.updateactions.Publish
-
- of(Referenceable<Category>) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveFromCategory
-
- of(Referenceable<Category>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveFromCategory
-
- of(ResourceIdentifier<Category>) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveFromCategory
-
- of(ResourceIdentifier<Category>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveFromCategory
-
- of(Image, Integer) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- of(String, Integer) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- of(Price) - Static method in class io.sphere.sdk.products.commands.updateactions.RemovePrice
-
Action to remove a price
- of(Price, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemovePrice
-
- of(String) - Static method in class io.sphere.sdk.products.commands.updateactions.RemovePrice
-
- of(String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemovePrice
-
- of(ProductVariant) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveVariant
-
- of(Integer) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveVariant
-
- of() - Static method in class io.sphere.sdk.products.commands.updateactions.RevertStagedChanges
-
- of(Integer) - Static method in class io.sphere.sdk.products.commands.updateactions.RevertStagedVariantChanges
-
- of(Integer, String, JsonNode) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/remove/change a custom attribute.
- of(Integer, String, JsonNode, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- of(Integer, AttributeDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/change a custom attribute.
- of(Integer, AttributeDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- of(Integer, NamedAttributeAccess<T>, T) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/change a custom attribute.
- of(Integer, NamedAttributeAccess<T>, T, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- of(String, JsonNode) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
Action to add/remove/change a custom attribute.
- of(String, JsonNode, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
- of(AttributeDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
Action to add/change a custom attribute.
- of(AttributeDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
- of(NamedAttributeAccess<T>, T) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
Action to add/change a custom attribute.
- of(NamedAttributeAccess<T>, T, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
- of(String, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetCategoryOrderHint
-
- of(String, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetCategoryOrderHint
-
- of(LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.SetDescription
-
- of(LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetDescription
-
- of(String, DiscountedPrice) - Static method in class io.sphere.sdk.products.commands.updateactions.SetDiscountedPrice
-
- of(String, DiscountedPrice, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetDiscountedPrice
-
- of(Integer, String, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetImageLabel
-
Creates a new update action initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetKey
-
- of(LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.SetMetaDescription
-
- of(LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.SetMetaKeywords
-
- of(LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.SetMetaTitle
-
- of(Integer, List<PriceDraft>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetPrices
-
- of(SearchKeywords) - Static method in class io.sphere.sdk.products.commands.updateactions.SetSearchKeywords
-
- of(SearchKeywords, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetSearchKeywords
-
- of(Integer, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetSku
-
- of(Integer, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetSku
-
- of(ResourceIdentifier<TaxCategory>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetTaxCategory
-
- of(Referenceable<State>) - Static method in class io.sphere.sdk.products.commands.updateactions.TransitionState
-
- of(Referenceable<State>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.TransitionState
-
- of() - Static method in class io.sphere.sdk.products.commands.updateactions.Unpublish
-
- of(String, Attribute) - Static method in class io.sphere.sdk.products.errors.DuplicateAttributeValueError
-
- of(String, List<Attribute>) - Static method in class io.sphere.sdk.products.errors.DuplicateAttributeValuesError
-
- of(String, List<Price>) - Static method in class io.sphere.sdk.products.errors.DuplicatePriceScopeError
-
- of(String, List<String>) - Static method in class io.sphere.sdk.products.errors.DuplicateVariantValuesError
-
- of(String) - Static method in class io.sphere.sdk.products.errors.SearchDeactivatedError
-
- of(String) - Static method in class io.sphere.sdk.products.errors.SearchExecutionFailureError
-
- of(String) - Static method in class io.sphere.sdk.products.errors.SearchFacetPathNotFoundError
-
- of(String) - Static method in class io.sphere.sdk.products.errors.SearchIndexingInProgressError
-
- of() - Static method in interface io.sphere.sdk.products.expansion.ProductExpansionModel
-
- of() - Static method in interface io.sphere.sdk.products.expansion.ProductProjectionExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.products.expansion.ProductVariantExpansionModel
-
- of(String, ImageDimensions, String) - Static method in interface io.sphere.sdk.products.Image
-
- of(String, ImageDimensions) - Static method in interface io.sphere.sdk.products.Image
-
- of(Integer, Integer) - Static method in class io.sphere.sdk.products.ImageDimensions
-
- of(MonetaryAmount) - Static method in interface io.sphere.sdk.products.Price
-
- of(BigDecimal, CurrencyUnit) - Static method in interface io.sphere.sdk.products.Price
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.products.PriceBuilder
-
Creates a new object initialized with the given values.
- of(Price) - Static method in class io.sphere.sdk.products.PriceBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(MonetaryAmount) - Static method in interface io.sphere.sdk.products.PriceDraft
-
- of(BigDecimal, CurrencyUnit) - Static method in interface io.sphere.sdk.products.PriceDraft
-
- of(Price) - Static method in interface io.sphere.sdk.products.PriceDraft
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.products.PriceDraftBuilder
-
- of(PriceDraft) - Static method in class io.sphere.sdk.products.PriceDraftBuilder
-
- of(Price) - Static method in class io.sphere.sdk.products.PriceDraftBuilder
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.products.PriceDraftDsl
-
- of(BigDecimal, CurrencyUnit) - Static method in class io.sphere.sdk.products.PriceDraftDsl
-
- of(Price) - Static method in class io.sphere.sdk.products.PriceDraftDsl
-
- of(Integer, MonetaryAmount) - Static method in class io.sphere.sdk.products.PriceTierBuilder
-
Creates a new object initialized with the given values.
- of(PriceTier) - Static method in class io.sphere.sdk.products.PriceTierBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(ResourceIdentifiable<ProductType>, LocalizedString, LocalizedString, List<ProductVariantDraft>) - Static method in class io.sphere.sdk.products.ProductDraftBuilder
-
- of(ResourceIdentifiable<ProductType>, LocalizedString, LocalizedString, ProductVariantDraft) - Static method in class io.sphere.sdk.products.ProductDraftBuilder
-
- of(ResourceIdentifier<ProductType>, LocalizedString, LocalizedString, ProductVariantDraft) - Static method in class io.sphere.sdk.products.ProductDraftDsl
-
Creates a new object initialized with the given values.
- of(ProductDraft) - Static method in class io.sphere.sdk.products.ProductDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of() - Static method in class io.sphere.sdk.products.ProductVariantDraftDsl
-
Creates a new object initialized with the given values.
- of(ProductVariantDraft) - Static method in class io.sphere.sdk.products.ProductVariantDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of() - Static method in interface io.sphere.sdk.products.queries.EmbeddedProductCatalogDataQueryModel
-
- of() - Static method in interface io.sphere.sdk.products.queries.EmbeddedProductDataQueryModel
-
- of() - Static method in interface io.sphere.sdk.products.queries.EmbeddedProductVariantQueryModel
-
- of(QueryModel<T>, String) - Static method in interface io.sphere.sdk.products.queries.PriceCollectionQueryModel
-
- of(Identifiable<Product>) - Static method in interface io.sphere.sdk.products.queries.ProductByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.products.queries.ProductByIdGet
-
- of(Identifiable<Product>) - Static method in interface io.sphere.sdk.products.queries.ProductByIdHead
-
- of(String) - Static method in interface io.sphere.sdk.products.queries.ProductByIdHead
-
- of(Identifiable<Product>) - Static method in interface io.sphere.sdk.products.queries.ProductByIdProductSelectionGet
-
- of(String) - Static method in interface io.sphere.sdk.products.queries.ProductByIdProductSelectionGet
-
- of(String) - Static method in interface io.sphere.sdk.products.queries.ProductByKeyGet
-
- of(String) - Static method in interface io.sphere.sdk.products.queries.ProductByKeyHead
-
- of(String) - Static method in interface io.sphere.sdk.products.queries.ProductByKeyProductSelectionGet
-
- of(ProductIdentifiable, ProductProjectionType) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionByIdGet
-
- of(String, ProductProjectionType) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionByIdGet
-
- of(String, ProductProjectionType) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionByKeyGet
-
- of(String, String) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionInStoreByIdGet
-
- of(String, String) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionInStoreByKeyGet
-
- of(String) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionInStoreQuery
-
- of(String) - Static method in class io.sphere.sdk.products.queries.ProductProjectionInStoreQueryBuilder
-
- of(ProductProjectionType) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionQuery
-
- of(ProductProjectionType) - Static method in class io.sphere.sdk.products.queries.ProductProjectionQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.products.queries.ProductProjectionQueryModel
-
- of() - Static method in interface io.sphere.sdk.products.queries.ProductQuery
-
- of() - Static method in class io.sphere.sdk.products.queries.ProductQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.products.queries.ProductQueryModel
-
- of() - Static method in interface io.sphere.sdk.products.queries.ProductsHead
-
- of(QueryModel<T>, String) - Static method in interface io.sphere.sdk.products.queries.ProductVariantQueryModel
-
- of(List<LocalizedStringEntry>) - Static method in interface io.sphere.sdk.products.queries.SuggestQuery
-
- of(LocalizedStringEntry) - Static method in interface io.sphere.sdk.products.queries.SuggestQuery
-
- of(CurrencyUnit) - Static method in interface io.sphere.sdk.products.search.PriceSelection
-
- of(CurrencyUnit) - Static method in class io.sphere.sdk.products.search.PriceSelectionBuilder
-
- of(PriceSelection) - Static method in class io.sphere.sdk.products.search.PriceSelectionBuilder
-
- of(CurrencyUnit) - Static method in class io.sphere.sdk.products.search.PriceSelectionDsl
-
- of(ProductProjectionType) - Static method in interface io.sphere.sdk.products.search.ProductProjectionSearch
-
Creates a search request object with the product projection type specified by productProjectionType
.
- of(ProductProjectionType) - Static method in class io.sphere.sdk.products.search.ProductProjectionSearchBuilder
-
- of() - Static method in class io.sphere.sdk.products.search.ProductProjectionSearchModel
-
- of(String) - Static method in interface io.sphere.sdk.products.Suggestion
-
- of(Map<Locale, List<Suggestion>>) - Static method in interface io.sphere.sdk.products.SuggestionResult
-
- of(Reference<Product>) - Static method in interface io.sphere.sdk.productselections.AssignedProductReference
-
- of(Reference<ProductSelection>) - Static method in interface io.sphere.sdk.productselections.AssignedProductSelection
-
- of(ProductSelectionDraft) - Static method in interface io.sphere.sdk.productselections.commands.ProductSelectionCreateCommand
-
- of(Versioned<ProductSelection>) - Static method in interface io.sphere.sdk.productselections.commands.ProductSelectionDeleteCommand
-
- of(Versioned<ProductSelection>, List<? extends UpdateAction<ProductSelection>>) - Static method in interface io.sphere.sdk.productselections.commands.ProductSelectionUpdateCommand
-
Creates a command to update a ProductSelection selected by its ID using several update actions.
- of(Versioned<ProductSelection>, UpdateAction<ProductSelection>, UpdateAction<ProductSelection>...) - Static method in interface io.sphere.sdk.productselections.commands.ProductSelectionUpdateCommand
-
Creates a command to update a ProductSelection selected by its ID using one update action.
- of(ResourceIdentifier<Product>) - Static method in class io.sphere.sdk.productselections.commands.updateactions.AddProduct
-
- of(LocalizedString) - Static method in class io.sphere.sdk.productselections.commands.updateactions.ChangeName
-
Creates a new object initialized with the given values.
- of(ResourceIdentifier<Product>) - Static method in class io.sphere.sdk.productselections.commands.updateactions.RemoveProduct
-
- of(String) - Static method in class io.sphere.sdk.productselections.commands.updateactions.SetKey
-
- of() - Static method in interface io.sphere.sdk.productselections.expansion.ProductSelectionExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.productselections.expansion.ProductSelectionExpansionModel
-
- of(Reference<Product>, Reference<ProductSelection>) - Static method in interface io.sphere.sdk.productselections.ProductSelectionAssignment
-
- of(String) - Static method in interface io.sphere.sdk.productselections.queries.ProductSelectionByIdGet
-
- of(Identifiable<ProductSelection>) - Static method in interface io.sphere.sdk.productselections.queries.ProductSelectionByIdGet
-
- of(Identifiable<ProductSelection>) - Static method in interface io.sphere.sdk.productselections.queries.ProductSelectionByIdProductGet
-
- of(String) - Static method in interface io.sphere.sdk.productselections.queries.ProductSelectionByIdProductGet
-
- of(String) - Static method in interface io.sphere.sdk.productselections.queries.ProductSelectionByIdProductsGet
-
- of(String) - Static method in interface io.sphere.sdk.productselections.queries.ProductSelectionByKeyGet
-
- of(String) - Static method in interface io.sphere.sdk.productselections.queries.ProductSelectionByKeyProductGet
-
- of(String) - Static method in interface io.sphere.sdk.productselections.queries.ProductSelectionByKeyProductsGet
-
- of() - Static method in interface io.sphere.sdk.productselections.queries.ProductSelectionQuery
-
- of() - Static method in class io.sphere.sdk.productselections.queries.ProductSelectionQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.productselections.queries.ProductSelectionQueryModel
-
- of(ProductTypeDraft) - Static method in interface io.sphere.sdk.producttypes.commands.ProductTypeCreateCommand
-
- of(Versioned<ProductType>) - Static method in interface io.sphere.sdk.producttypes.commands.ProductTypeDeleteCommand
-
Creates a command object to delete a
ProductType
by ID.
- of(Versioned<ProductType>, List<? extends UpdateAction<ProductType>>) - Static method in interface io.sphere.sdk.producttypes.commands.ProductTypeUpdateCommand
-
Creates a command to update a ProductType selected by its ID using several update actions.
- of(Versioned<ProductType>, UpdateAction<ProductType>, UpdateAction<ProductType>...) - Static method in interface io.sphere.sdk.producttypes.commands.ProductTypeUpdateCommand
-
Creates a command to update a ProductType selected by its ID using one update action.
- of(AttributeDefinition) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.AddAttributeDefinition
-
- of(AttributeDefinitionDraft) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.AddAttributeDefinition
-
- of(String, EnumValue) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.AddEnumValue
-
- of(String, LocalizedEnumValue) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.AddLocalizedEnumValue
-
- of(String, AttributeConstraint) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeConstraint
-
Creates a new object initialized with the given values.
- of(String, LocalizedString) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeDefinitionLabel
-
- of(String, String) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeName
-
Creates a new object initialized with the given values.
- of(List<AttributeDefinition>) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeOrder
-
Deprecated.
- of(List<String>) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeAttributeOrderByName
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeDescription
-
- of(String, String, String) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeEnumKey
-
Creates a new object initialized with the given values.
- of(String, List<EnumValue>) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeEnumValueOrder
-
- of(String, TextInputHint) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeInputHint
-
- of(String, Boolean) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeIsSearchable
-
- of(String, LocalizedEnumValue) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeLocalizedEnumValueLabel
-
- of(String, List<LocalizedEnumValue>) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeLocalizedEnumValueOrder
-
- of(String) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangeName
-
- of(String, EnumValue) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.ChangePlainEnumValueLabel
-
- of(String) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.RemoveAttributeDefinition
-
- of(String, List<String>) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.RemoveEnumValues
-
- of(String, String) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.RemoveEnumValues
-
- of(String, LocalizedString) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.SetInputTip
-
- of(String) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.SetKey
-
- of(String, String, String, String) - Static method in class io.sphere.sdk.producttypes.errors.AttributeDefinitionAlreadyExistsError
-
- of(String, String, String, String) - Static method in class io.sphere.sdk.producttypes.errors.AttributeDefinitionTypeConflictError
-
- of(String, String) - Static method in class io.sphere.sdk.producttypes.errors.AttributeNameDoesNotExistError
-
- of(String, String[]) - Static method in class io.sphere.sdk.producttypes.errors.DuplicateEnumValuesError
-
- of(String, String, String) - Static method in class io.sphere.sdk.producttypes.errors.EnumKeyAlreadyExistsError
-
- of(String, String, String) - Static method in class io.sphere.sdk.producttypes.errors.EnumKeyDoesNotExistError
-
- of(String) - Static method in class io.sphere.sdk.producttypes.errors.EnumValueIsUsedError
-
- of(String) - Static method in class io.sphere.sdk.producttypes.errors.EnumValuesMustMatchError
-
- of() - Static method in interface io.sphere.sdk.producttypes.expansion.ProductTypeExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.producttypes.expansion.ProductTypeExpansionModel
-
- of(List<AttributeDefinition>) - Static method in interface io.sphere.sdk.producttypes.MetaProductType
-
- of(Collection<? extends AttributeDefinitionContainer>) - Static method in interface io.sphere.sdk.producttypes.MetaProductType
-
- of(String, String, String, List<AttributeDefinition>) - Static method in interface io.sphere.sdk.producttypes.ProductTypeDraft
-
Deprecated.
- of(String, String, String, List<AttributeDefinitionDraft>) - Static method in class io.sphere.sdk.producttypes.ProductTypeDraftBuilder
-
Creates a new object initialized with the given values.
- of(ProductTypeDraft) - Static method in class io.sphere.sdk.producttypes.ProductTypeDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(ProductType) - Static method in class io.sphere.sdk.producttypes.ProductTypeDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String, String, String, List<AttributeDefinitionDraft>) - Static method in class io.sphere.sdk.producttypes.ProductTypeDraftDsl
-
Creates a new object initialized with the given values.
- of(ProductTypeDraft) - Static method in class io.sphere.sdk.producttypes.ProductTypeDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(Collection<ProductType>) - Static method in interface io.sphere.sdk.producttypes.ProductTypeLocalRepository
-
- of(String) - Static method in interface io.sphere.sdk.producttypes.queries.ProductTypeByIdGet
-
- of(Identifiable<ProductType>) - Static method in interface io.sphere.sdk.producttypes.queries.ProductTypeByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.producttypes.queries.ProductTypeByKeyGet
-
- of() - Static method in interface io.sphere.sdk.producttypes.queries.ProductTypeQuery
-
- of() - Static method in class io.sphere.sdk.producttypes.queries.ProductTypeQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.producttypes.queries.ProductTypeQueryModel
-
- of(Set<LocalizedEnumValue>) - Static method in class io.sphere.sdk.projects.CartClassificationDraftBuilder
-
Creates a new object initialized with the given values.
- of(CartClassificationDraft) - Static method in class io.sphere.sdk.projects.CartClassificationDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(Set<LocalizedEnumValue>) - Static method in class io.sphere.sdk.projects.CartClassificationDraftDsl
-
Creates a new object initialized with the given values.
- of(CartClassificationDraft) - Static method in class io.sphere.sdk.projects.CartClassificationDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of() - Static method in class io.sphere.sdk.projects.CartScoreDraftBuilder
-
Creates a new object initialized with the given values.
- of(CartScoreDraft) - Static method in class io.sphere.sdk.projects.CartScoreDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of() - Static method in class io.sphere.sdk.projects.CartScoreDraftDsl
-
Creates a new object initialized with the given values.
- of(CartScoreDraft) - Static method in class io.sphere.sdk.projects.CartScoreDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of() - Static method in class io.sphere.sdk.projects.CartValueDraftBuilder
-
Creates a new object initialized with the given values.
- of(CartValueDraft) - Static method in class io.sphere.sdk.projects.CartValueDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of() - Static method in class io.sphere.sdk.projects.CartValueDraftDsl
-
Creates a new object initialized with the given values.
- of(CartValueDraft) - Static method in class io.sphere.sdk.projects.CartValueDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(Project, List<? extends UpdateAction<Project>>) - Static method in interface io.sphere.sdk.projects.commands.ProjectUpdateCommand
-
- of(Project, UpdateAction<Project>) - Static method in interface io.sphere.sdk.projects.commands.ProjectUpdateCommand
-
- of(CartsConfiguration) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeCartsConfiguration
-
Creates a new object initialized with the given values.
- of(List<CountryCode>) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeCountries
-
Creates a new object initialized with the given values.
- of(Boolean) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeCountryTaxRateFallbackEnabled
-
Creates a new object initialized with the given values.
- of(List<String>) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeCurrencies
-
Creates a new object initialized with the given values.
- of(List<String>) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeLanguages
-
Creates a new object initialized with the given values.
- of(MessagesConfiguration) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeMessages
-
Creates a new object initialized with the given values.
- of(MessagesConfigurationDraft) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeMessagesConfiguration
-
Creates a new object initialized with the given values.
- of(Boolean) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeMessagesEnabled
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeName
-
Creates a new object initialized with the given values.
- of(Boolean) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeProductSearchIndexingEnabled
-
Creates a new object initialized with the given values.
- of(ShoppingListsConfiguration) - Static method in class io.sphere.sdk.projects.commands.updateactions.ChangeShoppingListsConfiguration
-
Creates a new object initialized with the given values.
- of(ExternalOAuth) - Static method in class io.sphere.sdk.projects.commands.updateactions.SetExternalOAuth
-
Creates a new object initialized with the given values.
- of(ShippingRateInputTypeDraft) - Static method in class io.sphere.sdk.projects.commands.updateactions.SetShippingRateInputType
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.projects.error.LanguageUsedInStores
-
- of(String, URL) - Static method in interface io.sphere.sdk.projects.ExternalOAuth
-
- of(Boolean, Long) - Static method in interface io.sphere.sdk.projects.MessagesConfigurationDraft
-
- of() - Static method in class io.sphere.sdk.projects.queries.ProjectGet
-
- of(QueryModel<T>) - Static method in class io.sphere.sdk.queries.DirectionlessQuerySort
-
- of(Long, Long, Long, List<T>) - Static method in interface io.sphere.sdk.queries.PagedQueryResult
-
- of(Long, Long, List<T>) - Static method in interface io.sphere.sdk.queries.PagedQueryResult
-
- of(List<T>) - Static method in interface io.sphere.sdk.queries.PagedQueryResult
-
- of(T) - Static method in interface io.sphere.sdk.queries.PagedQueryResult
-
- of(String) - Static method in interface io.sphere.sdk.queries.QueryPredicate
-
- of(String) - Static method in interface io.sphere.sdk.queries.QuerySort
-
- of(List<RetryRule>) - Static method in interface io.sphere.sdk.retry.AsyncRetrySupervisor
-
- of(Predicate<RetryContext>, Function<RetryContext, RetryStrategy>) - Static method in interface io.sphere.sdk.retry.RetryRule
-
- of(ReviewDraft) - Static method in interface io.sphere.sdk.reviews.commands.ReviewCreateCommand
-
Creates a command object to create a
Review
.
- of(Versioned<Review>) - Static method in interface io.sphere.sdk.reviews.commands.ReviewDeleteCommand
-
Creates a command object to delete a
Review
by ID.
- of(Versioned<Review>, boolean) - Static method in interface io.sphere.sdk.reviews.commands.ReviewDeleteCommand
-
Creates a command object to delete a
Review
by ID.
- of(Versioned<Review>, List<? extends UpdateAction<Review>>) - Static method in interface io.sphere.sdk.reviews.commands.ReviewUpdateCommand
-
Creates a command to update a Review selected by its ID using several update actions.
- of(Versioned<Review>, UpdateAction<Review>, UpdateAction<Review>...) - Static method in interface io.sphere.sdk.reviews.commands.ReviewUpdateCommand
-
Creates a command to update a Review selected by its ID using one update action.
- of(String) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetAuthorName
-
- of(ResourceIdentifiable<Customer>) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomer
-
- of(String) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetKey
-
- of(Locale) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetLocale
-
- of(Integer) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetRating
-
- of(ResourceIdentifiable<?>) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetTarget
-
- of(String) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetText
-
- of(String) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetTitle
-
- of(ResourceIdentifiable<State>) - Static method in class io.sphere.sdk.reviews.commands.updateactions.TransitionState
-
- of(ResourceIdentifiable<State>, Boolean) - Static method in class io.sphere.sdk.reviews.commands.updateactions.TransitionState
-
- of() - Static method in interface io.sphere.sdk.reviews.expansion.ReviewExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.reviews.queries.ReviewByIdGet
-
- of(Identifiable<Review>) - Static method in interface io.sphere.sdk.reviews.queries.ReviewByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.reviews.queries.ReviewByKeyGet
-
- of() - Static method in interface io.sphere.sdk.reviews.queries.ReviewQuery
-
- of() - Static method in class io.sphere.sdk.reviews.queries.ReviewQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.reviews.queries.ReviewQueryModel
-
- of(QueryModel<T>, String) - Static method in interface io.sphere.sdk.reviews.queries.ReviewRatingStatisticsQueryModel
-
- of(ReviewDraft) - Static method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in interface io.sphere.sdk.search.FilteredFacetExpression
-
- of(Long) - Static method in class io.sphere.sdk.search.FilteredFacetResult
-
- of(Long, Long) - Static method in class io.sphere.sdk.search.FilteredFacetResult
-
- of(String) - Static method in interface io.sphere.sdk.search.FilterExpression
-
- of(T, T) - Static method in class io.sphere.sdk.search.model.FacetRange
-
Creates an interval with the given lower and upper endpoints.
- of(T, T) - Static method in class io.sphere.sdk.search.model.FilterRange
-
Creates an interval with the given lower and upper endpoints.
- of(String) - Static method in class io.sphere.sdk.search.model.MultiValueSortSearchModel
-
Creates an instance of the search model to generate multi-valued sort expressions.
- of() - Static method in class io.sphere.sdk.search.model.MultiValueSortSearchModelFactory
-
- of(String, String, Long, Long, String, String, String, Double) - Static method in class io.sphere.sdk.search.model.RangeStats
-
- of(String) - Static method in class io.sphere.sdk.search.model.RangeTermFacetedSearchSearchModel
-
Creates an instance of the search model to generate range and term faceted search expressions.
- of(String, Function<V, String>) - Static method in class io.sphere.sdk.search.model.RangeTermFacetSearchModel
-
Creates an instance of the search model to generate range and term facet expressions.
- of(String, Function<V, String>) - Static method in class io.sphere.sdk.search.model.RangeTermFilterSearchModel
-
Creates an instance of the search model to generate range and term filter expressions.
- of(String, String, Long, String, String) - Static method in class io.sphere.sdk.search.model.SimpleRangeStats
-
- of(String) - Static method in class io.sphere.sdk.search.model.SingleValueSortSearchModel
-
Creates an instance of the search model to generate single-valued sort expressions.
- of() - Static method in class io.sphere.sdk.search.model.SingleValueSortSearchModelFactory
-
- of(String) - Static method in class io.sphere.sdk.search.model.TermFacetedSearchSearchModel
-
Creates an instance of the search model to generate term faceted search expressions.
- of(String, Function<V, String>) - Static method in interface io.sphere.sdk.search.model.TermFacetSearchModel
-
Creates an instance of the search model to generate term facet expressions.
- of(String, Function<V, String>) - Static method in class io.sphere.sdk.search.model.TermFacetSearchModelImpl
-
Creates an instance of the search model to generate term facet expressions.
- of(String, Function<V, String>) - Static method in interface io.sphere.sdk.search.model.TermFilterExistsAndMissingSearchModel
-
Creates an instance of the search model to generate term filters.
- of(String, Function<V, String>) - Static method in interface io.sphere.sdk.search.model.TermFilterSearchModel
-
Creates an instance of the search model to generate term filters.
- of(String, Function<V, String>) - Static method in class io.sphere.sdk.search.model.TermFilterSearchModelImpl
-
Creates an instance of the search model to generate term filters.
- of(RangeFacetExpression<T>, List<FilterExpression<T>>) - Static method in interface io.sphere.sdk.search.RangeFacetedSearchExpression
-
- of(String) - Static method in interface io.sphere.sdk.search.RangeFacetExpression
-
- of(List<RangeStats>) - Static method in class io.sphere.sdk.search.RangeFacetResult
-
- of(String) - Static method in interface io.sphere.sdk.search.SearchKeyword
-
- of(String, SuggestTokenizer) - Static method in interface io.sphere.sdk.search.SearchKeyword
-
- of(Locale, List<SearchKeyword>) - Static method in interface io.sphere.sdk.search.SearchKeywords
-
- of(Locale, List<SearchKeyword>, Locale, List<SearchKeyword>) - Static method in interface io.sphere.sdk.search.SearchKeywords
-
- of(Map<Locale, List<SearchKeyword>>) - Static method in interface io.sphere.sdk.search.SearchKeywords
-
- of() - Static method in interface io.sphere.sdk.search.SearchKeywords
-
- of(String) - Static method in interface io.sphere.sdk.search.SortExpression
-
- of(TermFacetExpression<T>, List<FilterExpression<T>>) - Static method in interface io.sphere.sdk.search.TermFacetedSearchExpression
-
- of(String) - Static method in interface io.sphere.sdk.search.TermFacetExpression
-
- of(Long, Long, Long, List<TermStats>) - Static method in class io.sphere.sdk.search.TermFacetResult
-
- of(String, Long, Long) - Static method in interface io.sphere.sdk.search.TermStats
-
- of(String, Long) - Static method in interface io.sphere.sdk.search.TermStats
-
- of(String) - Static method in class io.sphere.sdk.search.tokenizer.CustomSuggestTokenizer
-
- of(List<String>) - Static method in class io.sphere.sdk.search.tokenizer.CustomSuggestTokenizer
-
- of() - Static method in class io.sphere.sdk.search.tokenizer.WhiteSpaceSuggestTokenizer
-
- of(String) - Static method in interface io.sphere.sdk.selection.LocaleSelection
-
- of(List<String>) - Static method in interface io.sphere.sdk.selection.LocaleSelection
-
- of(String) - Static method in class io.sphere.sdk.selection.LocaleSelectionBuilder
-
- of(List<String>) - Static method in class io.sphere.sdk.selection.LocaleSelectionBuilder
-
- of(String) - Static method in class io.sphere.sdk.selection.LocaleSelectionDsl
-
- of(String) - Static method in interface io.sphere.sdk.selection.StoreSelection
-
- of(String) - Static method in class io.sphere.sdk.selection.StoreSelectionBuilder
-
- of(String) - Static method in class io.sphere.sdk.selection.StoreSelectionDsl
-
- of(CustomObjectBigIntegerNumberGeneratorConfig) - Static method in class io.sphere.sdk.sequencegenerators.CustomObjectBigIntegerNumberGenerator
-
- of(SphereClient, String) - Static method in class io.sphere.sdk.sequencegenerators.CustomObjectBigIntegerNumberGeneratorConfigBuilder
-
Creates a new builder instance.
- of(String, MonetaryAmount) - Static method in class io.sphere.sdk.shippingmethods.CartClassificationBuilder
-
Creates a new object initialized with the given values.
- of(CartClassification) - Static method in class io.sphere.sdk.shippingmethods.CartClassificationBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(Long, MonetaryAmount) - Static method in class io.sphere.sdk.shippingmethods.CartScoreBuilder
-
Creates a new object initialized with the given values.
- of(Long, PriceFunction) - Static method in class io.sphere.sdk.shippingmethods.CartScoreBuilder
-
Creates a new object initialized with the given values.
- of(CartScore) - Static method in class io.sphere.sdk.shippingmethods.CartScoreBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(Long, MonetaryAmount) - Static method in class io.sphere.sdk.shippingmethods.CartValueBuilder
-
Creates a new object initialized with the given values.
- of(CartValue) - Static method in class io.sphere.sdk.shippingmethods.CartValueBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(ShippingMethodDraft) - Static method in interface io.sphere.sdk.shippingmethods.commands.ShippingMethodCreateCommand
-
- of(Versioned<ShippingMethod>) - Static method in interface io.sphere.sdk.shippingmethods.commands.ShippingMethodDeleteCommand
-
- of(Versioned<ShippingMethod>, List<? extends UpdateAction<ShippingMethod>>) - Static method in interface io.sphere.sdk.shippingmethods.commands.ShippingMethodUpdateCommand
-
Creates a command to update a ShippingMethod selected by its ID using several update actions.
- of(Versioned<ShippingMethod>, UpdateAction<ShippingMethod>, UpdateAction<ShippingMethod>...) - Static method in interface io.sphere.sdk.shippingmethods.commands.ShippingMethodUpdateCommand
-
Creates a command to update a ShippingMethod selected by its ID using one update action.
- of(ShippingRate, Referenceable<Zone>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.AddShippingRate
-
- of(Referenceable<Zone>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.AddZone
-
- of(boolean) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.ChangeIsDefault
-
- of(String) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.ChangeName
-
Creates a new update action from the given parameters.
- of(Referenceable<TaxCategory>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.ChangeTaxCategory
-
- of(ResourceIdentifier<TaxCategory>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.ChangeTaxCategory
-
- of(ShippingRate, Referenceable<Zone>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.RemoveShippingRate
-
- of(ResourceIdentifier<Zone>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.RemoveZone
-
- of(String) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetDescription
-
Deprecated.
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetKey
-
Creates a new update action from the given parameters.
- of(LocalizedString) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetLocalizedDescription
-
Creates a new object initialized with the given values.
- of(LocalizedString) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetLocalizedName
-
Creates a new object initialized with the given values.
- of(String) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetPredicate
-
Creates a new update action from the given parameters.
- of(String, OrderEditPreviewFailure) - Static method in class io.sphere.sdk.shippingmethods.errors.EditPreviewFailedError
-
- of(String, String, String) - Static method in class io.sphere.sdk.shippingmethods.errors.InvalidItemShippingDetailsError
-
- of() - Static method in interface io.sphere.sdk.shippingmethods.expansion.ShippingMethodExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.shippingmethods.expansion.ShippingMethodExpansionModel
-
- of(String, String) - Static method in class io.sphere.sdk.shippingmethods.PriceFunctionBuilder
-
Creates a new object initialized with the given values.
- of(PriceFunction) - Static method in class io.sphere.sdk.shippingmethods.PriceFunctionBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodByIdGet
-
- of(Identifiable<ShippingMethod>) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodByKeyGet
-
- of() - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodQuery
-
- of() - Static method in class io.sphere.sdk.shippingmethods.queries.ShippingMethodQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodQueryModel
-
- of(Referenceable<Cart>) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodsByCartGet
-
- of(String) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodsByCartGet
-
- of(CountryCode) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodsByLocationGet
-
- of(CountryCode, String) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodsByLocationGet
-
- of(CountryCode, CurrencyUnit) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodsByLocationGet
-
- of(CountryCode, String, CurrencyUnit) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodsByLocationGet
-
- of(Identifiable<OrderEdit>, CountryCode) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodsByOrderEditGet
-
- of(Identifiable<OrderEdit>, CountryCode, String) - Static method in interface io.sphere.sdk.shippingmethods.queries.ShippingMethodsByOrderEditGet
-
- of(String, String, Referenceable<TaxCategory>, List<ZoneRateDraft>) - Static method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
Deprecated.
- of(String, String, Referenceable<TaxCategory>, List<ZoneRateDraft>, boolean) - Static method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
Deprecated.
- of(String, LocalizedString, Referenceable<TaxCategory>, List<ZoneRateDraft>) - Static method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- of(String, LocalizedString, Referenceable<TaxCategory>, List<ZoneRateDraft>, boolean) - Static method in interface io.sphere.sdk.shippingmethods.ShippingMethodDraft
-
- of(String, String, ResourceIdentifier<TaxCategory>, List<ZoneRateDraft>, Boolean) - Static method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
Creates a new object initialized with the given values.
- of(String, ResourceIdentifier<TaxCategory>, List<ZoneRateDraft>, Boolean) - Static method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
Creates a new object initialized with the given values.
- of(String, LocalizedString, ResourceIdentifier<TaxCategory>, List<ZoneRateDraft>, Boolean) - Static method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
Creates a new object initialized with the given values.
- of(ShippingMethodDraft) - Static method in class io.sphere.sdk.shippingmethods.ShippingMethodDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(MonetaryAmount, MonetaryAmount) - Static method in interface io.sphere.sdk.shippingmethods.ShippingRate
-
- of(MonetaryAmount, MonetaryAmount, Boolean) - Static method in interface io.sphere.sdk.shippingmethods.ShippingRate
-
- of(MonetaryAmount, MonetaryAmount, List<ShippingRatePriceTier>) - Static method in interface io.sphere.sdk.shippingmethods.ShippingRate
-
- of(MonetaryAmount, MonetaryAmount, Boolean, List<ShippingRatePriceTier>) - Static method in interface io.sphere.sdk.shippingmethods.ShippingRate
-
- of(MonetaryAmount) - Static method in interface io.sphere.sdk.shippingmethods.ShippingRate
-
- of(Referenceable<Zone>, List<ShippingRate>) - Static method in interface io.sphere.sdk.shippingmethods.ZoneRate
-
- of(ResourceIdentifier<Zone>, List<ShippingRate>) - Static method in class io.sphere.sdk.shippingmethods.ZoneRateDraftBuilder
-
Creates a new object initialized with the given values.
- of(ZoneRateDraft) - Static method in class io.sphere.sdk.shippingmethods.ZoneRateDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(ResourceIdentifier<Zone>, List<ShippingRate>) - Static method in class io.sphere.sdk.shippingmethods.ZoneRateDraftDsl
-
Creates a new object initialized with the given values.
- of(ZoneRateDraft) - Static method in class io.sphere.sdk.shippingmethods.ZoneRateDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(ShoppingListDraft) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListCreateCommand
-
- of(Versioned<ShoppingList>) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListDeleteCommand
-
- of(Versioned<ShoppingList>, boolean) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListDeleteCommand
-
- of(String, ShoppingListDraft) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListInStoreCreateCommand
-
- of(String, Versioned<ShoppingList>) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListInStoreDeleteCommand
-
- of(String, Versioned<ShoppingList>, boolean) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListInStoreDeleteCommand
-
- of(Versioned<ShoppingList>, String, List<? extends UpdateAction<ShoppingList>>) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListInStoreUpdateCommand
-
- of(Versioned<ShoppingList>, String, UpdateAction<ShoppingList>, UpdateAction<ShoppingList>...) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListInStoreUpdateCommand
-
- of(Versioned<ShoppingList>, List<? extends UpdateAction<ShoppingList>>) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListUpdateCommand
-
Creates a command to update a ShoppingList selected by its ID using several update actions.
- of(Versioned<ShoppingList>, UpdateAction<ShoppingList>, UpdateAction<ShoppingList>...) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListUpdateCommand
-
Creates a command to update a ShoppingList selected by its ID using one update action.
- of(ProductIdentifiable) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddLineItem
-
- of(LineItemDraft) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddLineItem
-
- of(String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddLineItem
-
- of(LocalizedString) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddTextLineItem
-
- of(String, Long) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeLineItemQuantity
-
- of(LineItem, Long) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeLineItemQuantity
-
- of(List<String>) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeLineItemsOrder
-
- of(LocalizedString) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeName
-
- of(String, LocalizedString) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeTextLineItemName
-
- of(TextLineItem, LocalizedString) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeTextLineItemName
-
- of(String, Long) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeTextLineItemQuantity
-
- of(TextLineItem, Long) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeTextLineItemQuantity
-
- of(List<String>) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.ChangeTextLineItemsOrder
-
- of(String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.RemoveLineItem
-
- of(LineItem) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.RemoveLineItem
-
- of(String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.RemoveTextLineItem
-
- of(TextLineItem) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.RemoveTextLineItem
-
- of(String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetAnonymousId
-
Creates a new object initialized with the given values.
- of(ResourceIdentifiable<Customer>) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomer
-
- of(Integer) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetDeleteDaysAfterLastModification
-
- of(LocalizedString) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetDescription
-
- of(String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetKey
-
- of(LocalizedString) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetSlug
-
- of(ResourceIdentifier<Store>) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetStore
-
- of(String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemDescription
-
- of(TextLineItem) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemDescription
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.shoppinglists.expansion.LineItemExpansionModel
-
- of() - Static method in interface io.sphere.sdk.shoppinglists.expansion.ShoppingListExpansionModel
-
- of(String) - Static method in class io.sphere.sdk.shoppinglists.LineItemDraftDsl
-
Creates a new object initialized with the given values.
- of(LineItemDraft) - Static method in class io.sphere.sdk.shoppinglists.LineItemDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in interface io.sphere.sdk.shoppinglists.queries.ShoppingListByIdGet
-
- of(Identifiable<ShoppingList>) - Static method in interface io.sphere.sdk.shoppinglists.queries.ShoppingListByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.shoppinglists.queries.ShoppingListByKeyGet
-
- of(String, String) - Static method in interface io.sphere.sdk.shoppinglists.queries.ShoppingListInStoreByIdGet
-
- of(String, String) - Static method in interface io.sphere.sdk.shoppinglists.queries.ShoppingListInStoreByKeyGet
-
- of(String) - Static method in interface io.sphere.sdk.shoppinglists.queries.ShoppingListInStoreQuery
-
- of(String) - Static method in class io.sphere.sdk.shoppinglists.queries.ShoppingListInStoreQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.shoppinglists.queries.ShoppingListQuery
-
- of() - Static method in class io.sphere.sdk.shoppinglists.queries.ShoppingListQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.shoppinglists.queries.ShoppingListQueryModel
-
- of(LocalizedString) - Static method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
Creates a new object initialized with the given values.
- of(ShoppingListDraft) - Static method in class io.sphere.sdk.shoppinglists.ShoppingListDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(LocalizedString, Long) - Static method in class io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder
-
Creates a new object initialized with the given values.
- of(TextLineItemDraft) - Static method in class io.sphere.sdk.shoppinglists.TextLineItemDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(LocalizedString, Long) - Static method in class io.sphere.sdk.shoppinglists.TextLineItemDraftDsl
-
Creates a new object initialized with the given values.
- of(TextLineItemDraft) - Static method in class io.sphere.sdk.shoppinglists.TextLineItemDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(StateDraft) - Static method in interface io.sphere.sdk.states.commands.StateCreateCommand
-
Creates a command object to create a
State
.
- of(Versioned<State>) - Static method in interface io.sphere.sdk.states.commands.StateDeleteCommand
-
Creates a command object to delete a
State
by ID.
- of(Versioned<State>, List<? extends UpdateAction<State>>) - Static method in interface io.sphere.sdk.states.commands.StateUpdateCommand
-
Creates a command to update a State selected by its ID using several update actions.
- of(Versioned<State>, UpdateAction<State>, UpdateAction<State>...) - Static method in interface io.sphere.sdk.states.commands.StateUpdateCommand
-
Creates a command to update a State selected by its ID using one update action.
- of(Set<StateRole>) - Static method in class io.sphere.sdk.states.commands.updateactions.AddRoles
-
- of(boolean) - Static method in class io.sphere.sdk.states.commands.updateactions.ChangeInitial
-
- of(String) - Static method in class io.sphere.sdk.states.commands.updateactions.ChangeKey
-
- of(StateType) - Static method in class io.sphere.sdk.states.commands.updateactions.ChangeType
-
- of(Set<StateRole>) - Static method in class io.sphere.sdk.states.commands.updateactions.RemoveRoles
-
- of(LocalizedString) - Static method in class io.sphere.sdk.states.commands.updateactions.SetDescription
-
- of(LocalizedString) - Static method in class io.sphere.sdk.states.commands.updateactions.SetName
-
- of(Set<StateRole>) - Static method in class io.sphere.sdk.states.commands.updateactions.SetRoles
-
- of(Set<Reference<State>>) - Static method in class io.sphere.sdk.states.commands.updateactions.SetTransitions
-
- of() - Static method in interface io.sphere.sdk.states.expansion.StateExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.states.expansion.StateExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.states.queries.StateByIdGet
-
- of(Identifiable<State>) - Static method in interface io.sphere.sdk.states.queries.StateByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.states.queries.StateByKeyGet
-
- of() - Static method in interface io.sphere.sdk.states.queries.StateQuery
-
- of() - Static method in class io.sphere.sdk.states.queries.StateQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.states.queries.StateQueryModel
-
- of(String, StateType) - Static method in interface io.sphere.sdk.states.StateDraft
-
- of(String, StateType) - Static method in class io.sphere.sdk.states.StateDraftBuilder
-
- of(StateDraft) - Static method in class io.sphere.sdk.states.StateDraftBuilder
-
- of(StoreDraft) - Static method in interface io.sphere.sdk.stores.commands.StoreCreateCommand
-
Creates a command object to create a
Store
.
- of(Versioned<Store>) - Static method in interface io.sphere.sdk.stores.commands.StoreDeleteCommand
-
Creates a command object to delete a
Store
by ID.
- of(Versioned<Store>, List<? extends UpdateAction<Store>>) - Static method in interface io.sphere.sdk.stores.commands.StoreUpdateCommand
-
Creates a command to update a Store selected by its ID using several update actions.
- of(Versioned<Store>, UpdateAction<Store>, UpdateAction<Store>...) - Static method in interface io.sphere.sdk.stores.commands.StoreUpdateCommand
-
Creates a command to update a Store selected by its ID using one update action.
- of(Referenceable<Channel>) - Static method in class io.sphere.sdk.stores.commands.updateactions.AddDistributionChannel
-
- of(ProductSelectionSettingDraft) - Static method in class io.sphere.sdk.stores.commands.updateactions.AddProductSelection
-
- of(Referenceable<Channel>) - Static method in class io.sphere.sdk.stores.commands.updateactions.AddSupplyChannel
-
- of(ResourceIdentifier<ProductSelection>, Boolean) - Static method in class io.sphere.sdk.stores.commands.updateactions.ChangeProductSelection
-
- of(Referenceable<Channel>) - Static method in class io.sphere.sdk.stores.commands.updateactions.RemoveDistributionChannel
-
- of(ResourceIdentifier<ProductSelection>) - Static method in class io.sphere.sdk.stores.commands.updateactions.RemoveProductSelection
-
- of(Referenceable<Channel>) - Static method in class io.sphere.sdk.stores.commands.updateactions.RemoveSupplyChannel
-
- of(List<Referenceable<Channel>>) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetDistributionChannels
-
- of(List<String>) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetLanguages
-
Creates a new object initialized with the given values.
- of(LocalizedString) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetName
-
Creates a new object initialized with the given values.
- of(List<ProductSelectionSettingDraft>) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetProductSelections
-
- of(List<Referenceable<Channel>>) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetSupplyChannels
-
- of(String, ResourceIdentifier<Channel>, ChannelRole) - Static method in class io.sphere.sdk.stores.error.MissingRoleOnChannelError
-
- of(String, List<String>) - Static method in class io.sphere.sdk.stores.error.ProjectNotConfiguredForLanguagesError
-
- of() - Static method in interface io.sphere.sdk.stores.expansion.StoreExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.stores.expansion.StoreExpansionModel
-
- of(Reference<ProductSelection>, Boolean) - Static method in interface io.sphere.sdk.stores.ProductSelectionSetting
-
- of(ResourceIdentifier<ProductSelection>, Boolean) - Static method in class io.sphere.sdk.stores.ProductSelectionSettingDraftBuilder
-
Creates a new object initialized with the given values.
- of(ProductSelectionSettingDraft) - Static method in class io.sphere.sdk.stores.ProductSelectionSettingDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(ResourceIdentifier<ProductSelection>, Boolean) - Static method in class io.sphere.sdk.stores.ProductSelectionSettingDraftDsl
-
Creates a new object initialized with the given values.
- of(ProductSelectionSettingDraft) - Static method in class io.sphere.sdk.stores.ProductSelectionSettingDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in interface io.sphere.sdk.stores.queries.StoreByIdGet
-
- of(Identifiable<Store>) - Static method in interface io.sphere.sdk.stores.queries.StoreByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.stores.queries.StoreByKeyGet
-
- of() - Static method in interface io.sphere.sdk.stores.queries.StoreQuery
-
- of() - Static method in class io.sphere.sdk.stores.queries.StoreQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.stores.queries.StoreQueryModel
-
- of(String, LocalizedString) - Static method in interface io.sphere.sdk.stores.StoreDraft
-
- of(String) - Static method in class io.sphere.sdk.stores.StoreDraftBuilder
-
Creates a new object initialized with the given values.
- of(String, LocalizedString) - Static method in class io.sphere.sdk.stores.StoreDraftBuilder
-
Creates a new object initialized with the given values.
- of(String, LocalizedString, List<String>) - Static method in class io.sphere.sdk.stores.StoreDraftBuilder
-
Creates a new object initialized with the given values.
- of(StoreDraft) - Static method in class io.sphere.sdk.stores.StoreDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String) - Static method in class io.sphere.sdk.stores.StoreDraftDsl
-
Creates a new object initialized with the given values.
- of(String, LocalizedString) - Static method in class io.sphere.sdk.stores.StoreDraftDsl
-
Creates a new object initialized with the given values.
- of(String, LocalizedString, List<String>) - Static method in class io.sphere.sdk.stores.StoreDraftDsl
-
Creates a new object initialized with the given values.
- of(StoreDraft) - Static method in class io.sphere.sdk.stores.StoreDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String, String) - Static method in class io.sphere.sdk.subscriptions.AwsCredentials
-
- of(String) - Static method in interface io.sphere.sdk.subscriptions.AzureServiceBusDestination
-
- of(String) - Static method in interface io.sphere.sdk.subscriptions.ChangeSubscription
-
- of(SubscriptionDraft) - Static method in interface io.sphere.sdk.subscriptions.commands.SubscriptionCreateCommand
-
- of(Versioned<Subscription>) - Static method in interface io.sphere.sdk.subscriptions.commands.SubscriptionDeleteCommand
-
- of(Versioned<Subscription>, List<? extends UpdateAction<Subscription>>) - Static method in interface io.sphere.sdk.subscriptions.commands.SubscriptionUpdateCommand
-
Creates a command to update a Subscription selected by its ID using several update actions.
- of(Versioned<Subscription>, UpdateAction<Subscription>, UpdateAction<Subscription>...) - Static method in interface io.sphere.sdk.subscriptions.commands.SubscriptionUpdateCommand
-
Creates a command to update a Subscription selected by its ID using one update action.
- of(Destination) - Static method in class io.sphere.sdk.subscriptions.commands.updateactions.ChangeDestination
-
Creates a new object initialized with the given values.
- of(List<ChangeSubscription>) - Static method in class io.sphere.sdk.subscriptions.commands.updateactions.SetChanges
-
Creates a update action to set the changes.
- of(String) - Static method in class io.sphere.sdk.subscriptions.commands.updateactions.SetKey
-
Creates a new update action from the given parameters.
- of(List<MessageSubscription>) - Static method in class io.sphere.sdk.subscriptions.commands.updateactions.SetMessages
-
Creates a update action to set the messages.
- of() - Static method in interface io.sphere.sdk.subscriptions.expansion.SubscriptionExpansionModel
-
- of(URI) - Static method in interface io.sphere.sdk.subscriptions.IronMqDestination
-
- of(String) - Static method in interface io.sphere.sdk.subscriptions.MessageSubscription
-
Creates a message subscription for all message types of the given resource type.
- of(String, List<String>) - Static method in interface io.sphere.sdk.subscriptions.MessageSubscription
-
Creates a message subscription for the given messages types of the given resource type.
- of(String, String) - Static method in interface io.sphere.sdk.subscriptions.PubSubDestination
-
- of(String) - Static method in interface io.sphere.sdk.subscriptions.queries.SubscriptionByIdGet
-
- of(Identifiable<Subscription>) - Static method in interface io.sphere.sdk.subscriptions.queries.SubscriptionByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.subscriptions.queries.SubscriptionByKeyGet
-
- of() - Static method in interface io.sphere.sdk.subscriptions.queries.SubscriptionQuery
-
- of() - Static method in class io.sphere.sdk.subscriptions.queries.SubscriptionQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.subscriptions.queries.SubscriptionQueryModel
-
- of(AwsCredentials, String) - Static method in interface io.sphere.sdk.subscriptions.SnsDestination
-
Creates a new sns destination with the given credentials and topic.
- of(AwsCredentials, String, URI) - Static method in interface io.sphere.sdk.subscriptions.SqsDestination
-
- of(Destination) - Static method in class io.sphere.sdk.subscriptions.SubscriptionDraftBuilder
-
Creates a new object initialized with the given values.
- of(SubscriptionDraft) - Static method in class io.sphere.sdk.subscriptions.SubscriptionDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(Destination) - Static method in class io.sphere.sdk.subscriptions.SubscriptionDraftDsl
-
Creates a new object initialized with the given values.
- of(SubscriptionDraft) - Static method in class io.sphere.sdk.subscriptions.SubscriptionDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(TaxCategoryDraft) - Static method in interface io.sphere.sdk.taxcategories.commands.TaxCategoryCreateCommand
-
- of(Versioned<TaxCategory>) - Static method in interface io.sphere.sdk.taxcategories.commands.TaxCategoryDeleteCommand
-
Creates a command object to delete a
TaxCategory
by ID.
- of(Versioned<TaxCategory>, List<? extends UpdateAction<TaxCategory>>) - Static method in interface io.sphere.sdk.taxcategories.commands.TaxCategoryUpdateCommand
-
Creates a command to update a TaxCategory selected by its ID using several update actions.
- of(Versioned<TaxCategory>, UpdateAction<TaxCategory>, UpdateAction<TaxCategory>...) - Static method in interface io.sphere.sdk.taxcategories.commands.TaxCategoryUpdateCommand
-
Creates a command to update a TaxCategory selected by its ID using one update action.
- of(TaxRateDraft) - Static method in class io.sphere.sdk.taxcategories.commands.updateactions.AddTaxRate
-
- of(String) - Static method in class io.sphere.sdk.taxcategories.commands.updateactions.ChangeName
-
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.taxcategories.commands.updateactions.RemoveTaxRate
-
- of(String, TaxRateDraft) - Static method in class io.sphere.sdk.taxcategories.commands.updateactions.ReplaceTaxRate
-
- of(String) - Static method in class io.sphere.sdk.taxcategories.commands.updateactions.SetDescription
-
Creates a new update action from the given parameters.
- of(String) - Static method in class io.sphere.sdk.taxcategories.commands.updateactions.SetKey
-
Creates a new update action from the given parameters.
- of() - Static method in interface io.sphere.sdk.taxcategories.expansion.TaxCategoryExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.taxcategories.expansion.TaxCategoryExpansionModel
-
- of(String) - Static method in interface io.sphere.sdk.taxcategories.queries.TaxCategoryByIdGet
-
- of(Identifiable<TaxCategory>) - Static method in interface io.sphere.sdk.taxcategories.queries.TaxCategoryByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.taxcategories.queries.TaxCategoryByKeyGet
-
- of() - Static method in interface io.sphere.sdk.taxcategories.queries.TaxCategoryQuery
-
- of() - Static method in class io.sphere.sdk.taxcategories.queries.TaxCategoryQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.taxcategories.queries.TaxCategoryQueryModel
-
- of(String, Double) - Static method in interface io.sphere.sdk.taxcategories.SubRate
-
- of(String, List<TaxRateDraft>, String) - Static method in interface io.sphere.sdk.taxcategories.TaxCategoryDraft
-
- of(String, List<TaxRateDraft>) - Static method in interface io.sphere.sdk.taxcategories.TaxCategoryDraft
-
- of(String, List<TaxRateDraft>, String) - Static method in class io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder
-
Creates a new object initialized with the given values.
- of(TaxCategoryDraft) - Static method in class io.sphere.sdk.taxcategories.TaxCategoryDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String, List<TaxRateDraft>, String) - Static method in class io.sphere.sdk.taxcategories.TaxCategoryDraftDsl
-
Creates a new object initialized with the given values.
- of(TaxCategoryDraft) - Static method in class io.sphere.sdk.taxcategories.TaxCategoryDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- of(String, double, boolean, CountryCode) - Static method in interface io.sphere.sdk.taxcategories.TaxRateDraft
-
- of(TaxRate) - Static method in class io.sphere.sdk.taxcategories.TaxRateDraftBuilder
-
- of(TaxRateDraft) - Static method in class io.sphere.sdk.taxcategories.TaxRateDraftBuilder
-
- of(String, double, boolean, CountryCode) - Static method in class io.sphere.sdk.taxcategories.TaxRateDraftBuilder
-
- of() - Static method in class io.sphere.sdk.types.BooleanFieldType
-
- of(TypeDraft) - Static method in interface io.sphere.sdk.types.commands.TypeCreateCommand
-
Creates a command object to create a
Type
.
- of(Versioned<Type>) - Static method in interface io.sphere.sdk.types.commands.TypeDeleteCommand
-
Creates a command object to delete a
Type
by ID.
- of(Versioned<Type>, List<? extends UpdateAction<Type>>) - Static method in interface io.sphere.sdk.types.commands.TypeUpdateCommand
-
Creates a command to update a Type selected by its ID using several update actions.
- of(Versioned<Type>, UpdateAction<Type>, UpdateAction<Type>...) - Static method in interface io.sphere.sdk.types.commands.TypeUpdateCommand
-
Creates a command to update a Type selected by its ID using one update action.
- of(String, EnumValue) - Static method in class io.sphere.sdk.types.commands.updateactions.AddEnumValue
-
- of(FieldDefinition) - Static method in class io.sphere.sdk.types.commands.updateactions.AddFieldDefinition
-
- of(String, LocalizedEnumValue) - Static method in class io.sphere.sdk.types.commands.updateactions.AddLocalizedEnumValue
-
- of(String, EnumValue) - Static method in class io.sphere.sdk.types.commands.updateactions.ChangeEnumValueLabel
-
- of(String, List<String>) - Static method in class io.sphere.sdk.types.commands.updateactions.ChangeEnumValueOrder
-
- of(String, LocalizedString) - Static method in class io.sphere.sdk.types.commands.updateactions.ChangeFieldDefinitionLabel
-
- of(List<String>) - Static method in class io.sphere.sdk.types.commands.updateactions.ChangeFieldDefinitionOrder
-
- of(String, TextInputHint) - Static method in class io.sphere.sdk.types.commands.updateactions.ChangeInputHint
-
- of(String) - Static method in class io.sphere.sdk.types.commands.updateactions.ChangeKey
-
Creates a new update action from the given parameters.
- of(String, LocalizedEnumValue) - Static method in class io.sphere.sdk.types.commands.updateactions.ChangeLocalizedEnumValueLabel
-
- of(String, List<String>) - Static method in class io.sphere.sdk.types.commands.updateactions.ChangeLocalizedEnumValueOrder
-
- of(LocalizedString) - Static method in class io.sphere.sdk.types.commands.updateactions.ChangeName
-
- of(String) - Static method in class io.sphere.sdk.types.commands.updateactions.RemoveFieldDefinition
-
- of(LocalizedString) - Static method in class io.sphere.sdk.types.commands.updateactions.SetDescription
-
- of(CustomFieldsDraft) - Static method in class io.sphere.sdk.types.CustomFieldsDraftBuilder
-
- of(CustomFields) - Static method in class io.sphere.sdk.types.CustomFieldsDraftBuilder
-
- of() - Static method in class io.sphere.sdk.types.DateFieldType
-
- of() - Static method in class io.sphere.sdk.types.DateTimeFieldType
-
- of(List<EnumValue>) - Static method in class io.sphere.sdk.types.EnumFieldType
-
- of() - Static method in interface io.sphere.sdk.types.expansion.TypeExpansionModel
-
- of(FieldType, String, LocalizedString, Boolean) - Static method in interface io.sphere.sdk.types.FieldDefinition
-
- of(FieldType, String, LocalizedString, Boolean, TextInputHint) - Static method in interface io.sphere.sdk.types.FieldDefinition
-
- of(List<LocalizedEnumValue>) - Static method in class io.sphere.sdk.types.LocalizedEnumFieldType
-
- of() - Static method in class io.sphere.sdk.types.LocalizedStringFieldType
-
- of() - Static method in class io.sphere.sdk.types.MoneyFieldType
-
- of() - Static method in class io.sphere.sdk.types.NumberFieldType
-
- of(QueryModel<T>, String) - Static method in interface io.sphere.sdk.types.queries.CustomQueryModel
-
- of(String) - Static method in interface io.sphere.sdk.types.queries.TypeByIdGet
-
- of(Identifiable<Type>) - Static method in interface io.sphere.sdk.types.queries.TypeByIdGet
-
- of() - Static method in interface io.sphere.sdk.types.queries.TypeQuery
-
- of() - Static method in class io.sphere.sdk.types.queries.TypeQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.types.queries.TypeQueryModel
-
- of(String) - Static method in class io.sphere.sdk.types.ReferenceFieldType
-
- of() - Static method in class io.sphere.sdk.types.ResourceTypeIdsSetBuilder
-
- of(FieldType) - Static method in class io.sphere.sdk.types.SetFieldType
-
- of() - Static method in class io.sphere.sdk.types.StringFieldType
-
- of() - Static method in class io.sphere.sdk.types.TimeFieldType
-
- of(String, LocalizedString, ResourceTypeIdsSetBuilder) - Static method in class io.sphere.sdk.types.TypeDraftBuilder
-
- of(String, LocalizedString, ResourceTypeIdsSetBuilder) - Static method in class io.sphere.sdk.types.TypeDraftDsl
-
- of(MonetaryAmount, int) - Static method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- of(BigDecimal, CurrencyUnit, int) - Static method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- of(BigDecimal, String, int) - Static method in class io.sphere.sdk.utils.HighPrecisionMoneyImpl
-
- of(MonetaryAmount) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
- of(BigDecimal, CurrencyUnit) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
- of(int, CurrencyUnit) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
- of(BigDecimal, String) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
- of(String, CurrencyUnit) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
- of(String, String) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
- of(Location) - Static method in class io.sphere.sdk.zones.commands.updateactions.AddLocation
-
- of(String) - Static method in class io.sphere.sdk.zones.commands.updateactions.ChangeName
-
- of(Location) - Static method in class io.sphere.sdk.zones.commands.updateactions.RemoveLocation
-
- of(String) - Static method in class io.sphere.sdk.zones.commands.updateactions.SetDescription
-
- of(String) - Static method in class io.sphere.sdk.zones.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- of(ZoneDraft) - Static method in interface io.sphere.sdk.zones.commands.ZoneCreateCommand
-
Creates a command object to create a
Zone
.
- of(Versioned<Zone>) - Static method in interface io.sphere.sdk.zones.commands.ZoneDeleteCommand
-
Creates a command object to delete a
Zone
by ID.
- of(Versioned<Zone>, List<? extends UpdateAction<Zone>>) - Static method in interface io.sphere.sdk.zones.commands.ZoneUpdateCommand
-
Creates a command to update a Zone selected by its ID using several update actions.
- of(Versioned<Zone>, UpdateAction<Zone>, UpdateAction<Zone>...) - Static method in interface io.sphere.sdk.zones.commands.ZoneUpdateCommand
-
Creates a command to update a Zone selected by its ID using one update action.
- of() - Static method in interface io.sphere.sdk.zones.expansion.ZoneExpansionModel
-
- of(List<String>, String) - Static method in interface io.sphere.sdk.zones.expansion.ZoneExpansionModel
-
- of(CountryCode, String) - Static method in interface io.sphere.sdk.zones.Location
-
- of(CountryCode) - Static method in interface io.sphere.sdk.zones.Location
-
- of(String) - Static method in interface io.sphere.sdk.zones.queries.ZoneByIdGet
-
- of(Identifiable<Zone>) - Static method in interface io.sphere.sdk.zones.queries.ZoneByIdGet
-
- of(String) - Static method in interface io.sphere.sdk.zones.queries.ZoneByKeyGet
-
- of() - Static method in interface io.sphere.sdk.zones.queries.ZoneQuery
-
- of() - Static method in class io.sphere.sdk.zones.queries.ZoneQueryBuilder
-
- of() - Static method in interface io.sphere.sdk.zones.queries.ZoneQueryModel
-
- of(String, Set<Location>, String) - Static method in interface io.sphere.sdk.zones.ZoneDraft
-
- of(String, Set<Location>) - Static method in interface io.sphere.sdk.zones.ZoneDraft
-
- of(String, Set<Location>, String) - Static method in class io.sphere.sdk.zones.ZoneDraftBuilder
-
Creates a new object initialized with the given values.
- of(String, Set<Location>) - Static method in class io.sphere.sdk.zones.ZoneDraftBuilder
-
Creates a new object initialized with the given values.
- of(ZoneDraft) - Static method in class io.sphere.sdk.zones.ZoneDraftBuilder
-
Creates a new object initialized with the fields of the template parameter.
- of(String, Set<Location>, String) - Static method in class io.sphere.sdk.zones.ZoneDraftDsl
-
Creates a new object initialized with the given values.
- of(String, Set<Location>) - Static method in class io.sphere.sdk.zones.ZoneDraftDsl
-
Creates a new object initialized with the given values.
- of(ZoneDraft) - Static method in class io.sphere.sdk.zones.ZoneDraftDsl
-
Creates a new object initialized with the fields of the template parameter.
- ofAbsolute(List<MonetaryAmount>) - Static method in interface io.sphere.sdk.cartdiscounts.CartDiscountValue
-
- ofAbsolute(MonetaryAmount) - Static method in interface io.sphere.sdk.cartdiscounts.CartDiscountValue
-
- ofAbsolute(List<MonetaryAmount>) - Static method in interface io.sphere.sdk.productdiscounts.ProductDiscountValue
-
- ofAbsolute(MonetaryAmount) - Static method in interface io.sphere.sdk.productdiscounts.ProductDiscountValue
-
- ofAddress(Address) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetDefaultBillingAddress
-
- ofAddress(Address) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetDefaultShippingAddress
-
- ofAll() - Static method in class io.sphere.sdk.cartdiscounts.LineItemsTarget
-
- ofAlwaysTrue() - Static method in interface io.sphere.sdk.retry.RetryPredicate
-
Creates a predicate that yields always true.
- ofAmount(Double, String, CountryCode) - Static method in class io.sphere.sdk.taxcategories.ExternalTaxRateDraftBuilder
-
- ofAssetKeyAndSku(String, String, LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- ofAssetKeyAndSku(String, String, LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- ofAssetKeyAndVariantId(Integer, String, LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- ofAssetKeyAndVariantId(Integer, String, LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- ofAttributeDefinitionDrafts(String, String, String, List<AttributeDefinitionDraft>) - Static method in interface io.sphere.sdk.producttypes.ProductTypeDraft
-
- ofAuthConfig(SphereAuthConfig) - Static method in class io.sphere.sdk.client.MySphereAuthConfigBuilder
-
- ofAuthConfig(SphereAuthConfig) - Static method in class io.sphere.sdk.client.SphereAuthConfigBuilder
-
- ofAutoRefresh(SphereAuthConfig, HttpClient, boolean) - Static method in interface io.sphere.sdk.client.SphereAccessTokenSupplier
-
Provides a token generator which tries to always provide a valid token.
- ofAwsCliEnv() - Static method in class io.sphere.sdk.subscriptions.AwsCredentials
-
Creates the aws credentials based on the environment variable names used by the AWS CLI.
- ofBigDecimal(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofBoolean() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofBoolean(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofBoolean(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofBoolean(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofBoolean(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofBoolean(String) - Method in interface io.sphere.sdk.queries.JsonObjectQueryModel
-
- ofBoolean() - Method in interface io.sphere.sdk.queries.JsonValueQueryModel
-
- ofBoolean() - Static method in class io.sphere.sdk.search.model.TypeSerializer
-
Serializer to convert the given boolean into the true/false string.
- ofBoolean(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofBooleanSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofBooleanSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofBooleanSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofBooleanSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofBooleanSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofCategory() - Static method in class io.sphere.sdk.products.attributes.ReferenceAttributeType
-
- ofCategoryReference() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofCategoryReferenceSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofCents(long, String) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
- ofCents(long, CurrencyUnit) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
- ofCentsAndCurrencyCode(String, String) - Static method in class io.sphere.sdk.utils.MoneyImpl
-
Creates a MonetaryAmount
from a cent amount as String and a currencyUnit as String.
- ofChannel() - Static method in class io.sphere.sdk.products.attributes.ReferenceAttributeType
-
- ofChannelReference() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofChannelReferenceSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofClientConfig(SphereClientConfig) - Static method in class io.sphere.sdk.client.SphereClientConfigBuilder
-
- ofConstantToken(String) - Static method in interface io.sphere.sdk.client.SphereAccessTokenSupplier
-
Provides a token generator which just returns a fixed token, so the client is only usable
for the live time of this token.
- ofContainerAndKey(String, String) - Static method in interface io.sphere.sdk.models.ContainerAndKey
-
- ofCountries(String, Set<CountryCode>, String) - Static method in interface io.sphere.sdk.zones.ZoneDraft
-
- ofCurrency() - Static method in class io.sphere.sdk.search.model.TypeSerializer
-
Serializer to convert the given money currency into the accepted format.
- ofCurrencyCode(String) - Static method in interface io.sphere.sdk.products.search.PriceSelection
-
- ofCurrencyCode(String) - Static method in class io.sphere.sdk.products.search.PriceSelectionBuilder
-
- ofCurrencyCode(String) - Static method in class io.sphere.sdk.products.search.PriceSelectionDsl
-
- ofCurrent(ProductIdentifiable) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionByIdGet
-
- ofCurrent(String) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionByIdGet
-
- ofCurrent(String) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionByKeyGet
-
- ofCurrent() - Static method in interface io.sphere.sdk.products.queries.ProductProjectionQuery
-
- ofCurrent() - Static method in class io.sphere.sdk.products.queries.ProductProjectionQueryBuilder
-
- ofCurrent() - Static method in interface io.sphere.sdk.products.search.ProductProjectionSearch
-
Creates a search request object for the current data of a product.
- ofCurrent() - Static method in class io.sphere.sdk.products.search.ProductProjectionSearchBuilder
-
- ofCustomer(Referenceable<Customer>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomerId
-
- ofCustomer(Referenceable<Customer>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomerId
-
- ofCustomerId(String, Integer) - Static method in class io.sphere.sdk.customers.commands.CustomerCreateEmailTokenCommand
-
Creates a command object to create a token to verify a customer's email.
- ofCustomerId(String, String, Integer) - Static method in class io.sphere.sdk.customers.commands.CustomerInStoreCreateEmailTokenCommand
-
Creates a command object to create a token to verify a customer's email.
- ofCustomerPasswordFlowTokens(SphereAuthConfig, String, String, HttpClient, boolean) - Static method in interface io.sphere.sdk.client.TokensSupplier
-
- ofCustomerPasswordFlowTokens(SphereAuthConfig, String, String, HttpClient, boolean, List<SolutionInfo>) - Static method in interface io.sphere.sdk.client.TokensSupplier
-
- ofCustomerToken(String, CustomerToken) - Static method in class io.sphere.sdk.customers.commands.CustomerInStoreVerifyEmailCommand
-
Creates a command to verify the email of a customer.
- ofCustomerToken(CustomerToken) - Static method in class io.sphere.sdk.customers.commands.CustomerVerifyEmailCommand
-
Creates a command to verify the email of a customer.
- ofCustomFields(CustomFields) - Static method in interface io.sphere.sdk.types.CustomFieldsDraft
-
- ofCustomLineItems(MonetaryAmount, OrderState, List<CustomLineItemImportDraft>) - Static method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- ofDate() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofDate(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofDate(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofDate(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofDate(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofDate() - Static method in class io.sphere.sdk.search.model.TypeSerializer
-
Serializer to convert the given local date into the accepted ISO format.
- ofDateSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofDateSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofDateSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofDateSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofDateSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofDateTime() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofDateTime(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofDateTime(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofDateTime(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofDateTime(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofDateTime() - Static method in class io.sphere.sdk.search.model.TypeSerializer
-
Serializer to convert the given local datetime into the accepted ISO format with UTC zone.
- ofDateTime(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofDateTimeSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofDateTimeSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofDateTimeSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofDateTimeSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofDateTimeSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofDouble() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofDoubleSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofEnglish(String) - Static method in class io.sphere.sdk.models.LocalizedString
-
- ofEnum(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofEnum(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofEnum(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofEnum(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofEnum(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofEnumSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofEnumSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofEnumSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofEnumSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofEnumValue() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofEnumValue(String, List<EnumValue>) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.RemoveEnumValues
-
- ofEnumValue(String, EnumValue) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.RemoveEnumValues
-
- ofEnumValueSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofEnv(String, String) - Static method in class io.sphere.sdk.subscriptions.AwsCredentials
-
Creates the aws credentials based on the environment variable names given as parameters.
- ofEnvironmentVariables(String) - Static method in class io.sphere.sdk.client.SphereClientConfig
-
Creates a
SphereClientConfig
out of environment variables using
prefix
as namespace parameter.
- ofExponentialBackoff(long, long, long) - Static method in interface io.sphere.sdk.retry.RetryAction
-
Retry in the future with exponential backoff strategy.
- ofExternal() - Static method in interface io.sphere.sdk.productdiscounts.ProductDiscountValue
-
- ofExternalTaxCalculation(String, ShippingRate, ExternalTaxRateDraft) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomShippingMethod
-
- ofExternalTaxCalculation(String, ShippingRate) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomShippingMethod
-
- ofExternalTaxCalculation(LocalizedString, String, MonetaryAmount, ExternalTaxRateDraft, long) - Static method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
Creates a draft having an external tax rate and no custom fields.
- ofExternalTaxCalculation(LocalizedString, String, MonetaryAmount, long) - Static method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
Creates a draft having no tax rate (for external tax calculation) and no custom fields.
- ofExternalTaxCalculation(LocalizedString, String, MonetaryAmount, ExternalTaxRateDraft, long, CustomFieldsDraft) - Static method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
Creates a draft having an external tax rate and custom fields.
- ofExternalTaxCalculation(LocalizedString, String, MonetaryAmount, long, CustomFieldsDraft) - Static method in interface io.sphere.sdk.carts.CustomLineItemDraft
-
Creates a draft having no tax rate (for external tax calculation) and custom fields.
- ofFirstAndLastName(String, String) - Static method in class io.sphere.sdk.customers.CustomerName
-
- ofFixed(MonetaryAmount) - Static method in interface io.sphere.sdk.cartdiscounts.CartDiscountValue
-
- offset(Long) - Method in class io.sphere.sdk.apiclient.queries.ApiClientQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.apiclient.queries.ApiClientQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.cartdiscounts.queries.CartDiscountQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.cartdiscounts.queries.CartDiscountQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.carts.queries.CartInStoreQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.carts.queries.CartInStoreQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.carts.queries.CartQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.carts.queries.CartQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.categories.queries.CategoryQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.categories.queries.CategoryQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.channels.queries.ChannelQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.channels.queries.ChannelQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.customergroups.queries.CustomerGroupQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.customergroups.queries.CustomerGroupQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.customers.queries.CustomerInStoreQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.customers.queries.CustomerInStoreQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.customers.queries.CustomerQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.customers.queries.CustomerQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.customobjects.queries.CustomObjectQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.customobjects.queries.CustomObjectQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.discountcodes.queries.DiscountCodeQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.discountcodes.queries.DiscountCodeQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.extensions.queries.ExtensionQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.extensions.queries.ExtensionQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.inventory.queries.InventoryEntryQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.inventory.queries.InventoryEntryQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.messages.queries.MessageQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.messages.queries.MessageQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.orderedits.queries.OrderEditQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.orderedits.queries.OrderEditQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.orders.queries.OrderInStoreQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.orders.queries.OrderInStoreQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.orders.queries.OrderQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.orders.queries.OrderQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.payments.queries.PaymentQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.payments.queries.PaymentQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.productdiscounts.queries.ProductDiscountQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.productdiscounts.queries.ProductDiscountQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.products.queries.ProductProjectionInStoreQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.products.queries.ProductProjectionInStoreQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.products.queries.ProductProjectionQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.products.queries.ProductProjectionQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.products.queries.ProductQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.products.queries.ProductQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.products.search.ProductProjectionSearchBuilder
-
- offset(long) - Method in class io.sphere.sdk.products.search.ProductProjectionSearchBuilder
-
- offset(Long) - Method in class io.sphere.sdk.productselections.queries.ProductSelectionQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.productselections.queries.ProductSelectionQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.producttypes.queries.ProductTypeQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.producttypes.queries.ProductTypeQueryBuilder
-
- offset - Variable in class io.sphere.sdk.queries.MetaModelQueryDslBuilder
-
- offset(Long) - Method in class io.sphere.sdk.queries.MetaModelQueryDslBuilder
-
- offset() - Method in class io.sphere.sdk.queries.MetaModelQueryDslImpl
-
- offset - Variable in class io.sphere.sdk.queries.PagedResultBase
-
- offset(Long) - Method in interface io.sphere.sdk.queries.ResourceMetaModelQueryDslBuilder
-
- offset(long) - Method in interface io.sphere.sdk.queries.ResourceMetaModelQueryDslBuilder
-
- offset(Long) - Method in class io.sphere.sdk.queries.ResourceMetaModelQueryDslBuilderImpl
-
- offset(long) - Method in class io.sphere.sdk.queries.ResourceMetaModelQueryDslBuilderImpl
-
- offset() - Method in interface io.sphere.sdk.queries.ResourceQuery
-
- offset(Long) - Method in class io.sphere.sdk.reviews.queries.ReviewQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.reviews.queries.ReviewQueryBuilder
-
- offset - Variable in class io.sphere.sdk.search.MetaModelSearchDslBuilder
-
- offset(Long) - Method in class io.sphere.sdk.search.MetaModelSearchDslBuilder
-
- offset() - Method in class io.sphere.sdk.search.MetaModelSearchDslImpl
-
- offset(Long) - Method in interface io.sphere.sdk.search.ResourceMetaModelSearchDslBuilder
-
- offset(long) - Method in interface io.sphere.sdk.search.ResourceMetaModelSearchDslBuilder
-
- offset(Long) - Method in class io.sphere.sdk.search.ResourceMetaModelSearchDslBuilderImpl
-
- offset(long) - Method in class io.sphere.sdk.search.ResourceMetaModelSearchDslBuilderImpl
-
- offset() - Method in interface io.sphere.sdk.search.ResourceSearch
-
- offset(Long) - Method in class io.sphere.sdk.shippingmethods.queries.ShippingMethodQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.shippingmethods.queries.ShippingMethodQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.shoppinglists.queries.ShoppingListInStoreQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.shoppinglists.queries.ShoppingListInStoreQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.shoppinglists.queries.ShoppingListQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.shoppinglists.queries.ShoppingListQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.states.queries.StateQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.states.queries.StateQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.stores.queries.StoreQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.stores.queries.StoreQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.subscriptions.queries.SubscriptionQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.subscriptions.queries.SubscriptionQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.taxcategories.queries.TaxCategoryQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.taxcategories.queries.TaxCategoryQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.types.queries.TypeQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.types.queries.TypeQueryBuilder
-
- offset(Long) - Method in class io.sphere.sdk.zones.queries.ZoneQueryBuilder
-
- offset(long) - Method in class io.sphere.sdk.zones.queries.ZoneQueryBuilder
-
- ofGiftLineItem(ByIdVariantIdentifier, ResourceIdentifier<Channel>, ResourceIdentifier<Channel>) - Static method in interface io.sphere.sdk.cartdiscounts.CartDiscountValue
-
- ofGiftLineItem(ResourceIdentifier<Product>, Integer, ResourceIdentifier<Channel>, ResourceIdentifier<Channel>) - Static method in interface io.sphere.sdk.cartdiscounts.CartDiscountValue
-
- ofGiveUpAndSendFirstException() - Static method in interface io.sphere.sdk.retry.RetryAction
-
- ofGiveUpAndSendLatestException() - Static method in interface io.sphere.sdk.retry.RetryAction
-
Throws the latest error and does not retry.
- ofId(String, Long) - Static method in interface io.sphere.sdk.cartdiscounts.commands.CartDiscountDeleteCommand
-
Creates a command object to delete a
CartDiscount
by its id.
- ofId(String, Long) - Static method in interface io.sphere.sdk.carts.commands.CartDeleteCommand
-
Creates a command object to delete a
Cart
by its id.
- ofId(String, Long, boolean) - Static method in interface io.sphere.sdk.carts.commands.CartDeleteCommand
-
Creates a command object to delete a
Cart
by its id.
- ofId(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingMethod
-
- ofId(String, Long) - Static method in interface io.sphere.sdk.extensions.commands.ExtensionDeleteCommand
-
Creates a command object to delete a
Extension
by its id.
- ofId(String, Long, List<? extends UpdateAction<Extension>>) - Static method in interface io.sphere.sdk.extensions.commands.ExtensionUpdateCommand
-
Creates a command to update a Extension selected by its id using several update actions.
- ofId(String, Long, UpdateAction<Extension>) - Static method in interface io.sphere.sdk.extensions.commands.ExtensionUpdateCommand
-
Creates a command to update a Extension selected by its id using one update action.
- ofId(String) - Static method in interface io.sphere.sdk.models.ResourceIdentifier
-
- ofId(String, String) - Static method in interface io.sphere.sdk.models.ResourceIdentifier
-
- ofId(String, Long) - Static method in interface io.sphere.sdk.orderedits.commands.OrderEditDeleteCommand
-
Creates a command object to delete a
OrderEdit
by its id.
- ofId(String, Long) - Static method in interface io.sphere.sdk.productdiscounts.commands.ProductDiscountDeleteCommand
-
- ofId(String, Long) - Static method in interface io.sphere.sdk.productselections.commands.ProductSelectionDeleteCommand
-
- ofId(String, Long, List<? extends UpdateAction<ProductSelection>>) - Static method in interface io.sphere.sdk.productselections.commands.ProductSelectionUpdateCommand
-
Creates a command to update a ProductSelection selected by its id using several update actions.
- ofId(String, Long, UpdateAction<ProductSelection>) - Static method in interface io.sphere.sdk.productselections.commands.ProductSelectionUpdateCommand
-
Creates a command to update a ProductSelection selected by its id using one update action.
- ofId(String, Long) - Static method in interface io.sphere.sdk.reviews.commands.ReviewDeleteCommand
-
Creates a command object to delete a
Review
by its id.
- ofId(String, Long, boolean) - Static method in interface io.sphere.sdk.reviews.commands.ReviewDeleteCommand
-
Creates a command object to delete a
Review
by its id.
- ofId(String, Long) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListDeleteCommand
-
Creates a command object to delete a
ShoppingList
by its id.
- ofId(String, Long, boolean) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListDeleteCommand
-
Creates a command object to delete a
ShoppingList
by its id.
- ofId(String, Long) - Static method in interface io.sphere.sdk.states.commands.StateDeleteCommand
-
Creates a command object to delete a
State
by its id.
- ofId(String, Long) - Static method in interface io.sphere.sdk.zones.commands.ZoneDeleteCommand
-
Creates a command object to delete a
Zone
by its id.
- ofIdOrKey(String, String) - Static method in interface io.sphere.sdk.models.ResourceIdentifier
-
- ofIdOrKey(String, String, String) - Static method in interface io.sphere.sdk.models.ResourceIdentifier
-
- ofImageUrlAndSku(String, String, Integer) - Static method in class io.sphere.sdk.products.commands.updateactions.MoveImageToPosition
-
- ofImageUrlAndSku(String, String, Integer, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.MoveImageToPosition
-
- ofImageUrlAndVariantId(String, Integer, Integer) - Static method in class io.sphere.sdk.products.commands.updateactions.MoveImageToPosition
-
- ofImageUrlAndVariantId(String, Integer, Integer, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.MoveImageToPosition
-
- ofImmediateRetries(long) - Static method in interface io.sphere.sdk.retry.RetryAction
-
Retries immediately for a maximum amount of attempts.
- ofInteger() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofInteger(String) - Method in interface io.sphere.sdk.queries.JsonObjectQueryModel
-
- ofInteger() - Method in interface io.sphere.sdk.queries.JsonValueQueryModel
-
- ofIntegerSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddressCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddressCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetAddressCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.customergroups.commands.updateactions.SetCustomField
-
- ofJson(String, String, JsonNode) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetAddressCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomField
-
- ofJson(String, JsonNode, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomField
-
- ofJson(String, JsonNode, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomField
-
- ofJson(String, JsonNode) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetCustomField
-
- ofJsonNode(CustomObject<?>) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with a JsonNode value type.
- ofJsonNode(String, String) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and returns the old custom object with a JsonNode value type.
- ofJsonNode(String, Long) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with a JsonNode value type.
- ofJsonNode(CustomObject<?>, boolean) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and uses the delete endpoint via container and key and returns the old custom object with a JsonNode value type.
- ofJsonNode(String, String, boolean) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object without optimistic concurrency control and returns the old custom object with a JsonNode value type.
- ofJsonNode(String, Long, boolean) - Static method in interface io.sphere.sdk.customobjects.commands.CustomObjectDeleteCommand
-
Deletes a custom object by id with optimistic concurrency control and returns the old custom object with a JsonNode value type.
- ofJsonNode(String) - Static method in interface io.sphere.sdk.customobjects.queries.CustomObjectByIdGet
-
Creates an object to fetch a custom object by the container and get the result as JsonNode
.
- ofJsonNode(String, String) - Static method in interface io.sphere.sdk.customobjects.queries.CustomObjectByKeyGet
-
Creates an object to fetch a custom object by the container and get the result as JsonNode
.
- ofJsonNode() - Static method in interface io.sphere.sdk.customobjects.queries.CustomObjectQuery
-
- ofJsonNode() - Static method in class io.sphere.sdk.customobjects.queries.CustomObjectQueryBuilder
-
- ofJsonNode() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofJsonObject(String) - Method in interface io.sphere.sdk.queries.JsonObjectQueryModel
-
- ofJsonObject() - Method in interface io.sphere.sdk.queries.RootJsonQueryModel
-
- ofJsonValue(String, String, JsonNode) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetCustomField
-
- ofJsonValue() - Method in interface io.sphere.sdk.queries.RootJsonQueryModel
-
- ofJsonValueWithKey(String, String, JsonNode) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetCustomField
-
- ofKey(String, Long) - Static method in interface io.sphere.sdk.cartdiscounts.commands.CartDiscountDeleteCommand
-
Creates a command object to delete a
CartDiscount
by its key.
- ofKey(String, Long, List<? extends UpdateAction<CartDiscount>>) - Static method in interface io.sphere.sdk.cartdiscounts.commands.CartDiscountUpdateCommand
-
Creates a command to update a CartDiscount selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<CartDiscount>) - Static method in interface io.sphere.sdk.cartdiscounts.commands.CartDiscountUpdateCommand
-
Creates a command to update a CartDiscount selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.carts.commands.CartDeleteCommand
-
Creates a command object to delete a
Cart
by its key.
- ofKey(String, Long, boolean) - Static method in interface io.sphere.sdk.carts.commands.CartDeleteCommand
-
Creates a command object to delete a
Cart
by its key.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.categories.commands.CategoryDeleteCommand
-
Creates a command object to delete a
Category
by its key.
- ofKey(String, LocalizedString) - Static method in class io.sphere.sdk.categories.commands.updateactions.ChangeAssetName
-
Creates a new object initialized with the given values.
- ofKey(String) - Static method in class io.sphere.sdk.categories.commands.updateactions.RemoveAsset
-
Creates a new object initialized with the given values.
- ofKey(String, String, Object) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetCustomField
-
- ofKey(String, CustomFieldsDraft) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetCustomType
-
- ofKey(String, LocalizedString) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetDescription
-
Creates a new object initialized with the given values.
- ofKey(String, List<AssetSource>) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetSources
-
- ofKey(String, Set<String>) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetAssetTags
-
- ofKey(String, Long) - Static method in interface io.sphere.sdk.customergroups.commands.CustomerGroupDeleteCommand
-
- ofKey(String, Long, List<? extends UpdateAction<CustomerGroup>>) - Static method in interface io.sphere.sdk.customergroups.commands.CustomerGroupUpdateCommand
-
Creates a command to update a CustomerGroup selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<CustomerGroup>) - Static method in interface io.sphere.sdk.customergroups.commands.CustomerGroupUpdateCommand
-
Creates a command to update a CustomerGroup selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.customers.commands.CustomerDeleteCommand
-
Creates a command object to delete a
Customer
by its key.
- ofKey(String, Long, boolean) - Static method in interface io.sphere.sdk.customers.commands.CustomerDeleteCommand
-
Creates a command object to delete a
Customer
by its key.
- ofKey(String, String, Long) - Static method in interface io.sphere.sdk.customers.commands.CustomerInStoreDeleteCommand
-
- ofKey(String, String, Long, boolean) - Static method in interface io.sphere.sdk.customers.commands.CustomerInStoreDeleteCommand
-
- ofKey(String, Long, String, List<? extends UpdateAction<Customer>>) - Static method in interface io.sphere.sdk.customers.commands.CustomerInStoreUpdateCommand
-
- ofKey(String, Long, String, UpdateAction<Customer>) - Static method in interface io.sphere.sdk.customers.commands.CustomerInStoreUpdateCommand
-
- ofKey(String, Long, List<? extends UpdateAction<Customer>>) - Static method in interface io.sphere.sdk.customers.commands.CustomerUpdateCommand
-
Creates a command to update a Customer selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<Customer>) - Static method in interface io.sphere.sdk.customers.commands.CustomerUpdateCommand
-
Creates a command to update a Customer selected by its key using one update action.
- ofKey(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.AddBillingAddressId
-
- ofKey(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.AddShippingAddressId
-
- ofKey(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.RemoveAddress
-
- ofKey(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.RemoveBillingAddressId
-
- ofKey(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.RemoveShippingAddressId
-
- ofKey(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetDefaultBillingAddress
-
- ofKey(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetDefaultShippingAddress
-
- ofKey(String, Long) - Static method in interface io.sphere.sdk.extensions.commands.ExtensionDeleteCommand
-
Creates a command object to delete a
Extension
by its key.
- ofKey(String, Long, List<? extends UpdateAction<Extension>>) - Static method in interface io.sphere.sdk.extensions.commands.ExtensionUpdateCommand
-
Creates a command to update a Extension selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<Extension>) - Static method in interface io.sphere.sdk.extensions.commands.ExtensionUpdateCommand
-
Creates a command to update a Extension selected by its key using one update action.
- ofKey(String) - Static method in interface io.sphere.sdk.models.ResourceIdentifier
-
- ofKey(String, String) - Static method in interface io.sphere.sdk.models.ResourceIdentifier
-
- ofKey(String, Long) - Static method in interface io.sphere.sdk.orderedits.commands.OrderEditDeleteCommand
-
Creates a command object to delete a
OrderEdit
by its key.
- ofKey(String, Long, List<? extends UpdateAction<OrderEdit>>) - Static method in interface io.sphere.sdk.orderedits.commands.OrderEditUpdateCommand
-
Creates a command to update a OrderEdit selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<OrderEdit>) - Static method in interface io.sphere.sdk.orderedits.commands.OrderEditUpdateCommand
-
Creates a command to update a OrderEdit selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.payments.commands.PaymentDeleteCommand
-
Creates a command object to delete a
Payment
by its key.
- ofKey(String, Long, boolean) - Static method in interface io.sphere.sdk.payments.commands.PaymentDeleteCommand
-
Creates a command object to delete a
Payment
by its key.
- ofKey(String, Long, List<? extends UpdateAction<Payment>>) - Static method in interface io.sphere.sdk.payments.commands.PaymentUpdateCommand
-
Creates a command to update a Payment selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<Payment>) - Static method in interface io.sphere.sdk.payments.commands.PaymentUpdateCommand
-
Creates a command to update a Payment selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.productdiscounts.commands.ProductDiscountDeleteCommand
-
- ofKey(String, Long, List<? extends UpdateAction<ProductDiscount>>) - Static method in interface io.sphere.sdk.productdiscounts.commands.ProductDiscountUpdateCommand
-
Creates a command to update a ProductDiscount selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<ProductDiscount>) - Static method in interface io.sphere.sdk.productdiscounts.commands.ProductDiscountUpdateCommand
-
Creates a command to update a ProductDiscount selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.products.commands.ProductDeleteCommand
-
Creates a command object to delete a
Product
by its key.
- ofKey(String, Long, List<? extends UpdateAction<Product>>) - Static method in interface io.sphere.sdk.products.commands.ProductUpdateCommand
-
- ofKey(String, Long, UpdateAction<Product>) - Static method in interface io.sphere.sdk.products.commands.ProductUpdateCommand
-
- ofKey(String, Long) - Static method in interface io.sphere.sdk.productselections.commands.ProductSelectionDeleteCommand
-
- ofKey(String, Long, List<? extends UpdateAction<ProductSelection>>) - Static method in interface io.sphere.sdk.productselections.commands.ProductSelectionUpdateCommand
-
Creates a command to update a ProductSelection selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<ProductSelection>) - Static method in interface io.sphere.sdk.productselections.commands.ProductSelectionUpdateCommand
-
Creates a command to update a ProductSelection selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.producttypes.commands.ProductTypeDeleteCommand
-
Creates a command object to delete a
ProductType
by its key.
- ofKey(String, Long, List<? extends UpdateAction<ProductType>>) - Static method in interface io.sphere.sdk.producttypes.commands.ProductTypeUpdateCommand
-
Creates a command to update a ProductType selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<ProductType>) - Static method in interface io.sphere.sdk.producttypes.commands.ProductTypeUpdateCommand
-
Creates a command to update a ProductType selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.reviews.commands.ReviewDeleteCommand
-
Creates a command object to delete a
Review
by its key.
- ofKey(String, Long, boolean) - Static method in interface io.sphere.sdk.reviews.commands.ReviewDeleteCommand
-
Creates a command object to delete a
Review
by its key.
- ofKey(String, Long, List<? extends UpdateAction<Review>>) - Static method in interface io.sphere.sdk.reviews.commands.ReviewUpdateCommand
-
Creates a command to update a Review selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<Review>) - Static method in interface io.sphere.sdk.reviews.commands.ReviewUpdateCommand
-
Creates a command to update a Review selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.shippingmethods.commands.ShippingMethodDeleteCommand
-
- ofKey(String, Long, List<? extends UpdateAction<ShippingMethod>>) - Static method in interface io.sphere.sdk.shippingmethods.commands.ShippingMethodUpdateCommand
-
Creates a command to update a ShippingMethod selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<ShippingMethod>) - Static method in interface io.sphere.sdk.shippingmethods.commands.ShippingMethodUpdateCommand
-
Creates a command to update a ShippingMethod selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListDeleteCommand
-
Creates a command object to delete a
ShoppingList
by its key.
- ofKey(String, Long, boolean) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListDeleteCommand
-
Creates a command object to delete a
ShoppingList
by its key.
- ofKey(String, String, Long) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListInStoreDeleteCommand
-
- ofKey(String, String, Long, boolean) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListInStoreDeleteCommand
-
- ofKey(String, Long, String, List<? extends UpdateAction<ShoppingList>>) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListInStoreUpdateCommand
-
- ofKey(String, Long, String, UpdateAction<ShoppingList>) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListInStoreUpdateCommand
-
- ofKey(String, Long, List<? extends UpdateAction<ShoppingList>>) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListUpdateCommand
-
Creates a command to update a ShoppingList selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<ShoppingList>) - Static method in interface io.sphere.sdk.shoppinglists.commands.ShoppingListUpdateCommand
-
Creates a command to update a ShoppingList selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.states.commands.StateDeleteCommand
-
Creates a command object to delete a
State
by its key.
- ofKey(String, Long, List<? extends UpdateAction<State>>) - Static method in interface io.sphere.sdk.states.commands.StateUpdateCommand
-
Creates a command to update a State selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<State>) - Static method in interface io.sphere.sdk.states.commands.StateUpdateCommand
-
Creates a command to update a State selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.stores.commands.StoreDeleteCommand
-
Creates a command object to delete a
Store
by its key.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.subscriptions.commands.SubscriptionDeleteCommand
-
Creates a command object to delete a
Subscription
by its key.
- ofKey(String, Long, List<? extends UpdateAction<Subscription>>) - Static method in interface io.sphere.sdk.subscriptions.commands.SubscriptionUpdateCommand
-
Creates a command to update a Subscription selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<Subscription>) - Static method in interface io.sphere.sdk.subscriptions.commands.SubscriptionUpdateCommand
-
Creates a command to update a Subscription selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.taxcategories.commands.TaxCategoryDeleteCommand
-
Creates a command object to delete a
TaxCategory
by its key.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.types.commands.TypeDeleteCommand
-
Creates a command object to delete a
Type
by its key.
- ofKey(String, Long, List<? extends UpdateAction<Type>>) - Static method in interface io.sphere.sdk.types.commands.TypeUpdateCommand
-
Creates a command to update a Type selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<Type>) - Static method in interface io.sphere.sdk.types.commands.TypeUpdateCommand
-
Creates a command to update a Type selected by its key using one update action.
- ofKey(String, Long) - Static method in interface io.sphere.sdk.zones.commands.ZoneDeleteCommand
-
Creates a command object to delete a
Zone
by its key.
- ofKey(String, Long, List<? extends UpdateAction<Zone>>) - Static method in interface io.sphere.sdk.zones.commands.ZoneUpdateCommand
-
Creates a command to update a Zone selected by its key using several update actions.
- ofKey(String, Long, UpdateAction<Zone>) - Static method in interface io.sphere.sdk.zones.commands.ZoneUpdateCommand
-
Creates a command to update a Zone selected by its key using one update action.
- ofKeyAndSku(String, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductVariantKey
-
- ofKeyAndSku(String, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductVariantKey
-
- ofKeyAndVariantId(String, Integer) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductVariantKey
-
- ofKeyAndVariantId(String, Integer, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductVariantKey
-
- ofKeyIdSecret(String, String, String) - Static method in class io.sphere.sdk.client.MySphereAuthConfigBuilder
-
- ofKeyIdSecret(String, String, String) - Static method in class io.sphere.sdk.client.SphereAuthConfigBuilder
-
- ofKeyIdSecret(String, String, String) - Static method in class io.sphere.sdk.client.SphereClientConfigBuilder
-
- ofLineItemAndExternalPrice(LineItem, long, MonetaryAmount) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeLineItemQuantity
-
- ofLineItemAndExternalPrice(String, long, MonetaryAmount) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeLineItemQuantity
-
- ofLineItemAndExternalPrice(LineItem, Long, MonetaryAmount) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveLineItem
-
- ofLineItemAndExternalPrice(String, Long, MonetaryAmount) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveLineItem
-
- ofLineItemAndExternalPrice(LineItem, long, MonetaryAmount) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeLineItemQuantity
-
- ofLineItemAndExternalPrice(String, long, MonetaryAmount) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeLineItemQuantity
-
- ofLineItemAndExternalPrice(LineItem, Long, MonetaryAmount) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- ofLineItemAndExternalPrice(String, Long, MonetaryAmount) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- ofLineItemAndExternalTotalPrice(LineItem, long, ExternalLineItemTotalPrice) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeLineItemQuantity
-
- ofLineItemAndExternalTotalPrice(String, long, ExternalLineItemTotalPrice) - Static method in class io.sphere.sdk.carts.commands.updateactions.ChangeLineItemQuantity
-
- ofLineItemAndExternalTotalPrice(LineItem, Long, ExternalLineItemTotalPrice) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveLineItem
-
- ofLineItemAndExternalTotalPrice(String, Long, ExternalLineItemTotalPrice) - Static method in class io.sphere.sdk.carts.commands.updateactions.RemoveLineItem
-
- ofLineItemAndExternalTotalPrice(LineItem, long, ExternalLineItemTotalPrice) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeLineItemQuantity
-
- ofLineItemAndExternalTotalPrice(String, long, ExternalLineItemTotalPrice) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.ChangeLineItemQuantity
-
- ofLineItemAndExternalTotalPrice(LineItem, Long, ExternalLineItemTotalPrice) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- ofLineItemAndExternalTotalPrice(String, Long, ExternalLineItemTotalPrice) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.RemoveLineItem
-
- ofLineItems(MonetaryAmount, OrderState, List<LineItemImportDraft>) - Static method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- ofLocalDate() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofLocalDateSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofLocalizedEnum(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofLocalizedEnum(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofLocalizedEnum(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofLocalizedEnum(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofLocalizedEnum(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofLocalizedEnumSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofLocalizedEnumSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofLocalizedEnumSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofLocalizedEnumSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofLocalizedEnumValue() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofLocalizedEnumValue(String, List<LocalizedEnumValue>) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.RemoveEnumValues
-
- ofLocalizedEnumValue(String, LocalizedEnumValue) - Static method in class io.sphere.sdk.producttypes.commands.updateactions.RemoveEnumValues
-
- ofLocalizedEnumValueSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofLocalizedString() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofLocalizedString(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofLocalizedString(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofLocalizedString(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofLocalizedString(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofLocalizedString(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofLocalizedStringSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofLocalizedStringSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofLocalizedStringSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofLocalizedStringSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofLocalizedStringSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofLocalTime() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofLocalTimeSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofLong() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofLong(String) - Method in interface io.sphere.sdk.queries.JsonObjectQueryModel
-
- ofLong() - Method in interface io.sphere.sdk.queries.JsonValueQueryModel
-
- ofLong(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofLongSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofMapEntryList(List<Map.Entry<String, String>>) - Static method in class io.sphere.sdk.http.HttpHeaders
-
- ofMasterVariant(File, String) - Static method in class io.sphere.sdk.products.commands.ProductImageUploadCommand
-
- ofMatchingErrors(Class<? extends Throwable>) - Static method in interface io.sphere.sdk.retry.RetryPredicate
-
Creates a predicate which will be true if the latest error is a subclass of errorClass
.
- ofMatchingStatusCodes(int, int...) - Static method in interface io.sphere.sdk.retry.RetryPredicate
-
- ofMatchingStatusCodes(Predicate<Integer>) - Static method in interface io.sphere.sdk.retry.RetryPredicate
-
- ofMoney() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofMoney(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofMoney(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofMoney(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofMoney(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofMoney(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofMoneyCentAmount() - Static method in class io.sphere.sdk.search.model.TypeSerializer
-
Serializer to convert the given money cent amount into a plain string.
- ofMoneySet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofMoneySet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofMoneySet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofMoneySet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofMoneySet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofName(String) - Method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofName(LocalizedString) - Static method in interface io.sphere.sdk.productselections.ProductSelectionDraft
-
- ofNested() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofNestedSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofNumber(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofNumber(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofNumber(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofNumber(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofNumber() - Static method in class io.sphere.sdk.search.model.TypeSerializer
-
Serializer to convert the given numerical value into a suitable string.
- ofNumberSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofNumberSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofNumberSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofNumberSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddressCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddressCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetAddressCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.customergroups.commands.updateactions.SetCustomField
-
- ofObject(String, String, Object) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetAddressCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomField
-
- ofObject(String, Object, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomField
-
- ofObject(String, Object, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomField
-
- ofObject(String, Object) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetCustomField
-
- ofOldAddressToNewAddress(Address, Address) - Static method in class io.sphere.sdk.customers.commands.updateactions.ChangeAddress
-
- ofOneTimeFetchingToken(SphereAuthConfig, HttpClient, boolean) - Static method in interface io.sphere.sdk.client.SphereAccessTokenSupplier
-
Provides a token generator which fetches only one token.
- ofOrderNumber(String, Long) - Static method in interface io.sphere.sdk.orders.commands.OrderDeleteCommand
-
Creates a command object to delete a
Order
by its orderNumber.
- ofOrderNumber(String, Long, boolean) - Static method in interface io.sphere.sdk.orders.commands.OrderDeleteCommand
-
Creates a command object to delete a
Order
by its orderNumber.
- ofOrderNumber(String, Long, List<? extends UpdateAction<Order>>) - Static method in interface io.sphere.sdk.orders.commands.OrderUpdateCommand
-
Creates a command to update a Order selected by its orderNumber using several update actions.
- ofOrderNumber(String, Long, UpdateAction<Order>) - Static method in interface io.sphere.sdk.orders.commands.OrderUpdateCommand
-
Creates a command to update a Order selected by its orderNumber using one update action.
- ofPriceAndTotalPrice(MonetaryAmount, MonetaryAmount) - Static method in interface io.sphere.sdk.carts.ExternalLineItemTotalPrice
-
- ofProduct() - Static method in class io.sphere.sdk.products.attributes.ReferenceAttributeType
-
- ofProductIdAndSku(File, String, String) - Static method in class io.sphere.sdk.products.commands.ProductImageUploadCommand
-
- ofProductReference() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofProductReferenceSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofProductType() - Static method in class io.sphere.sdk.products.attributes.ReferenceAttributeType
-
- ofProductTypeReference() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofProductTypeReferenceSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofProperties(Properties, String) - Static method in class io.sphere.sdk.client.SphereClientConfig
-
- ofRating(Integer) - Static method in class io.sphere.sdk.reviews.ReviewDraftBuilder
-
- ofRating(Integer) - Static method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
Creates a new object initialized with the given values.
- ofRawFunction(Function<V, String>) - Static method in class io.sphere.sdk.search.model.TypeSerializer
-
Serializer to convert the given element to a formatted string with escaped characters.
- ofRawString() - Static method in class io.sphere.sdk.search.model.TypeSerializer
-
Serializer to convert the given text to a raw string without escaping characters or adding quotes.
- ofReferencable(Referenceable<ShippingMethod>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingMethod
-
Deprecated.
- ofReferencable(Referenceable<Channel>) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetSupplyChannel
-
Deprecated.
- ofReferencable(Referenceable<TaxCategory>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetTaxCategory
-
Deprecated.
- ofReferencable(Referenceable<Zone>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.RemoveZone
-
Deprecated.
- ofReference(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofReference(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofReference(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofReference(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofReferenceSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofReferenceSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofReferenceSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofRelative(int) - Static method in interface io.sphere.sdk.cartdiscounts.CartDiscountValue
-
- ofRelative(int) - Static method in interface io.sphere.sdk.productdiscounts.ProductDiscountValue
-
- ofRemove() - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingMethod
-
- ofRemove() - Static method in class io.sphere.sdk.payments.commands.updateactions.SetAuthorization
-
Deprecated.
- ofRemoveType() - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddressCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddressCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.categories.commands.updateactions.SetCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.channels.commands.updateactions.SetAddressCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.channels.commands.updateactions.SetCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.customergroups.commands.updateactions.SetCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetAddressCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.payments.commands.updateactions.SetCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofRemoveType(String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomType
-
- ofRemoveType(String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomType
-
- ofRemoveType() - Static method in class io.sphere.sdk.stores.commands.updateactions.SetCustomType
-
- ofResourceType(String, Class<T>, String) - Static method in class io.sphere.sdk.messages.MessageDerivateHint
-
- ofResourceTypeIdAndId(String, String) - Static method in interface io.sphere.sdk.models.Reference
-
- ofResourceTypeIdAndIdAndObj(String, String, T) - Static method in interface io.sphere.sdk.models.Reference
-
- ofResourceTypeIdAndObj(String, T) - Static method in interface io.sphere.sdk.models.Reference
-
- ofScheduledRetry(long, Duration) - Static method in interface io.sphere.sdk.retry.RetryAction
-
Retry in the future with a fixed waiting time.
- ofScheduledRetry(long, Function<RetryContext, Duration>) - Static method in interface io.sphere.sdk.retry.RetryAction
-
Retry in the future with a waiting time depending on the
RetryContext
, for example to take the number of
attempts in consideration.
- ofScope(PublishScope) - Static method in class io.sphere.sdk.products.commands.updateactions.Publish
-
- ofScopeString(String) - Static method in class io.sphere.sdk.client.SphereProjectScope
-
- ofShutdownServiceAndSendFirstException() - Static method in interface io.sphere.sdk.retry.RetryAction
-
- ofShutdownServiceAndSendLatestException() - Static method in interface io.sphere.sdk.retry.RetryAction
-
- ofSingleMessageType(String, Class<T>, String) - Static method in class io.sphere.sdk.messages.MessageDerivateHint
-
- ofSku(String) - Static method in class io.sphere.sdk.orders.ProductVariantImportDraftBuilder
-
- ofSku(String, AssetDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.AddAsset
-
- ofSku(String, Image) - Static method in class io.sphere.sdk.products.commands.updateactions.AddExternalImage
-
- ofSku(String, Image, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.AddExternalImage
-
- ofSku(String, PriceDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.AddPrice
-
- ofSku(String, PriceDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.AddPrice
-
- ofSku(String, String, LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- ofSku(String, String, LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- ofSku(String, List<String>) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetOrder
-
- ofSku(String, List<String>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetOrder
-
- ofSku(String) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeMasterVariant
-
- ofSku(String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeMasterVariant
-
- ofSku(String, String) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- ofSku(String, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- ofSku(String, Image) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- ofSku(String, Image, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- ofSku(String, String) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- ofSku(String, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- ofSku(String) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveVariant
-
- ofSku(String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveVariant
-
- ofSku(String, String, String, Object) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofSku(String, String, String, Object, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofSku(String, String, CustomFieldsDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- ofSku(String, String, CustomFieldsDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- ofSku(String, String, LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- ofSku(String, String, LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- ofSku(String, String, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetKey
-
- ofSku(String, String, List<AssetSource>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- ofSku(String, String, List<AssetSource>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- ofSku(String, String, Set<String>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- ofSku(String, String, Set<String>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- ofSku(String, String, JsonNode) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/remove/change a custom attribute.
- ofSku(String, String, JsonNode, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofSku(String, String, Object) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/remove/change a custom attribute.
- ofSku(String, String, Object, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofSku(String, AttributeDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/change a custom attribute.
- ofSku(String, AttributeDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofSku(String, NamedAttributeAccess<T>, T) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/change a custom attribute.
- ofSku(String, NamedAttributeAccess<T>, T, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofSku(String, List<PriceDraft>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetPrices
-
- ofSku(String, List<PriceDraft>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetPrices
-
- ofSku(String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.AddLineItem
-
- ofSku(String, Long) - Static method in class io.sphere.sdk.shoppinglists.LineItemDraftDsl
-
Creates a new object initialized with the given values.
- ofSkuAndAssetKey(String, String, String, Object) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofSkuAndAssetKey(String, String, String, Object, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofSkuAndAssetKey(String, String, CustomFieldsDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- ofSkuAndAssetKey(String, String, CustomFieldsDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- ofSkuAndAssetKey(String, String, LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- ofSkuAndAssetKey(String, String, LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- ofSkuAndAssetKey(String, String, List<AssetSource>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- ofSkuAndAssetKey(String, String, List<AssetSource>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- ofSkuAndAssetKey(String, String, Set<String>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- ofSkuAndAssetKey(String, String, Set<String>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- ofSkuUsingJson(String, String, String, JsonNode) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofSkuUsingJson(String, String, String, JsonNode, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofSkuUsingJsonAndAssetKey(String, String, String, JsonNode) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofSkuUsingJsonAndAssetKey(String, String, String, JsonNode, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofSkuVariantIdentifier(BySkuVariantIdentifier, Long) - Static method in class io.sphere.sdk.carts.LineItemDraftBuilder
-
Creates a new object initialized with the given values.
- ofSkuVariantIdentifier(BySkuVariantIdentifier, Long) - Static method in class io.sphere.sdk.shoppinglists.LineItemDraftBuilder
-
Creates a new object initialized with the given values.
- ofSkuWithKey(String, String) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- ofSkuWithKey(String, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.cartdiscounts.SelectionMode
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.cartdiscounts.StackingMode
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.carts.AnonymousCartSignInMode
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.carts.CartOrigin
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.carts.CartState
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.carts.InventoryMode
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.carts.LineItemMode
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.carts.LineItemPriceMode
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.carts.RoundingMode
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.carts.ShippingMethodState
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.carts.TaxCalculationMode
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.carts.TaxMode
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.channels.ChannelRole
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.discountcodes.DiscountCodeState
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.models.TextInputHint
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.orders.OrderState
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.orders.PaymentState
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.orders.ReturnPaymentState
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.orders.ReturnShipmentState
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.orders.ShipmentState
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.payments.TransactionState
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.payments.TransactionType
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.products.attributes.AttributeConstraint
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.products.PublishScope
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.projects.SearchIndexingConfigurationStatus
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.states.StateRole
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.states.StateType
-
- ofSphereValue(String) - Static method in enum io.sphere.sdk.subscriptions.SubscriptionHealthStatus
-
- ofStaged(Integer, String, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetImageLabel
-
Creates a new update action initialized with the given values.
- ofStaged(ProductIdentifiable) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionByIdGet
-
- ofStaged(String) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionByIdGet
-
- ofStaged(String) - Static method in interface io.sphere.sdk.products.queries.ProductProjectionByKeyGet
-
- ofStaged() - Static method in interface io.sphere.sdk.products.queries.ProductProjectionQuery
-
- ofStaged() - Static method in class io.sphere.sdk.products.queries.ProductProjectionQueryBuilder
-
- ofStaged() - Static method in interface io.sphere.sdk.products.search.ProductProjectionSearch
-
Creates a search request object for the staged data of a product.
- ofStaged() - Static method in class io.sphere.sdk.products.search.ProductProjectionSearchBuilder
-
- ofString() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofString(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofString(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofString(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofString(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofString(String) - Method in interface io.sphere.sdk.queries.JsonObjectQueryModel
-
- ofString() - Method in interface io.sphere.sdk.queries.JsonValueQueryModel
-
- ofString() - Static method in class io.sphere.sdk.search.model.TypeSerializer
-
Serializer to convert the given text to a formatted string with escaped characters.
- ofString(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofStringCollection(String) - Method in interface io.sphere.sdk.queries.JsonObjectQueryModel
-
- ofStringCollection(String) - Method in interface io.sphere.sdk.types.queries.FieldsQueryModel
-
- ofStringMap(Map<String, String>) - Static method in class io.sphere.sdk.http.FormUrlEncodedHttpRequestBody
-
Creator if the order does not matter and there are no duplicates.
- ofStringSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofStringSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofStringSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofStringSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofStringSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofStringToStringMap(Map<String, String>) - Static method in class io.sphere.sdk.models.LocalizedString
-
Creates an instance by supplying a map of
String
the language tag and
String
.
- ofSubRates(List<SubRate>, String, CountryCode) - Static method in class io.sphere.sdk.taxcategories.ExternalTaxRateDraftBuilder
-
- ofText() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofText(String) - Static method in class io.sphere.sdk.reviews.ReviewDraftBuilder
-
- ofText(String) - Static method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
Creates a new object initialized with the given values.
- ofTextSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofTime() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofTime(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofTime(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofTime(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofTime(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofTime() - Static method in class io.sphere.sdk.search.model.TypeSerializer
-
Serializer to convert the given local time into the accepted standard format.
- ofTimeSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofTimeSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetedSearchSearchModel
-
- ofTimeSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFacetSearchModel
-
- ofTimeSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeFilterSearchModel
-
- ofTimeSet(String) - Method in class io.sphere.sdk.products.search.ProductAttributeSortSearchModel
-
- ofTitle(String) - Static method in class io.sphere.sdk.reviews.ReviewDraftBuilder
-
- ofTitle(String) - Static method in class io.sphere.sdk.reviews.ReviewDraftDsl
-
Creates a new object initialized with the given values.
- ofTitleFirstAndLastName(String, String, String) - Static method in class io.sphere.sdk.customers.CustomerName
-
- ofTokenAndPassword(String, String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerInStorePasswordResetCommand
-
Creates a command that can set a new password for a customer with a certain token.
- ofTokenAndPassword(String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerPasswordResetCommand
-
Creates a command that can set a new password for a customer with a certain token.
- ofTokenValue(String, String) - Static method in class io.sphere.sdk.customers.commands.CustomerInStoreVerifyEmailCommand
-
Creates a command to verify the email of a customer.
- ofTokenValue(String) - Static method in class io.sphere.sdk.customers.commands.CustomerVerifyEmailCommand
-
Creates a command to verify the email of a customer.
- ofTriggerType(String) - Static method in enum io.sphere.sdk.extensions.TriggerType
-
- ofType(Type) - Static method in class io.sphere.sdk.types.CustomFieldsDraftBuilder
-
- ofTypeId(String) - Static method in class io.sphere.sdk.types.CustomFieldsDraftBuilder
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddressCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddressCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetAddressCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.customergroups.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetAddressCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.payments.commands.updateactions.AddInterfaceInteraction
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetCustomType
-
- ofTypeIdAndJson(String, Map<String, JsonNode>) - Static method in interface io.sphere.sdk.types.CustomFieldsDraft
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddressCustomType
-
- ofTypeIdAndObjects(String, String, Object) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddressCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddressCustomType
-
- ofTypeIdAndObjects(String, String, Object) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddressCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetAddressCustomType
-
- ofTypeIdAndObjects(String, String, Object) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetAddressCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.customergroups.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, String, Map<String, Object>) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetAddressCustomType
-
- ofTypeIdAndObjects(String, String, String, Object) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetAddressCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.payments.commands.updateactions.AddInterfaceInteraction
-
- ofTypeIdAndObjects(String, String, Object) - Static method in class io.sphere.sdk.payments.commands.updateactions.AddInterfaceInteraction
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofTypeIdAndObjects(String, String, Object, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, String, Object) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomType
-
- ofTypeIdAndObjects(String, String, Object, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, String, Object) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetCustomType
-
- ofTypeIdAndObjects(String, Map<String, Object>) - Static method in interface io.sphere.sdk.types.CustomFieldsDraft
-
- ofTypeKey(String) - Static method in class io.sphere.sdk.types.CustomFieldsDraftBuilder
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddressCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddressCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetAddressCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.customergroups.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetAddressCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.payments.commands.updateactions.AddInterfaceInteraction
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetCustomType
-
- ofTypeKeyAndJson(String, Map<String, JsonNode>) - Static method in interface io.sphere.sdk.types.CustomFieldsDraft
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddressCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddressCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetAddressCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.customergroups.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, String, Map<String, Object>) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetAddressCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.payments.commands.updateactions.AddInterfaceInteraction
-
- ofTypeKeyAndObjects(String, String, Object) - Static method in class io.sphere.sdk.payments.commands.updateactions.AddInterfaceInteraction
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetCustomType
-
- ofTypeKeyAndObjects(String, Map<String, Object>) - Static method in interface io.sphere.sdk.types.CustomFieldsDraft
-
- ofUnset() - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.ChangeTarget
-
Creates a new object initialized with the given values.
- ofUnset(String) - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetDescription
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetValidFrom
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetValidFromAndUntil
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.cartdiscounts.commands.updateactions.SetValidUntil
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.carts.commands.updateactions.SetAnonymousId
-
Creates a new object initialized with the given values.
- ofUnset(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetBillingAddressCustomField
-
- ofUnset(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetCustomLineItemCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeleteDaysAfterLastModification
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetDeliveryAddressCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetItemShippingAddressCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetLineItemCustomField
-
- ofUnset(String) - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingAddressCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.carts.commands.updateactions.SetShippingRateInput
-
Creates a new object initialized with the given values.
- ofUnset(String) - Static method in class io.sphere.sdk.categories.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.categories.commands.updateactions.SetKey
-
- ofUnset(String) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetAddressCustomField
-
- ofUnset(String) - Static method in class io.sphere.sdk.channels.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.channels.commands.updateactions.SetGeoLocation
-
- ofUnset(String) - Static method in class io.sphere.sdk.customergroups.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.customergroups.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- ofUnset(String, String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetAddressCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCompanyName
-
Creates a new update action to unset the companyName
property.
- ofUnset() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomerNumber
-
Creates a new update action to unset the customerNumber
property.
- ofUnset(String) - Static method in class io.sphere.sdk.customers.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetExternalId
-
Creates a new update action to unset the externalId
property.
- ofUnset() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetFirstName
-
Creates a new update action to unset the firstName
property.
- ofUnset() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetKey
-
Creates a new update action to unset the key
property.
- ofUnset() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetLastName
-
Creates a new update action to unset the lastName
property.
- ofUnset() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetMiddleName
-
Creates a new update action to unset the middleName
property.
- ofUnset() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetSalutation
-
Creates a new update action to unset the salutation
property.
- ofUnset() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetTitle
-
Creates a new update action to unset the title
property.
- ofUnset() - Static method in class io.sphere.sdk.customers.commands.updateactions.SetVatId
-
Creates a new update action to unset the vatId
property.
- ofUnset(String) - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetValidFrom
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetValidFromAndUntil
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.discountcodes.commands.updateactions.SetValidUntil
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.extensions.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.extensions.commands.updateactions.SetTimeoutInMs
-
Creates a new object initialized with the given values.
- ofUnset(String) - Static method in class io.sphere.sdk.inventory.commands.updateactions.SetCustomField
-
- ofUnset(String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetDeliveryCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetLineItemCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetParcelCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetReturnItemCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.orderedits.commands.stagedactions.SetShippingRateInput
-
- ofUnset() - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetComment
-
Creates a new object initialized with the given values.
- ofUnset(String) - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.orderedits.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomerId
-
Creates a new object initialized with the given values.
- ofUnset(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetCustomLineItemCustomField
-
- ofUnset(String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryAddress
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetDeliveryCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetLineItemCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetParcelCustomField
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.orders.commands.updateactions.SetReturnItemCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.payments.commands.updateactions.SetAnonymousId
-
Creates a new update action to unset the anonymousId
property.
- ofUnset(String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.payments.commands.updateactions.SetExternalId
-
Deprecated.
Creates a new update action to unset the externalId
property.
- ofUnset() - Static method in class io.sphere.sdk.payments.commands.updateactions.SetInterfaceId
-
Creates a new update action to unset the interfaceId
property.
- ofUnset() - Static method in class io.sphere.sdk.payments.commands.updateactions.SetKey
-
Creates a new update action to unset the key
property.
- ofUnset(String, String) - Static method in class io.sphere.sdk.payments.commands.updateactions.SetTransactionCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetValidFrom
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetValidFromAndUntil
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.productdiscounts.commands.updateactions.SetValidUntil
-
Creates a new object initialized with the given values.
- ofUnset(Integer, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetImageLabel
-
Creates a new update action initialized with the given values to unset the label.
- ofUnset(String, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomField
-
- ofUnset(String, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetProductPriceCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.projects.commands.updateactions.SetExternalOAuth
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.projects.commands.updateactions.SetShippingRateInputType
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomer
-
- ofUnset(String) - Static method in class io.sphere.sdk.reviews.commands.updateactions.SetCustomField
-
- ofUnset(String) - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetDescription
-
Deprecated.
Creates a new update action to unset the description
property.
- ofUnset() - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetKey
-
Creates a new update action to unset the key
property.
- ofUnset() - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetLocalizedDescription
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetLocalizedName
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.shippingmethods.commands.updateactions.SetPredicate
-
Creates a new update action to unset the predicate
property.
- ofUnset() - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetAnonymousId
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomer
-
- ofUnset(String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetDeleteDaysAfterLastModification
-
- ofUnset() - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetKey
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetLineItemCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetSlug
-
- ofUnset(String, String) - Static method in class io.sphere.sdk.shoppinglists.commands.updateactions.SetTextLineItemCustomField
-
- ofUnset(String) - Static method in class io.sphere.sdk.stores.commands.updateactions.SetCustomField
-
- ofUnset() - Static method in class io.sphere.sdk.stores.commands.updateactions.SetLanguages
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.stores.commands.updateactions.SetName
-
Creates a new object initialized with the given values.
- ofUnset() - Static method in class io.sphere.sdk.subscriptions.commands.updateactions.SetChanges
-
- ofUnset() - Static method in class io.sphere.sdk.subscriptions.commands.updateactions.SetKey
-
Creates a new update action to unset the key
property.
- ofUnset() - Static method in class io.sphere.sdk.subscriptions.commands.updateactions.SetMessages
-
- ofUnset() - Static method in class io.sphere.sdk.taxcategories.commands.updateactions.SetDescription
-
Creates a new update action to unset the description
property.
- ofUnset() - Static method in class io.sphere.sdk.taxcategories.commands.updateactions.SetKey
-
Creates a new update action to unset the key
property.
- ofUnset() - Static method in class io.sphere.sdk.zones.commands.updateactions.SetKey
-
Creates a new object initialized with the given values.
- ofUnsetAttribute(Integer, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to remove a custom attribute.
- ofUnsetAttribute(Integer, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofUnsetAttribute(Integer, NamedAttributeAccess<T>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to remove a custom attribute.
- ofUnsetAttribute(Integer, NamedAttributeAccess<T>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofUnsetAttribute(String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
Action to remove a custom attribute.
- ofUnsetAttribute(String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
- ofUnsetAttribute(NamedAttributeAccess<T>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
Action to remove a custom attribute.
- ofUnsetAttribute(NamedAttributeAccess<T>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttributeInAllVariants
-
- ofUnsetAttributeForSku(String, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to remove a custom attribute.
- ofUnsetAttributeForSku(String, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofUnsetAttributeForSku(String, NamedAttributeAccess<T>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to remove a custom attribute.
- ofUnsetAttributeForSku(String, NamedAttributeAccess<T>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofUnsetAttributeForVariantId(Integer, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to remove a custom attribute.
- ofUnsetAttributeForVariantId(Integer, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofUnsetAttributeForVariantId(Integer, NamedAttributeAccess<T>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to remove a custom attribute.
- ofUnsetAttributeForVariantId(Integer, NamedAttributeAccess<T>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofUnsetStaged(Integer, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetImageLabel
-
Creates a new update action initialized with the given values to unset the staged label.
- ofUnversionedUpdate(CustomObject<T>, T, TypeReference<T>) - Static method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
Creates a draft for updating a custom object.
- ofUnversionedUpdate(CustomObject<T>, T, Class<T>) - Static method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
Creates a draft for updating a custom object.
- ofUnversionedUpsert(String, String, T, TypeReference<T>) - Static method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
Creates a draft for creating or updating a custom object.
- ofUnversionedUpsert(String, String, T, Class<T>) - Static method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
Creates a draft for creating or updating a custom object.
- ofUnversionedUpsert(String, String, JsonNode) - Static method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
Creates a draft for creating or updating a custom object.
- ofUri(String) - Static method in class io.sphere.sdk.models.AssetSourceBuilder
-
- ofVariantId(File, ByIdVariantIdentifier) - Static method in class io.sphere.sdk.products.commands.ProductImageUploadCommand
-
- ofVariantId(Integer, AssetDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.AddAsset
-
- ofVariantId(Integer, Image) - Static method in class io.sphere.sdk.products.commands.updateactions.AddExternalImage
-
- ofVariantId(Integer, Image, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.AddExternalImage
-
- ofVariantId(Integer, PriceDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.AddPrice
-
- ofVariantId(Integer, PriceDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.AddPrice
-
- ofVariantId(Integer, String, LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- ofVariantId(Integer, String, LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetName
-
- ofVariantId(Integer, List<String>) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetOrder
-
- ofVariantId(Integer, List<String>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeAssetOrder
-
- ofVariantId(Integer) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeMasterVariant
-
- ofVariantId(Integer, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.ChangeMasterVariant
-
- ofVariantId(Integer, String) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- ofVariantId(Integer, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- ofVariantId(Integer, Image) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- ofVariantId(Integer, String) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- ofVariantId(Integer, Image, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- ofVariantId(Integer, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveImage
-
- ofVariantId(Integer) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveVariant
-
- ofVariantId(Integer, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveVariant
-
- ofVariantId(Integer, String, String, Object) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofVariantId(Integer, String, String, Object, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofVariantId(Integer, String, CustomFieldsDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- ofVariantId(Integer, String, CustomFieldsDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- ofVariantId(Integer, String, LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- ofVariantId(Integer, String, LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- ofVariantId(String, Integer, String) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetKey
-
- ofVariantId(Integer, String, List<AssetSource>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- ofVariantId(Integer, String, List<AssetSource>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- ofVariantId(Integer, String, Set<String>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- ofVariantId(Integer, String, Set<String>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- ofVariantId(Integer, String, JsonNode) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/remove/change a custom attribute.
- ofVariantId(Integer, String, JsonNode, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofVariantId(Integer, String, Object) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/remove/change a custom attribute.
- ofVariantId(Integer, String, Object, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofVariantId(Integer, AttributeDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/change a custom attribute.
- ofVariantId(Integer, AttributeDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofVariantId(Integer, NamedAttributeAccess<T>, T) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
Action to add/change a custom attribute.
- ofVariantId(Integer, NamedAttributeAccess<T>, T, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAttribute
-
- ofVariantId(Integer, List<PriceDraft>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetPrices
-
- ofVariantId(Integer, List<PriceDraft>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetPrices
-
- ofVariantIdAndAssetKey(Integer, String, String, Object) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofVariantIdAndAssetKey(Integer, String, String, Object, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofVariantIdAndAssetKey(Integer, String, CustomFieldsDraft) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- ofVariantIdAndAssetKey(Integer, String, CustomFieldsDraft, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomType
-
- ofVariantIdAndAssetKey(Integer, String, LocalizedString) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- ofVariantIdAndAssetKey(Integer, String, LocalizedString, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetDescription
-
- ofVariantIdAndAssetKey(Integer, String, List<AssetSource>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- ofVariantIdAndAssetKey(Integer, String, List<AssetSource>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetSources
-
- ofVariantIdAndAssetKey(Integer, String, Set<String>) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- ofVariantIdAndAssetKey(Integer, String, Set<String>, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetTags
-
- ofVariantIdentifier(ByIdVariantIdentifier, Long) - Static method in class io.sphere.sdk.carts.LineItemDraftBuilder
-
Creates a new object initialized with the given values.
- ofVariantIdentifier(ByIdVariantIdentifier, Long) - Static method in class io.sphere.sdk.shoppinglists.LineItemDraftBuilder
-
Creates a new object initialized with the given values.
- ofVariantIdUsingJson(Integer, String, String, JsonNode) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofVariantIdUsingJson(Integer, String, String, JsonNode, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofVariantIdUsingJsonAndAssetKey(Integer, String, String, JsonNode) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofVariantIdUsingJsonAndAssetKey(Integer, String, String, JsonNode, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.SetAssetCustomField
-
- ofVariantIdWithKey(Integer, String) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- ofVariantIdWithKey(Integer, String, Boolean) - Static method in class io.sphere.sdk.products.commands.updateactions.RemoveAsset
-
- ofVersionedUpdate(CustomObject<T>, T, TypeReference<T>) - Static method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
Creates a draft for updating a custom object.
- ofVersionedUpdate(CustomObject<T>, T, Class<T>) - Static method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
Creates a draft for updating a custom object.
- ofVersionedUpsert(String, String, T, Long, TypeReference<T>) - Static method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
Creates a draft for creating or updating a custom object.
- ofVersionedUpsert(String, String, T, Long, Class<T>) - Static method in class io.sphere.sdk.customobjects.CustomObjectDraft
-
Creates a draft for creating or updating a custom object.
- ofWidthAndHeight(Integer, Integer) - Static method in interface io.sphere.sdk.models.AssetDimensions
-
- ofWidthAndHeight(String, Integer, Integer, String) - Static method in interface io.sphere.sdk.products.Image
-
- ofWidthAndHeight(String, Integer, Integer) - Static method in interface io.sphere.sdk.products.Image
-
- ofWidthAndHeight(Integer, Integer) - Static method in class io.sphere.sdk.products.ImageDimensions
-
- ofZonedDateTime() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- ofZonedDateTimeSet() - Static method in interface io.sphere.sdk.products.attributes.AttributeAccess
-
- OK_200 - Static variable in class io.sphere.sdk.http.HttpStatusCode
-
- onFailure(CompletionStage<T>, Consumer<? super Throwable>) - Static method in class io.sphere.sdk.utils.CompletableFutureUtils
-
Executes a side-effect when the future completes exceptionally.
- onlyGreaterThanOrEqualTo(V) - Method in class io.sphere.sdk.search.model.RangeTermFacetSearchModel
-
Generates an expression to obtain the facet of the attribute for only values greater than or equal to the given value.
- onlyLessThan(V) - Method in class io.sphere.sdk.search.model.RangeTermFacetSearchModel
-
Generates an expression to obtain the facet of the attribute for only values less than the given value.
- onlyRange(FacetRange<V>) - Method in class io.sphere.sdk.search.model.RangeTermFacetSearchModel
-
Generates an expression to obtain the facet of the attribute for only the given range.
- onlyRange(Iterable<FacetRange<V>>) - Method in class io.sphere.sdk.search.model.RangeTermFacetSearchModel
-
Generates an expression to obtain the facet of the attribute for only the given ranges.
- onlyRange(V, V) - Method in class io.sphere.sdk.search.model.RangeTermFacetSearchModel
-
Generates an expression to obtain the facet of the attribute for only the given range.
- onlyTerm(String) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFacetSearchModel
-
- onlyTerm(Iterable<String>) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFacetSearchModel
-
- onlyTerm(V) - Method in interface io.sphere.sdk.search.model.FacetSearchModel
-
Generates an expression to obtain the facet of the attribute for only the given value.
- onlyTerm(Iterable<V>) - Method in interface io.sphere.sdk.search.model.FacetSearchModel
-
Generates an expression to obtain the facets of the attribute for only the given values.
- onlyTerm(V) - Method in class io.sphere.sdk.search.model.RangeTermFacetSearchModel
-
Generates an expression to obtain the facet of the attribute for only the given value.
- onlyTerm(Iterable<V>) - Method in class io.sphere.sdk.search.model.RangeTermFacetSearchModel
-
Generates an expression to obtain the facets of the attribute for only the given values.
- onlyTerm(V) - Method in interface io.sphere.sdk.search.model.TermFacetSearchModel
-
- onlyTerm(Iterable<V>) - Method in interface io.sphere.sdk.search.model.TermFacetSearchModel
-
- onlyTerm(V) - Method in class io.sphere.sdk.search.model.TermFacetSearchModelImpl
-
Generates an expression to obtain the facet of the attribute for only the given value.
- onlyTerm(Iterable<V>) - Method in class io.sphere.sdk.search.model.TermFacetSearchModelImpl
-
Generates an expression to obtain the facets of the attribute for only the given values.
- onlyTermAsString(Iterable<String>) - Method in interface io.sphere.sdk.search.model.FacetSearchModel
-
Generates an expression to obtain the facets of the attribute for only the given values.
- onlyTermAsString(Iterable<String>) - Method in interface io.sphere.sdk.search.model.TermFacetSearchModel
-
- onlyTermSubtree(String) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFacetSearchModel
-
- onlyTermSubtree(Iterable<String>) - Method in interface io.sphere.sdk.products.search.ProductCategoriesIdTermFacetSearchModel
-
final List<String> categoryIds1 = getCategoryIds("A", "B-1", "C-2-2");
final List<String> categoryIds2 = getCategoryIds("A", "B-2-3");
final List<String> categoryIds3 = getCategoryIds("B", "C");
withProductInCategories(client(), categoryIds1, (Product product1) -> {
withProductInCategories(client(), categoryIds2, (Product product2) -> {
withProductInCategories(client(), categoryIds3, (Product product3) -> {
assertEventually(() -> {
final ProductProjectionSearch request = ProductProjectionSearch.ofStaged()
.plusFacets(m -> m.categories().id().withAlias("productsInA").onlyTermSubtree(getCategoryIds("A")))
.plusFacets(m -> m.categories().id().withAlias("productsInB").onlyTermSubtree(getCategoryIds("B")))
.plusFacets(m -> m.categories().id().withAlias("productsInAorB").onlyTermSubtree(getCategoryIds("A", "B")))
.plusFacets(m -> m.categories().id().withAlias("productsInC2").onlyTermSubtree(getCategoryIds("C-2")))
.plusQueryFilters(m -> m.id().isIn(asList(product1.getId(), product2.getId(), product3.getId())));
final PagedSearchResult<ProductProjection> pagedSearchResult = client().executeBlocking(request);
assertThat(pagedSearchResult.getFilteredFacetResult("productsInA").getCount()).isEqualTo(2);
assertThat(pagedSearchResult.getFilteredFacetResult("productsInB").getCount()).isEqualTo(3);
assertThat(pagedSearchResult.getFilteredFacetResult("productsInAorB").getCount()).isEqualTo(3);
assertThat(pagedSearchResult.getFilteredFacetResult("productsInC2").getCount()).isEqualTo(1);
});
});
});
});
See the test code.
- onStockInChannels() - Method in interface io.sphere.sdk.products.search.ProductVariantAvailabilityFilterSearchModel
-
- onSuccess(CompletionStage<T>, Consumer<? super T>) - Static method in class io.sphere.sdk.utils.CompletableFutureUtils
-
Executes a side-effect when the future completes successfully.
- OptionalQueryModel<T> - Interface in io.sphere.sdk.queries
-
- or(QueryPredicate<T>) - Method in interface io.sphere.sdk.queries.QueryPredicate
-
- Order - Interface in io.sphere.sdk.orders
-
An order can be created from a cart, usually after a checkout process has been completed.
- OrderBillingAddressSetMessage - Class in io.sphere.sdk.orders.messages
-
This message may appear if the billing address of an order is changed.
- OrderByIdGet - Interface in io.sphere.sdk.orders.queries
-
Gets an order by ID.
- OrderByOrderNumberGet - Interface in io.sphere.sdk.orders.queries
-
Fetches an order by a known order number.
- OrderCreatedMessage - Class in io.sphere.sdk.orders.messages
-
- OrderCustomerEmailSetMessage - Class in io.sphere.sdk.orders.messages
-
This message may appear if the customer email of an order is changed.
- OrderCustomerGroupSetMessage - Class in io.sphere.sdk.orders.messages
-
- OrderCustomerSetMessage - Class in io.sphere.sdk.orders.messages
-
- OrderDeleteCommand - Interface in io.sphere.sdk.orders.commands
-
Command object to delete a
Order
.
- OrderDeletedMessage - Class in io.sphere.sdk.orders.messages
-
- OrderDiscountCodeAddedMessage - Class in io.sphere.sdk.orders.messages
-
- OrderDiscountCodeStateSetMessage - Class in io.sphere.sdk.orders.messages
-
- OrderEdit - Interface in io.sphere.sdk.orderedits
-
- OrderEditApplied - Interface in io.sphere.sdk.orderedits
-
- OrderEditAppliedMessage - Class in io.sphere.sdk.orders.messages
-
- OrderEditApplyCommand - Class in io.sphere.sdk.orderedits.commands
-
- OrderEditByIdGet - Interface in io.sphere.sdk.orderedits.queries
-
Gets an order edit by ID.
- OrderEditByKeyGet - Interface in io.sphere.sdk.orderedits.queries
-
Gets an order edit by key.
- OrderEditCreateCommand - Interface in io.sphere.sdk.orderedits.commands
-
- OrderEditDeleteCommand - Interface in io.sphere.sdk.orderedits.commands
-
- OrderEditDraft - Interface in io.sphere.sdk.orderedits
-
- OrderEditDraftBuilder - Class in io.sphere.sdk.orderedits
-
- OrderEditDraftDsl - Class in io.sphere.sdk.orderedits
-
- OrderEditExpansionModel<T> - Interface in io.sphere.sdk.orderedits.expansion
-
- OrderEditNotProcessed - Interface in io.sphere.sdk.orderedits
-
- OrderEditPreviewFailure - Interface in io.sphere.sdk.orderedits
-
- OrderEditPreviewSuccess - Interface in io.sphere.sdk.orderedits
-
- OrderEditQuery - Interface in io.sphere.sdk.orderedits.queries
-
{@doc.gen summary orderedits
- OrderEditQueryBuilder - Class in io.sphere.sdk.orderedits.queries
-
- OrderEditQueryModel - Interface in io.sphere.sdk.orderedits.queries
-
- OrderEditResult - Interface in io.sphere.sdk.orderedits
-
- OrderEditSetCustomFieldBase - Class in io.sphere.sdk.orderedits.commands.stagedactions
-
- OrderEditSetCustomFieldBase(String, String, JsonNode) - Constructor for class io.sphere.sdk.orderedits.commands.stagedactions.OrderEditSetCustomFieldBase
-
- OrderEditSetCustomTypeBase - Class in io.sphere.sdk.orderedits.commands.stagedactions
-
- OrderEditSetCustomTypeBase(String, ResourceIdentifier<Type>, Map<String, JsonNode>) - Constructor for class io.sphere.sdk.orderedits.commands.stagedactions.OrderEditSetCustomTypeBase
-
- OrderEditStagedUpdateAction - Interface in io.sphere.sdk.orderedits.commands.stagedactions
-
- OrderEditUpdateCommand - Interface in io.sphere.sdk.orderedits.commands
-
- OrderExcerpt - Interface in io.sphere.sdk.orderedits
-
- OrderExpansionModel<T> - Interface in io.sphere.sdk.orders.expansion
-
DSL class to create expansion path expressions.
- OrderFromCartCreateCommand - Interface in io.sphere.sdk.orders.commands
-
Orders a cart.
- OrderFromCartDraft - Interface in io.sphere.sdk.orders
-
- OrderFromCartDraftBuilder - Class in io.sphere.sdk.orders
-
- OrderFromCartDraftDsl - Class in io.sphere.sdk.orders
-
- OrderFromCartInStoreCreateCommand - Interface in io.sphere.sdk.orders.commands
-
- orderHint() - Method in interface io.sphere.sdk.categories.queries.CategoryQueryModel
-
- OrderImportCommand - Class in io.sphere.sdk.orders.commands
-
Orders can also be imported via the Import API endpoint so you don't have to create a cart before.
- OrderImportDraft - Interface in io.sphere.sdk.orders
-
Draft for importing an Order.
- OrderImportDraftBuilder - Class in io.sphere.sdk.orders
-
- OrderImportedMessage - Class in io.sphere.sdk.orders.messages
-
This message is created when an order is imported.
- OrderInStoreByIdGet - Interface in io.sphere.sdk.orders.queries
-
- OrderInStoreByOrderNumberGet - Interface in io.sphere.sdk.orders.queries
-
- OrderInStoreDeleteByIdCommand - Interface in io.sphere.sdk.orders.commands
-
- OrderInStoreDeleteByOrderNumberCommand - Interface in io.sphere.sdk.orders.commands
-
- OrderInStoreQuery - Interface in io.sphere.sdk.orders.queries
-
- OrderInStoreQueryBuilder - Class in io.sphere.sdk.orders.queries
-
- OrderInStoreUpdateByIdCommand - Interface in io.sphere.sdk.orders.commands
-
- OrderInStoreUpdateByOrderNumberCommand - Interface in io.sphere.sdk.orders.commands
-
- OrderLineItemDistributionChannelSetMessage - Class in io.sphere.sdk.orders.messages
-
- OrderMessage - Interface in io.sphere.sdk.orders.messages
-
- orderNumber(String) - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
Sets the orderNumber
property of this builder.
- orderNumber(String) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
String that unique identifies an order.
- orderNumber() - Method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- OrderPaymentAddedMessage - Class in io.sphere.sdk.orders.messages
-
- OrderPaymentStateChangedMessage - Class in io.sphere.sdk.orders.messages
-
- OrderQuery - Interface in io.sphere.sdk.orders.queries
-
{@doc.gen summary orders
- OrderQueryBuilder - Class in io.sphere.sdk.orders.queries
-
- OrderQueryModel - Interface in io.sphere.sdk.orders.queries
-
- OrderReturnShipmentStateChangedMessage - Class in io.sphere.sdk.orders.messages
-
- OrderShipmentStateChangedMessage - Class in io.sphere.sdk.orders.messages
-
- OrderShippingAddressSetMessage - Class in io.sphere.sdk.orders.messages
-
This message may appear if the shipping address of an order is changed.
- OrderShippingInfo - Interface in io.sphere.sdk.orders
-
- OrderShippingInfoSetMessage - Class in io.sphere.sdk.orders.messages
-
- orderState(OrderState) - Method in class io.sphere.sdk.orders.OrderFromCartDraftBuilder
-
Sets the orderState
property of this builder.
- orderState(OrderState) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- OrderState - Enum in io.sphere.sdk.orders
-
OrderState.
- orderState() - Method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- OrderStateChangedMessage - Class in io.sphere.sdk.orders.messages
-
- OrderStateTransitionMessage - Class in io.sphere.sdk.orders.messages
-
- OrderStoreSetMessage - Class in io.sphere.sdk.orders.messages
-
- OrderUpdateCommand - Interface in io.sphere.sdk.orders.commands
-
Command object to update a
Order
.
- orElseGet(CompletionStage<T>, Supplier<T>) - Static method in class io.sphere.sdk.utils.CompletableFutureUtils
-
Tries to access the completed future if available and returns its value (or exception in case the future completed exceptionally), otherwise uses the supplier to get a default value.
- orElseThrow(CompletionStage<T>, Supplier<? extends X>) - Static method in class io.sphere.sdk.utils.CompletableFutureUtils
-
Tries to access the completed future if available and returns its value (or exception in case the future completed exceptionally), otherwise throws the given exception.
- origin(CartOrigin) - Method in class io.sphere.sdk.orders.OrderImportDraftBuilder
-
- origin() - Method in interface io.sphere.sdk.orders.queries.OrderQueryModel
-
- OSGiPriorityAwareServiceProvider - Class in javax.money.spi
-
This class replaces the
PriorityAwareServiceProvider
provided since the latest
contains some bug that doesen't allow using it with OSGi, these bugs are mainly due to not specifying
the
ClassLoader
when using
ServiceLoader.load(Class, ClassLoader)
- OSGiPriorityAwareServiceProvider() - Constructor for class javax.money.spi.OSGiPriorityAwareServiceProvider
-
- OSGiSupportDocumentation - Class in io.sphere.sdk.meta
-
OSGi support
- OutOfStockError - Class in io.sphere.sdk.orders.errors
-
Some of the ordered line items are out of stock at the time of placing the order.
- OverCapacityError - Class in io.sphere.sdk.models.errors
-