使用 Google Guava 进行不区分大小写的排序

发布于 2024-11-16 00:45:58 字数 309 浏览 2 评论 0原文

目前,我在两个不同的地方使用以下 2 段代码来创建一个排序的、不可变的列表。

return Ordering.natural().immutableSortedCopy(iterable);

然而

return Ordering.usingToString().immutableSortedCopy(machines);

,这使得“排序”大小写敏感

如何使用 guava api 制作一个不区分大小写的不可变列表?

Current I am using the following 2 pieces of code in 2 different places to create a sorted, immutable list.

return Ordering.natural().immutableSortedCopy(iterable);

and

return Ordering.usingToString().immutableSortedCopy(machines);

However, this makes the 'ordering' case sensitive.

How do I use the guava apis to make a case-insensitive sorted immutable list?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

新一帅帅 2024-11-23 00:45:58

我相信您需要使用 from 方法与 String.CASE_INSENSITIVE_ORDER 比较器,如下所示。

return Ordering.from(String.CASE_INSENSITIVE_ORDER).immutableSortedCopy(iterable);

I believe you will need to use the from method with the String.CASE_INSENSITIVE_ORDER comparator, like this.

return Ordering.from(String.CASE_INSENSITIVE_ORDER).immutableSortedCopy(iterable);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文