- 使用 Spring Initializr 创建 Spring Boot 应用程序
- 在Spring Boot中配置Cassandra
- 在 Spring Boot 上配置 Tomcat 连接池
- 将Camel消息路由到嵌入WildFly的Artemis上
本文整理了Java中io.sphere.sdk.zones.queries.ZoneQuery
类的一些代码示例,展示了ZoneQuery
类的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。ZoneQuery
类的具体详情如下:
包路径:io.sphere.sdk.zones.queries.ZoneQuery
类名称:ZoneQuery
[英]summary zones
[中]摘要区域
代码示例来源:origin: com.commercetools.sunrise/common
private CompletionStage<Optional<Zone>> fetchZoneByCountry(final Location location) {
final ZoneQuery request = ZoneQuery.of().byLocation(location);
return sphereClient.execute(request)
.thenApplyAsync(PagedResult::head);
}
代码示例来源:origin: io.sphere.sdk.jvm/models
private ZoneQuery() {
super(ZoneEndpoint.ENDPOINT.endpoint(), resultTypeReference());
}
代码示例来源:origin: com.commercetools.sdk.jvm.core/commercetools-models
default ZoneQuery byName(final String name) {
return withPredicates(m -> m.name().is(name));
}
代码示例来源:origin: commercetools/commercetools-jvm-sdk
public static void withUpdateableDynamicShippingMethodForGermany(final BlockingSphereClient client, final CartPredicate cartPredicate, final UnaryOperator<ShippingMethod> consumer) {
final Optional<Zone> zoneOptional = client.executeBlocking(ZoneQuery.of().byCountry(DE)).head();
final Zone zone;
if (zoneOptional.isPresent()) {
zone = zoneOptional.get();
} else {
zone = client.executeBlocking(ZoneCreateCommand.of(ZoneDraft.of("de", singleton(Location.of(DE)))));
}
withUpdateableDynamicShippingMethod(client, cartPredicate, shippingMethodWithOutZone -> {
final ShippingMethod updated = client.executeBlocking(ShippingMethodUpdateCommand.of(shippingMethodWithOutZone, asList(AddZone.of(zone), AddShippingRate.of(ShippingRate.of(EURO_1), zone))));
return consumer.apply(updated);
});
}
代码示例来源:origin: io.sphere.sdk.jvm/sphere-models
public static ZoneQueryBuilder of() {
return new ZoneQueryBuilder(ZoneQuery.of());
}
代码示例来源:origin: commercetools/commercetools-jvm-sdk
@Test
public void queryByName() throws Exception {
ZoneFixtures.withUpdateableZone(client(), zoneA -> {
ZoneFixtures.withUpdateableZone(client(), zoneB -> {
final PagedQueryResult<Zone> result = client().executeBlocking(ZoneQuery.of().byName(zoneA.getName()));
assertThat(result.getResults()).isEqualTo(asList(zoneA));
return zoneB;
}, CD);
return zoneA;
}, CC);
}
代码示例来源:origin: io.sphere.sdk.jvm/models
public static ZoneQuery of() {
return new ZoneQuery();
}
代码示例来源:origin: commercetools/commercetools-jvm-sdk
public static void withUpdateableShippingMethodForGermany(final BlockingSphereClient client, final UnaryOperator<ShippingMethod> consumer) {
final Optional<Zone> zoneOptional = client.executeBlocking(ZoneQuery.of().byCountry(DE)).head();
final Zone zone;
if (zoneOptional.isPresent()) {
zone = zoneOptional.get();
} else {
zone = client.executeBlocking(ZoneCreateCommand.of(ZoneDraft.of("de", singleton(Location.of(DE)))));
}
withUpdateableShippingMethod(client, shippingMethodWithOutZone -> {
final ShippingMethod updated = client.executeBlocking(ShippingMethodUpdateCommand.of(shippingMethodWithOutZone, asList(AddZone.of(zone), AddShippingRate.of(ShippingRate.of(EURO_1), zone))));
return consumer.apply(updated);
});
}
代码示例来源:origin: com.commercetools.sdk.jvm.core/commercetools-models
public static ZoneQueryBuilder of() {
return new ZoneQueryBuilder(ZoneQuery.of());
}
代码示例来源:origin: commercetools/commercetools-jvm-sdk
@Test
public void byCountry() throws Exception {
ZoneFixtures.withUpdateableZone(client(), zoneA -> {
ZoneFixtures.withUpdateableZone(client(), zoneB -> {
final Set<Location> locations = zoneA.getLocations();
final PagedQueryResult<Zone> result = client().executeBlocking(ZoneQuery.of().byCountry(oneOf(locations).getCountry()));
assertThat(result.getResults()).isEqualTo(asList(zoneA));
return zoneB;
}, CF);
return zoneA;
}, CG);
}
代码示例来源:origin: commercetools/commercetools-jvm-sdk
private void locationCheck(final Location searchLocation, final Zone ... expected) {
final PagedQueryResult<Zone> result = client().executeBlocking(ZoneQuery.of().byLocation(searchLocation));
final Set<Zone> actual = new HashSet<>(result.getResults());
assertThat(actual).isEqualTo(new HashSet<>(asList(expected)));
}
}
代码示例来源:origin: commercetools/commercetools-jvm-sdk
public static void deleteZonesForCountries(final BlockingSphereClient client, final CountryCode country, final CountryCode ... moreCountries) {
final Set<CountryCode> countries = setOf(country, moreCountries);
final ZoneQuery query = ZoneQuery.of();
final Consumer<Zone> action = zone -> {
try {
client.executeBlocking(ZoneDeleteCommand.of(zone));
} catch (final SphereException e) {
client.executeBlocking(ShippingMethodQuery.of().withPredicates(ShippingMethodQueryModel.of().zoneRates().zone().is(zone)))
.head()
.ifPresent(sm -> {
client.executeBlocking(ShippingMethodDeleteCommand.of(sm));
client.executeBlocking(ZoneDeleteCommand.of(zone));
});
}
};
client.executeBlocking(query).getResults().stream()
.filter(zone -> countries.stream().anyMatch(zone::contains))
.forEach(action);
}
}
代码示例来源:origin: com.commercetools.sdk.jvm.core/commercetools-models
ZoneQueryImpl(){
super("/zones", ZoneQuery.resultTypeReference(), ZoneQueryModel.of(), ZoneExpansionModel.of(), ZoneQueryImpl::new);
}
代码示例来源:origin: io.sphere.sdk.jvm/sphere-models
default ZoneQuery byName(final String name) {
return withPredicates(m -> m.name().is(name));
}
代码示例来源:origin: io.sphere.sdk.jvm/sphere-models
ZoneQueryImpl(){
super(ZoneEndpoint.ENDPOINT.endpoint(), ZoneQuery.resultTypeReference(), ZoneQueryModel.of(), ZoneExpansionModel.of(), ZoneQueryImpl::new);
}
代码示例来源:origin: io.sphere.sdk.jvm/sphere-models
/**
* Predicate which matches the country of a location, does not take the state into the consideration.
* For considering also the state use {@link #byLocation(io.sphere.sdk.zones.Location)}.
* @param countryCode the country to query for
* @return query with the same values but a predicate searching for a specific country
*/
default ZoneQuery byCountry(final CountryCode countryCode) {
return withPredicates(m -> m.locations().country().is(countryCode));
}
代码示例来源:origin: com.commercetools.sdk.jvm.core/commercetools-models
/**
* Predicate which matches the country of a location, does not take the state into the consideration.
* For considering also the state use {@link #byLocation(io.sphere.sdk.zones.Location)}.
* @param countryCode the country to query for
* @return query with the same values but a predicate searching for a specific country
*/
default ZoneQuery byCountry(final CountryCode countryCode) {
return withPredicates(m -> m.locations().country().is(countryCode));
}
代码示例来源:origin: com.commercetools.sdk.jvm.core/commercetools-models
/**
* Predicate which matches the country and state of a location.
*
* For ignoring the state use {@link #byCountry(com.neovisionaries.i18n.CountryCode)}.
* @param location the location to query for
* @return query with the same values but a predicate searching for a specific location
*/
default ZoneQuery byLocation(final Location location) {
final QueryPredicate<Zone> predicate =
Optional.ofNullable(location.getState())
.map(state -> ZoneQueryModel.of().locations().where(l -> l.country().is(location.getCountry()).and(l.state().is(state))))
.orElseGet(() -> ZoneQueryModel.of().locations().where(l -> l.country().is(location.getCountry()).and(l.state().isNotPresent())));
return withPredicates(predicate);
}
}
代码示例来源:origin: io.sphere.sdk.jvm/sphere-models
/**
* Predicate which matches the country and state of a location.
*
* For ignoring the state use {@link #byCountry(com.neovisionaries.i18n.CountryCode)}.
* @param location the location to query for
* @return query with the same values but a predicate searching for a specific location
*/
default ZoneQuery byLocation(final Location location) {
final QueryPredicate<Zone> predicate =
Optional.ofNullable(location.getState())
.map(state -> ZoneQueryModel.of().locations().where(l -> l.country().is(location.getCountry()).and(l.state().is(state))))
.orElseGet(() -> ZoneQueryModel.of().locations().where(l -> l.country().is(location.getCountry()).and(l.state().isNotPresent())));
return withPredicates(predicate);
}
}
docs声明为 Azure Sphere 开发设备需要 A PC running Windows 10 Anniversary Update or later 和 Visual Studio 2017
我正在构建一个地球仪(球体几何形状),其中包含一组在地理映射上预定义的位置并绘制为点(球体几何形状)。我想通过沿 y 轴旋转地球仪来聚焦(将一个位置移动到另一个位置)这些位置。我尝试了以下代码,似乎不
是否可以在 JavaFX 中创建类似于 Google map 中的 photoshpere 的光球?如果是,如何? 最佳答案 答案是肯定的,您可以在 JavaFX 中创建光球。 至于方法,有一个基于
您好,我有一个带有 2d 球体索引的集合 wayCollection.createIndex(new BasicDBObject("poly", "2dsphere")); 当我尝试插入某个对象时出现
我正在寻找一种数学变换,以将2D平面[0,1]x[0,1]上的点变换到单位球面上。 最常见的投影是通过将u和v解释为球坐标的角度来进行纬度-经度映射(将u映射为[0,2PI]和v映射为[-PI/2,
我正在尝试使用 MVC C# 制作我的 Photo Sphere 照片库。有什么方法可以测试图像是否是真实的球体图像?图书馆什么的?我目前有一个上传按钮,并将图像的路径保存在数据库中。但我想验证该图像
我正在尝试在 GLSL 中实现球体射线相交,包括几何和解析解。我在解决 geom one 时遇到了麻烦,它应该与我如何返回 true 或 false 有关: bool hitSphere(Ray ra
我正在尝试为我正在编写的 Java3D 程序中的所有 3d 对象创建一个通用抽象父类(super class)。我需要它通过通用接口(interface)向所有 3D 对象添加共享功能,例如移动对象。
在 jmonkey 中,我看到了他们的第一个教程,出于好奇,它正在通过鼠标移动移动一个盒子,至于玩这个新玩具,我尝试使用鼠标移动来移动球体。由于功能几乎相同,我用 Sphere 替换了 Box。 pu
我正在为我在下面发布的代码寻求帮助。这是一个问题,我必须制作一个球体类和另一个类来测试它。我几乎什么都明白了,但唯一让我难受的是设置新的直径和获得新的体积。当我设置一个新直径时,直径很容易改变,但是当
好的,所以我喜欢使用 SPOJ 来练习编程和开发算法。不过,我总是对这些问题有疑问。很多时候,当我的代码清楚地正确回答问题时,我会收到“错误答案”消息。如果有人能告诉我是否有任何问题或为什么 SPOJ
我想知道如何在长方体中创建球体。这个长方体 (50,50,50) 包含有很多点,我想要的只是获取球体(半径 = 2)内的点位置及其值。 非常感谢任何想法/建议/代码/信息.. 最佳答案 创建一个以其中
我需要制作一种算法来检测两个球体何时发生碰撞,以及碰撞后瞬间发生的方向。 假设,想象一下,当您在台球比赛中打开 table 时,所有的球都“随机”地相互碰撞。 所以,在开始自己编写代码之前,我在想是否
本文整理了Java中io.sphere.sdk.zones.ZoneDraft类的一些代码示例,展示了ZoneDraft类的具体用法。这些代码示例主要来源于Github/Stackoverflow/M
本文整理了Java中io.sphere.sdk.shippingmethods.ZoneRate类的一些代码示例,展示了ZoneRate类的具体用法。这些代码示例主要来源于Github/Stackov
本文整理了Java中io.sphere.sdk.zones.Zone类的一些代码示例,展示了Zone类的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从
本文整理了Java中io.sphere.sdk.zones.ZoneDraftBuilder类的一些代码示例,展示了ZoneDraftBuilder类的具体用法。这些代码示例主要来源于Github/S
本文整理了Java中io.sphere.sdk.shippingmethods.ZoneRateDraftBuilder类的一些代码示例,展示了ZoneRateDraftBuilder类的具体用法。这
一、ShardingSphere简单介绍 出现背景:当数据库数据巨大时,数据库读写性能将变得很低,为了解决此问题,设计时,可以将数据进行分别存储于不同数据库、不同表中,以降低单表量数量大问题;Sha
在之前文章《02、Sharding-Sphere 实战:水平分表,实现分表写入读取》中,我们介绍了数据库的水平分表配置,在文章中只介绍了最简单的行表达式分表配置方式,但往往在实际中我们的业务场景单一的
我是一名优秀的程序员,十分优秀!